:root { --bg-dark: #0b1120; --bg-panel: #151e32; --text-main: #e2e8f0; --accent-green: #22c55e; }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-4xl { max-width: 56rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-mono { font-family: monospace; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.uppercase { text-transform: uppercase; }
.hidden { display: none !important; }
.leading-tight { line-height: 1.25; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-950 { background-color: #020617; }
.bg-white { background-color: #ffffff; }
.bg-green-600 { background-color: #16a34a; }
.bg-blue-600 { background-color: #2563eb; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-red-600 { background-color: #dc2626; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-white { color: #ffffff; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-red-500 { color: #ef4444; }
.text-yellow-500 { color: #eab308; }
.border-slate-800 { border-color: #1e293b; }
.border-slate-700 { border-color: #334155; }
.border-green-600 { border-color: #16a34a; }
.border-blue-600 { border-color: #2563eb; }
.border-slate-200 { border-color: #e2e8f0; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: 2fr 1fr; gap: 1.5rem; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
}
.trust-seal { margin-top: 20px; text-align: center; }
.btn-pro { display: inline-block; padding: 12px 30px; border-radius: 9999px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.95rem; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border: none; cursor: pointer; }
.btn-pro-primary { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: white; }
.btn-pro-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3); }
.btn-pro-outline { background: white; color: #2563eb; border: 2px solid #2563eb; }
.btn-pro-outline:hover { background: #eff6ff; color: #1e40af; border-color: #1e40af; }
:root { --fin-dark: #0b1120; --fin-panel: #151e32; --fin-border: #2d3748; --fin-muted: #94a3b8; --fin-gold: #f59e0b; --fin-green: #10b981; --fin-red: #ef4444; --fin-blue: #3b82f6; }
.fin-card { background: var(--fin-panel); border: 1px solid var(--fin-border); border-radius: 8px; padding: 1.5rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.fin-input { width: 100%; background: var(--fin-dark); border: 1px solid var(--fin-border); color: #e2e8f0; padding: 0.75rem; border-radius: 6px; font-size: 0.9rem; outline: none; transition: border-color 0.2s; margin-top: 5px; }
.fin-input:focus { border-color: var(--fin-blue); }
.fin-btn { width: 100%; padding: 0.75rem; border-radius: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; border: none; transition: transform 0.1s, opacity 0.2s; text-align: center; text-decoration: none; display: block; }
.fin-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-green { background: var(--fin-green); color: #000; }
.btn-gold { background: var(--fin-gold); color: #000; }
.btn-blue { background: var(--fin-blue); color: white; }
.ticker-badge { font-family: 'Roboto Mono', monospace; font-size: 1.8rem; font-weight: 800; color: #e2e8f0; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 12px; }
.metric-box { background: rgba(0,0,0,0.2); border: 1px solid var(--fin-border); padding: 8px; border-radius: 4px; text-align: center; }
.metric-label { font-size: 0.65rem; color: var(--fin-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.metric-val { font-size: 0.9rem; font-weight: 700; }
.val-green { color: var(--fin-green); }
.val-red { color: var(--fin-red); }
.calc-label { font-size: 0.7rem; color: var(--fin-muted); text-transform: uppercase; font-weight: bold; }
.result-box { padding: 15px; border-radius: 6px; margin-top: 15px; text-align: center; border: 1px solid transparent; }
.res-win { background: rgba(16, 185, 129, 0.1); border-color: var(--fin-green); }
.res-loss { background: rgba(239, 68, 68, 0.1); border-color: var(--fin-red); }
.res-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; }
.res-val { font-size: 1.5rem; font-weight: 800; font-family: monospace; }
.progress-track { background: var(--fin-border); height: 6px; border-radius: 3px; overflow: hidden; margin-top: 5px; }
.progress-fill { height: 100%; background: var(--fin-gold); transition: width 0.3s ease; }
.log-item { background: var(--fin-dark); padding: 10px; border-radius: 4px; font-size: 0.8rem; display: flex; justify-content: space-between; margin-bottom: 5px; border-left: 3px solid var(--fin-muted); }
.log-win { border-left-color: var(--fin-green); }
.log-loss { border-left-color: var(--fin-red); }
.admin-status-pill { padding: 2px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
.pill-paid { background: rgba(16, 185, 129, 0.2); color: var(--fin-green); }
.pill-trial { background: rgba(245, 158, 11, 0.2); color: var(--fin-gold); }
.pill-blocked { background: rgba(239, 68, 68, 0.2); color: var(--fin-red); }