/* ============================================
   REVOLUTIONARY DARK THEME - DIPCATCHER 2.0
   Index/Landing Page Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Deep Space Dark Theme */
    --bg-primary: #030712;
    --bg-secondary: #0a0f1c;
    --bg-tertiary: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.8);

    /* Neon Accents */
    --neon-green: #00ff88;
    --neon-red: #ff3366;
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-gold: #fbbf24;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-red: linear-gradient(135deg, #ff3366 0%, #ff6b6b 100%);
    --gradient-hero: linear-gradient(135deg, #0a0f1c 0%, #1a1a2e 50%, #0a0f1c 100%);
    --gradient-card: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(10, 15, 28, 0.95) 100%);

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-glow: rgba(0, 255, 136, 0.3);

    /* Glow Effects */
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.4);
    --glow-red: 0 0 20px rgba(255, 51, 102, 0.4);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   ANIMATED BACKGROUND GRID
   ============================================ */

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--neon-green);
    animation: float 20s ease-in-out infinite;
}

.bg-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--neon-blue);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

/* ============================================
   DUAL TICKER SYSTEM
   ============================================ */

.ticker-container {
    position: fixed;
    top: 88px; /* Below navigation (logo 60px + padding 28px) */
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

/* ============================================
   ANALYSIS BAR (Below Ticker)
   ============================================ */

.analysis-bar {
    position: fixed;
    top: 199px; /* Nav (88px) + Ticker (80px) + 31px gap */
    left: 0;
    right: 0;
    z-index: 997;
    background: rgba(3, 7, 18, 0.95);
    border-top: 1px solid rgba(0, 255, 136, 0.5);
    border-bottom: 1px solid rgba(0, 255, 136, 0.5);
    padding: 12px 40px;
}

.analysis-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.analysis-bar-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #030712;
    flex-shrink: 0;
}

.analysis-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.analysis-bar-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.analysis-bar-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.analysis-bar-search {
    flex: 1;
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin-left: auto;
}

.analysis-bar-search input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    background: rgba(3, 7, 18, 0.8);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.analysis-bar-search input::placeholder {
    color: var(--text-muted);
}

.analysis-bar-search input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-analyze-landing {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #030712;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-analyze-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

/* Symbol Input Wrapper & Suggestions Dropdown */
.symbol-input-wrapper {
    position: relative;
    flex: 1;
}

.symbol-input-wrapper input {
    width: 100%;
}

.symbol-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    border: 2px solid #00ff88;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.symbol-suggestions.active {
    display: block;
}

.symbol-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: background 0.15s;
}

.symbol-suggestion-item:last-child {
    border-bottom: none;
}

.symbol-suggestion-item:hover,
.symbol-suggestion-item.selected {
    background: rgba(0, 255, 136, 0.1);
}

.symbol-suggestion-item .symbol-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.symbol-suggestion-item .symbol-ticker {
    font-family: 'JetBrains Mono', monospace;
    color: #00ff88;
    font-size: 0.85rem;
    font-weight: 500;
}

.symbol-suggestion-item .symbol-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.symbol-no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Analysis Results Container (pushes content down) */
.analysis-results-container {
    position: relative;
    top: 280px; /* Below nav + ticker + analysis bar */
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.analysis-results-container.active {
    max-height: 800px;
    padding: 16px 40px 24px;
}

/* Analysis Results Dropdown */
.analysis-results-dropdown {
    display: none;
    background: rgba(15, 23, 42, 0.98);
    border: 2px solid #00ff88;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.analysis-results-dropdown.active {
    display: block;
}

.analysis-results-dropdown .result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.analysis-results-dropdown .result-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    font-family: 'JetBrains Mono', monospace;
}

.analysis-results-dropdown .result-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 12px;
}

.analysis-results-dropdown .result-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.analysis-results-dropdown .result-close:hover {
    color: var(--text-primary);
}

.analysis-results-dropdown .result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.analysis-results-dropdown .result-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.analysis-results-dropdown .result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.analysis-results-dropdown .result-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.analysis-results-dropdown .result-value.positive { color: #00ff88; }
.analysis-results-dropdown .result-value.negative { color: #ff3366; }

.analysis-results-dropdown .result-verdict {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.analysis-results-dropdown .verdict-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.analysis-results-dropdown .verdict-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
}

.analysis-results-dropdown .verdict-text.sell {
    color: #ff3366;
}

.analysis-results-dropdown .result-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: #00d4ff;
    font-size: 0.85rem;
    text-decoration: none;
}

.analysis-results-dropdown .result-link:hover {
    text-decoration: underline;
}

.analysis-results-dropdown .loading-spinner {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

.analysis-results-dropdown .loading-spinner i {
    font-size: 2rem;
    color: #00ff88;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Upgrade Prompt for Tier-Locked Content */
.upgrade-prompt {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 16px 0;
}

.upgrade-prompt .upgrade-icon {
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 10px;
}

.upgrade-prompt .upgrade-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.upgrade-prompt .tier-required {
    font-weight: 700;
    text-transform: uppercase;
}

.upgrade-prompt .upgrade-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.upgrade-prompt .upgrade-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.upgrade-prompt .upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.4);
}

.blurred-content {
    position: relative;
}

/* Tier badges */
.signal-tier-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
}

.signal-tier-badge.tier-bronze { background: #cd7f32; color: #fff; }
.signal-tier-badge.tier-silver { background: #c0c0c0; color: #333; }
.signal-tier-badge.tier-gold { background: #ffd700; color: #333; }
.signal-tier-badge.tier-platinum { background: #a78bfa; color: #fff; }

/* Result header improvements */
.result-header-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* Result content wrapper */
.result-content {
    margin-bottom: 16px;
}

/* Action Buttons as Grid Items */
.action-btn-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.action-btn-grid i {
    font-size: 1.1rem;
}

.action-btn-grid span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn-grid.watchlist-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.action-btn-grid.watchlist-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 193, 7, 0.25) 100%);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.action-btn-grid.watchlist-btn.success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-color: #00ff88;
    color: #00ff88;
}

.action-btn-grid.alert-btn {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

.action-btn-grid.alert-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

/* Action Prompt Modal */
.action-prompt-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.action-prompt-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.action-prompt-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.action-prompt-close:hover {
    color: var(--text-primary);
}

.action-prompt-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #a78bfa;
}

.action-prompt-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.action-prompt-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.action-prompt-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-prompt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
}

.action-prompt-btn.primary {
    background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
    color: white;
}

.action-prompt-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.4);
}

.action-prompt-btn.secondary {
    background: transparent;
    border: 2px solid rgba(148, 163, 184, 0.3);
    color: var(--text-primary);
}

.action-prompt-btn.secondary:hover {
    border-color: var(--text-primary);
    background: rgba(148, 163, 184, 0.1);
}

/* Responsive adjustments for result grid */
@media (max-width: 900px) {
    .analysis-results-dropdown {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .analysis-results-dropdown .result-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .analysis-results-dropdown {
        width: 95%;
    }

    .result-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .signal-tier-badge {
        margin-left: 0;
    }

    .action-btn-grid span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .analysis-results-dropdown .result-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .analysis-results-dropdown {
        padding: 16px;
        width: 98%;
    }

    .action-btn-grid {
        padding: 10px 8px;
    }

    .action-btn-grid i {
        font-size: 1rem;
    }

    .action-btn-grid span {
        font-size: 0.65rem;
    }
}

@media (max-width: 900px) {
    .analysis-bar-content {
        flex-wrap: wrap;
    }

    .analysis-bar-text {
        display: none;
    }

    .analysis-bar-search {
        flex: 1 1 100%;
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .analysis-bar {
        padding: 10px 16px;
    }

    .analysis-bar-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .analysis-bar-search input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .btn-analyze-landing {
        padding: 10px 16px;
    }

    .btn-analyze-landing span {
        display: none;
    }
}

.ticker-row {
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.ticker-row:first-child {
    border-bottom: 1px solid var(--border-subtle);
}

.ticker-row:last-child {
    margin-top: 30px;
}

.ticker-label {
    flex-shrink: 0;
    padding: 0 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    background: var(--bg-secondary);
}

.ticker-label.signals {
    color: var(--neon-green);
    border-right: 2px solid var(--neon-green);
}

.ticker-label.market {
    color: var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

.ticker-label i {
    font-size: 0.9rem;
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 180s linear infinite;
    width: max-content;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
    border: 1px solid transparent;
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.ticker-symbol {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.ticker-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ticker-change {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.ticker-change.up {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

.ticker-change.down {
    color: var(--neon-red);
    background: rgba(255, 51, 102, 0.1);
}

.ticker-confidence {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(168, 85, 247, 0.2);
    color: var(--neon-purple);
}

/* ENHANCED SIGNAL ENGINE v2.0 - Ticker Styles */

/* Signal Type Badges (from Algorithm Control thresholds) */
.ticker-signal-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-signal-type.signal-strong-buy {
    color: #fff;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.ticker-signal-type.signal-buy {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
}

.ticker-signal-type.signal-weak-buy {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.ticker-signal-type.signal-hold {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.ticker-signal-type.signal-wait {
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
}

/* ATH Zone Badges (from Algorithm Control zones) */
.ticker-ath-zone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ticker-ath-zone.ath-extreme {
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.ticker-ath-zone.ath-deep {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.ticker-ath-zone.ath-value {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.ticker-ath-zone.ath-fair {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.ticker-ath-zone.ath-premium {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Recovery Potential */
.ticker-recovery {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Signal Item Container */
.ticker-item.signal-item {
    padding: 6px 12px;
    margin-right: 8px;
    background: rgba(10, 15, 28, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 6px;
}

.ticker-item.signal-item:hover {
    background: rgba(10, 15, 28, 0.9);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

/* ========== TIER BADGES & BORDERS ========== */
.ticker-tier-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bronze Tier */
.ticker-tier-badge.tier-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    color: #fff;
}
.tier-bronze-border {
    border-left: 3px solid #cd7f32 !important;
}

/* Silver Tier */
.ticker-tier-badge.tier-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #1a1a2e;
}
.tier-silver-border {
    border-left: 3px solid #c0c0c0 !important;
}

/* Gold Tier */
.ticker-tier-badge.tier-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    color: #1a1a2e;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
.tier-gold-border {
    border-left: 3px solid #ffd700 !important;
}

/* Platinum Tier */
.ticker-tier-badge.tier-platinum {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
}
.tier-platinum-border {
    border-left: 3px solid #667eea !important;
}

/* ========== LOCKED/BLURRED SIGNALS ========== */
.ticker-item.signal-locked {
    background: rgba(10, 15, 28, 0.8);
    position: relative;
}

.ticker-item.signal-locked .blurred {
    filter: blur(4px);
    user-select: none;
    opacity: 0.6;
}

.ticker-lock-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    color: #ffd700;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}

.ticker-lock-badge:hover {
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

/* ========== TICKER COLUMN LABELS ========== */
.ticker-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-height: 36px;
}

.ticker-label-mini {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    white-space: nowrap;
    height: 12px;
    line-height: 12px;
    opacity: 0.7;
}

.ticker-item.signal-item {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 6px 12px;
    gap: 10px;
}

/* Signal Type Badges */
.signal-strong-buy {
    background: linear-gradient(135deg, #ffd700, #ff8800) !important;
    color: #000 !important;
    font-weight: 700 !important;
    animation: strong-buy-glow 1.5s ease-in-out infinite;
}

@keyframes strong-buy-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

.signal-buy {
    background: rgba(0, 200, 255, 0.2) !important;
    color: #00c8ff !important;
    border: 1px solid rgba(0, 200, 255, 0.5);
}

.signal-weak-buy {
    background: rgba(0, 255, 136, 0.15) !important;
    color: #00ff88 !important;
}

.signal-hold {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-secondary) !important;
}

.ticker-item.signal-locked:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

/* Upgrade prompt on hover */
.ticker-item.signal-locked::after {
    content: 'Upgrade to unlock';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #ffd700;
    background: rgba(0, 0, 0, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.ticker-item.signal-locked:hover::after {
    opacity: 1;
}

/* Ticker Watchlist Button */
.ticker-col.ticker-action {
    min-height: auto;
    justify-content: center;
}

.ticker-watchlist-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-watchlist-btn i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.ticker-watchlist-btn:hover {
    background: rgba(255, 215, 0, 0.1);
}

.ticker-watchlist-btn:hover i {
    color: #ffd700;
    transform: scale(1.2);
}

.ticker-watchlist-btn i.fas.active {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Price update animations with 1px border blink */
.ticker-item.price-up {
    animation: blink-green 0.6s ease;
}

.ticker-item.price-down {
    animation: blink-red 0.6s ease;
}

@keyframes blink-green {
    0%, 100% {
        background: transparent;
        border: 1px solid transparent;
    }
    25%, 75% {
        background: rgba(0, 255, 136, 0.15);
        border: 1px solid var(--neon-green);
        box-shadow: var(--glow-green);
    }
}

@keyframes blink-red {
    0%, 100% {
        background: transparent;
        border: 1px solid transparent;
    }
    25%, 75% {
        background: rgba(255, 51, 102, 0.15);
        border: 1px solid var(--neon-red);
        box-shadow: var(--glow-red);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-markets {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-subtle);
}

.nav-markets-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

.nav-market-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: help;
}

.nav-market-item .market-flag {
    font-size: 1rem;
}

.nav-market-item .market-flag.crypto {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #f7931a;
    font-size: 0.9rem;
}

.market-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.market-dot.open {
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

.market-dot.closed {
    background: var(--neon-red);
    opacity: 0.6;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 4px var(--neon-green); }
    50% { box-shadow: 0 0 12px var(--neon-green); }
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--bg-primary);
    box-shadow: var(--glow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.lang-selector {
    position: relative;
}

.btn-lang {
    font-size: 1.2rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 38px;
    box-sizing: border-box;
}

.btn-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(148, 163, 184, 0.6);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.lang-option.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
}

/* User Dropdown (for logged-in users) */
.user-dropdown {
    position: relative;
}

.btn-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-user:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(148, 163, 184, 0.6);
}

.btn-user i:first-child {
    font-size: 1.2rem;
    color: var(--neon-green);
}

.btn-user i:last-child {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

/* User Tier Badge */
.user-tier-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-tier-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8722c 100%);
    color: white;
}

.user-tier-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: white;
}

.user-tier-badge.gold {
    background: linear-gradient(135deg, #ffd700 0%, #f0c800 100%);
    color: #1e293b;
}

.user-tier-badge.platinum {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Admin Role Badge */
.user-role-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ff3366 0%, #ff6b6b 100%);
    color: white;
    display: inline-flex;
    align-items: center;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.user-dropdown-menu .dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.user-dropdown-menu .dropdown-item i {
    width: 16px;
    text-align: center;
}

.user-dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(148, 163, 184, 0.2);
    margin: 4px 0;
}

.user-dropdown-menu .dropdown-item.logout {
    color: var(--neon-red);
    border-radius: 0 0 8px 8px;
}

.user-dropdown-menu .dropdown-item.logout:hover {
    background: rgba(255, 51, 102, 0.1);
}

#guestActions {
    display: flex;
    align-items: center;
    gap: 12px;
}

#userActions {
    display: flex;
    align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    padding: 340px 40px 60px; /* Nav (88px) + Ticker (80px) + 30px gap + Analysis Bar (68px) + gap */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-top-bar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-green);
}

.hero-signal-times {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

/* Progress bar for next analysis */
.signal-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(0, 255, 136, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
    flex-basis: 100%;
}

.signal-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green) 0%, var(--neon-blue) 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.signal-time-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.signal-time-item i {
    color: var(--neon-blue);
    font-size: 0.75rem;
}

.signal-time-item strong {
    color: var(--neon-green);
    font-family: 'JetBrains Mono', monospace;
}

.signal-time-divider {
    color: var(--border-subtle);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tier stats row - separate line */
.tier-stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tier-stat {
    flex: 1;
    min-width: 80px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.tier-stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.tier-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.tier-stat.bronze {
    border: 1px solid rgba(205, 127, 50, 0.4);
}

.tier-stat.bronze .tier-stat-value {
    background: linear-gradient(135deg, #cd7f32 0%, #b8722c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-stat.silver {
    border: 1px solid rgba(192, 192, 192, 0.4);
}

.tier-stat.silver .tier-stat-value {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-stat.gold {
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.tier-stat.gold .tier-stat-value {
    background: linear-gradient(135deg, #ffd700 0%, #f0c800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-stat.platinum {
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.tier-stat.platinum .tier-stat-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-data-timestamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.tier-data-timestamp i {
    color: var(--accent);
    font-size: 1rem;
}

.tier-data-timestamp strong {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Hero Visual - Live Signal Preview */
.hero-visual {
    position: relative;
}

.signal-preview-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.signal-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
}

.signal-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.signal-preview-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signal-preview-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--neon-green);
}

.signal-preview-live .dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.signal-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.signal-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-blue);
    border: 1px solid var(--border-subtle);
}

.signal-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.signal-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.signal-type-badge {
    margin-left: auto;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.85rem;
}

.signal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.signal-metric {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.signal-metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.signal-metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.signal-metric-value.green { color: var(--neon-green); }
.signal-metric-value.blue { color: var(--neon-blue); }
.signal-metric-value.purple { color: var(--neon-purple); }

.signal-chart {
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.signal-chart canvas {
    width: 100%;
    height: 100%;
}

/* Signal Actions (Price Alert Button) */
.signal-actions {
    display: flex;
    justify-content: center;
    padding-top: 16px;
    margin-top: 8px;
}

.btn-price-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.15));
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 8px;
    color: var(--neon-green);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-price-alert:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 212, 255, 0.25));
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.btn-price-alert i {
    font-size: 1rem;
}

/* Floating elements around hero visual */
.floating-badge {
    position: absolute;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.bottom-left {
    bottom: 40px;
    left: -40px;
    animation-delay: 1s;
}

.floating-badge.bottom-right {
    bottom: -10px;
    right: 40px;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge i {
    font-size: 1rem;
}

/* Clickable floating badges */
.floating-badge.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-badge.clickable:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px) !important;
}

/* Tier + Signal Type badge */
.floating-badge.tier-signal {
    gap: 10px;
}

.badge-tier {
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.badge-tier.tier-bronze { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #fff; }
.badge-tier.tier-silver { background: linear-gradient(135deg, #c0c0c0, #808080); color: #000; }
.badge-tier.tier-gold { background: linear-gradient(135deg, #ffd700, #daa520); color: #000; }
.badge-tier.tier-platinum { background: linear-gradient(135deg, #e5e4e2, #a0a0a0); color: #000; }

.badge-divider {
    color: var(--text-muted);
    font-weight: 300;
}

.badge-signal-type {
    font-weight: 700;
    font-size: 0.85rem;
}

.badge-signal-type.signal-strong-buy { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.badge-signal-type.signal-buy { color: #00d4ff; }
.badge-signal-type.signal-weak-buy { color: #00ff88; }
.badge-signal-type.signal-hold { color: var(--text-secondary); }
.badge-signal-type.signal-locked { color: #ff6b6b; animation: pulse-locked 1.5s ease-in-out infinite; }

@keyframes pulse-locked {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Locked Signal Preview Card - Blur prices and chart, show symbol */
.signal-preview-card.signal-locked .signal-metrics,
.signal-preview-card.signal-locked .signal-chart {
    filter: blur(12px);
    user-select: none;
    pointer-events: none;
}

/* Lock the signal type badge */
.signal-preview-card.signal-locked .signal-type-badge {
    background: linear-gradient(135deg, #4a4a4a, #2d2d2d) !important;
    color: #888 !important;
    font-size: 1.2rem;
}

.signal-preview-card.signal-locked::after {
    content: '🔒 Upgrade to Unlock';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 51, 102, 0.95));
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
    cursor: pointer;
    white-space: nowrap;
}

/* Anti-copy protection */
.signal-preview-card,
.ticker-item,
.signals-table {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Locked signal type text */
.badge-signal-type.signal-locked-text {
    color: #ff6b6b;
    animation: pulse-locked 1.5s ease-in-out infinite;
}

/* Watchlist badge */
#badgeWatchlist i { color: var(--text-muted); transition: all 0.2s; }
#badgeWatchlist:hover i { color: #ffd700; }
#badgeWatchlist i.fas.active { color: #ffd700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.6); }

/* Alert badge */
#badgeAlert i { color: var(--neon-green); }

/* ============================================
   RACE TO THE BOTTOM SECTION
   ============================================ */

.race-section {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.02), transparent);
}

.race-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 51, 102, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-red);
    margin-left: 15px;
    vertical-align: middle;
}

.race-live-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: racePulse 1s infinite;
}

@keyframes racePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(255, 51, 102, 0); }
}

.race-boards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .race-boards-container {
        grid-template-columns: 1fr;
    }
}

.race-board {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.race-board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.race-board-header.crypto {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), transparent);
}

.race-board-header.stocks {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
}

.race-board-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.race-board-header.crypto .race-board-title {
    color: var(--neon-gold);
}

.race-board-header.stocks .race-board-title {
    color: var(--neon-blue);
}

.race-tier-filters {
    display: flex;
    gap: 4px;
}

.race-tier-btn {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-muted);
    transition: all 0.2s;
}

.race-tier-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.race-tier-btn.active {
    background: var(--neon-green);
    color: var(--bg-primary);
    border-color: var(--neon-green);
}

.race-table-header {
    display: grid;
    grid-template-columns: 55px 90px 75px 60px 70px 90px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.race-body {
    max-height: 350px;
    overflow-y: auto;
}

.race-body::-webkit-scrollbar {
    width: 4px;
}

.race-body::-webkit-scrollbar-track {
    background: transparent;
}

.race-body::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 2px;
}

.race-row {
    display: grid;
    grid-template-columns: 55px 90px 75px 60px 70px 90px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.race-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.race-row.top-3 {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.08), transparent);
}

.race-row.rising {
    animation: raceFlashGreen 0.8s ease;
    border-left: 3px solid var(--neon-green);
}

.race-row.falling {
    animation: raceFlashRed 0.8s ease;
    border-left: 3px solid var(--neon-red);
}

@keyframes raceFlashGreen {
    0%, 100% { background: transparent; }
    50% { background: rgba(0, 255, 136, 0.15); box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.1); }
}

@keyframes raceFlashRed {
    0%, 100% { background: transparent; }
    50% { background: rgba(255, 51, 102, 0.15); box-shadow: inset 0 0 20px rgba(255, 51, 102, 0.1); }
}

.race-rank {
    font-weight: 800;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.race-rank.gold { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.race-rank.silver { color: #c0c0c0; }
.race-rank.bronze { color: #cd7f32; }

.race-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
}

.race-ticker-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue), #1d4ed8);
    color: white;
}

.race-ticker-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.race-dip {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--neon-red);
}

.race-rsi {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--neon-blue);
}

.race-score {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--neon-green);
}

.race-rating {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.race-rating.strong-buy {
    background: linear-gradient(135deg, #ff3366, #ff6b6b);
    color: white;
}

.race-rating.buy {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: var(--bg-primary);
}

.race-rating.spec-buy {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--bg-primary);
}

.race-loading {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

.race-empty {
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tier lock overlay */
.race-row.locked {
    filter: blur(3px);
    opacity: 0.5;
}

.race-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--neon-gold);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(2px);
}

.race-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 1400px;
    margin: 0 auto 20px;
}

.race-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.race-update-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.race-update-info i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.race-disclaimer {
    font-style: italic;
    opacity: 0.7;
}

/* ============================================
   LIVE SIGNALS TABLE SECTION
   ============================================ */

.signals-section {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.signal-run-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}

.signal-run-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.signal-run-item i {
    color: var(--neon-blue);
}

.signal-run-item strong {
    color: var(--neon-green);
    font-family: 'JetBrains Mono', monospace;
}

.market-status-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.market-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 0.85rem;
}

.market-flag {
    font-size: 1.1rem;
}

.market-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.market-indicator {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-indicator.open {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: pulse-green 2s ease-in-out infinite;
}

.market-indicator.closed {
    background: rgba(255, 51, 102, 0.1);
    color: var(--neon-red);
    border: 1px solid rgba(255, 51, 102, 0.2);
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.5); }
}

.signals-container {
    max-width: 1400px;
    margin: 0 auto;
}

.signals-table-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.signals-table {
    width: 100%;
    border-collapse: collapse;
}

.signals-table thead {
    background: var(--bg-secondary);
}

.signals-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-subtle);
}

.signals-table tbody tr {
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-subtle);
}

.signals-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.signals-table tbody tr:last-child {
    border-bottom: none;
}

.signals-table td {
    padding: 20px;
    vertical-align: middle;
}

.signal-row-symbol {
    display: flex;
    align-items: center;
    gap: 12px;
}

.signal-row-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--neon-blue);
    border: 1px solid var(--border-subtle);
}

.signal-row-name {
    font-weight: 600;
}

.signal-row-company {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.signal-row-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.signal-row-change {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.85rem;
}

.signal-row-change.up { color: var(--neon-green); }
.signal-row-change.down { color: var(--neon-red); }

.signal-row-confidence {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.confidence-high {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
}

.confidence-medium {
    background: rgba(251, 191, 36, 0.15);
    color: var(--neon-gold);
}

.signal-row-tier {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-bronze { background: rgba(205, 127, 50, 0.2); color: #cd7f32; }
.tier-silver { background: rgba(192, 192, 192, 0.2); color: #c0c0c0; }
.tier-gold { background: rgba(255, 215, 0, 0.2); color: #ffd700; }
.tier-platinum { background: rgba(168, 85, 247, 0.2); color: var(--neon-purple); }

/* Blurred/Locked Rows */
.signals-table tbody tr.locked td:not(:last-child) {
    filter: blur(8px);
    user-select: none;
}

.signals-table tbody tr.locked {
    position: relative;
}

.unlock-overlay {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-green);
    color: var(--bg-primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.unlock-overlay:hover {
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

/* Signal Blurred State (per-cell blur instead of entire row) */
.signal-blurred {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

/* Disable full row blur for new approach */
.signals-table tbody tr.locked td:not(:last-child) {
    filter: none;
}

/* Signal Action Buttons */
.signal-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: rgba(17, 24, 39, 0.8);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.btn-action:hover {
    transform: scale(1.1);
}

.btn-watchlist:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--neon-gold);
    color: var(--neon-gold);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.btn-alert:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-action-locked {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.3);
    color: var(--neon-red);
    cursor: pointer;
}

.btn-action-locked:hover {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
}

.view-all-signals {
    display: block;
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border-subtle);
    color: var(--neon-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.view-all-signals:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-primary);
    box-shadow: var(--glow-green);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 24px;
    background: var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-blue);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-green);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-tier.bronze { color: #cd7f32; }
.pricing-tier.silver { color: #c0c0c0; }
.pricing-tier.gold { color: #ffd700; }
.pricing-tier.platinum { color: var(--neon-purple); }

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-accuracy {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--neon-green);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--neon-green);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 60px 40px 30px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 12px 40px;
    }

    .nav-logo-img {
        height: 52px;
    }

    .footer-logo-img {
        height: 62px;
    }
}

@media (max-width: 768px) {
    .nav-markets {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 10px 20px;
    }

    .nav-logo-img {
        height: 45px;
    }

    .nav-links {
        display: none;
    }

    .footer-logo-img {
        height: 55px;
    }

    .hero {
        padding: 140px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ticker-label {
        min-width: 120px;
        font-size: 0.6rem;
    }
}

/* ============================================
   LOGIN/REGISTER MODALS
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-submit {
    width: 100%;
    margin-top: 24px;
}

.form-switch {
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-switch a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
}

.form-error {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    color: var(--neon-red);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: none;
}

.form-error.show {
    display: block;
}
