:root {
    /* Professional FinTech Palette (Bybit-inspired Architecture, Brand Colors) */
    --bg-dark: #121212;
    /* Deepest Black */
    --bg-surface: #1E1E1E;
    /* Panel Black */
    --bg-card: #252525;
    /* Card Surface */

    /* Brand Identity - sharpened for dark mode */
    --primary: #3b82f6;
    /* Trust Blue */
    --primary-hover: #2563eb;
    --primary-hover: #2563eb;
    --accent: #10b981;
    /* Growth Green */
    --accent-dim: rgba(16, 185, 129, 0.1);
    --accent-gold: #F7A600;
    /* Bybit Gold */

    /* Functional Colors */
    --text-main: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #757575;

    --border: #333333;
    --border-active: #555555;

    /* Spacing & Structure */
    --radius-lg: 8px;
    /* Sharper corners for pro feel */
    --radius-md: 4px;
    --container-width: 1200px;

    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Utilities */
.hidden {
    display: none !important;
}

.glass-panel {
    /* Moving away from heavy glass to solid pro panels */
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* HEADER */
header {
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo-img,
.logo img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    /* Force constraint */
    object-fit: contain;
    /* Optional: Add a subtle glow filter to match the vibe if image allows, otherwise clean */
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
}


/* --- Navbar Enhancements --- */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-main);
}

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

.nav-connect-btn {
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-connect-btn:hover::before {
    left: 100%;
}

.nav-connect-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.4);
}

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

    .status-text {
        display: none;
    }
}

/* HERO SECTION */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
}

/* CARDS & GRID */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.card {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
}

/* Specific Card Glows */
#asset-scanner-card:hover {
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
    border-color: var(--primary);
}

#fund-recovery-card:hover {
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.3);
    border-color: var(--accent);
}

#roi-tracker-card:hover {
    box-shadow: 0 10px 30px -10px rgba(247, 166, 0, 0.3);
    border-color: var(--accent-gold);
}


.card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0;
    /* Removed margin */
    color: var(--primary);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--bg-surface);
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 12px;
    /* Added margin */
    color: var(--text-main);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* BUTTONS */
.btn-primary {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.4);
}

.btn-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, #2563eb 100%);
}

.btn-outline {
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.4);
}

/* STATUS BADGES */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    /* Capsule */
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

/* ROI CARD INTERACTION */
#roi-tracker-card {
    cursor: pointer;
    position: relative;
    border-left: 3px solid transparent;
    /* subtle indicator */
}

#roi-tracker-card:hover {
    border-left-color: var(--accent);
    background: linear-gradient(to right, rgba(16, 185, 129, 0.05), var(--bg-surface));
}

/* DASHBOARD OVERLAY (Trading Terminal Style) */
.dashboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    /* Controlled by JS */
    justify-content: center;
    align-items: center;
}

.dashboard-overlay.active {
    display: flex;
    animation: fadeIn 0.15s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dashboard-container {
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: #151515;
    /* Trading background */
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-header {
    background: #1A1A1A;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dashboard-content {
    padding: 24px;
    overflow-y: auto;
    display: grid;
    gap: 20px;
}

/* Metrics Bar */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-md);
}

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

.metric-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-main);
}

.metric-card .val-green {
    color: var(--accent);
}

/* Charts Area */
.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    min-height: 350px;
}

.chart-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.chart-box h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.line-chart,
.pie-chart-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-chart path {
    stroke-width: 2;
    filter: drop-shadow(0 4px 6px rgba(59, 130, 246, 0.2));
}

.pie-chart {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 60%,
            var(--accent) 60% 85%,
            #eab308 85% 100%);
    position: relative;
}

.pie-chart::after {
    content: '';
    position: absolute;
    inset: 25px;
    background: var(--bg-surface);
    border-radius: 50%;
}

.pie-legend {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Table Area */
.asset-section,
.activity-feed,
.projection-tool {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.asset-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.asset-table th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.asset-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.asset-table tr:last-child td {
    border-bottom: none;
}

.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Data Feed */
.feed-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.feed-item:last-child {
    border: none;
}

.tx-hash {
    font-family: monospace;
    color: var(--primary);
}

/* Slider */
.slider-group {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.slider {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.projection-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.projection-result strong {
    color: var(--accent);
    font-size: 1.25rem;
}

/* ===================================
   ENHANCED FOOTER STYLES
=================================== */

footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-col:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateX(5px);
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
    transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.7));
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Footer Links */
.footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link svg {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-link:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.footer-link-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-status .live-dot {
    margin-right: 0;
}

/* Newsletter Section */
.footer-col-newsletter {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.newsletter-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

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

.newsletter-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.newsletter-btn svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.newsletter-privacy {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.newsletter-form.success .newsletter-input {
    border-color: var(--accent);
}

.newsletter-message {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-top: 8px;
}

.newsletter-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--accent);
}

.footer-divider {
    color: var(--border);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-network-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-network-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {

    .metrics-grid,
    .charts-row,
    .bottom-row {
        grid-template-columns: 1fr;
    }

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

/* --- HERO SECTION REDESIGN (Bybit Style) --- */

/* Background Pattern (Dark Waves) */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background:
        repeating-radial-gradient(circle at 50% -20%,
            transparent 0,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 21px);
    mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    pointer-events: none;
}

.hero-section {
    position: relative;
    padding: 80px 0 30px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.02) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left: Content */
.hero-content {
    text-align: left;
    max-width: 620px;
}

.hero-content h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text-main);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 580px;
}

.text-highlight {
    color: #F7A600;
    /* Bybit Gold/Yellow tone */
    font-weight: 600;
}

/* CTA Area */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-cta-wrapper .btn-primary {
    width: auto;
    min-width: 220px;
    padding: 15px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.hero-cta-wrapper .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.4);
    animation: none;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.trust-indicator svg {
    color: var(--accent);
}


/* Right: Visuals (Floating Cards) */
.hero-visuals {
    position: relative;
    min-height: 380px;
    display: flex;
    gap: 20px;
    justify-content: center;
    perspective: 1000px;
}

.floating-ticker-card {
    position: absolute;
    min-width: 240px;
    width: auto;
    padding: 24px 32px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Faint border */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: floatCard 6s ease-in-out infinite;
    top: 50%;
    left: 50%;
}

/* Position cards manually for composition */
.floating-ticker-card:nth-child(1) {
    transform: translate(-140%, -60%);
    z-index: 2;
}

.floating-ticker-card:nth-child(2) {
    transform: translate(-50%, -40%);
    z-index: 3;
    border-color: rgba(255, 255, 255, 0.15);
    /* Highlight middle card */
    background: rgba(35, 35, 35, 0.9);
}

.floating-ticker-card:nth-child(3) {
    transform: translate(40%, -20%);
    z-index: 1;
    opacity: 0.8;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translate(var(--tx, -50%), calc(var(--ty, -50%) - 10px));
    }

    50% {
        transform: translate(var(--tx, -50%), calc(var(--ty, -50%) + 10px));
    }
}

/* Override transforms for animation keyframes fallback hack */
.floating-ticker-card:nth-child(1) {
    --tx: -140%;
    --ty: -60%;
}

.floating-ticker-card:nth-child(2) {
    --tx: -50%;
    --ty: -40%;
}

.floating-ticker-card:nth-child(3) {
    --tx: 40%;
    --ty: -20%;
}


.ticker-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ticker-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.floating-ticker-card strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-display);
}

.ticker-change {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ticker-change.positive {
    color: var(--accent);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta-wrapper {
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .hero-visuals {
        min-height: 300px;
        transform: scale(0.8);
    }
}

/* --- Ambient Background Effects --- */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.08;
}

.ambient-glow-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -300px;
    left: -200px;
}

.ambient-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    opacity: 0.05;
}

/* --- Ticker Grid Styles (Phase 7) --- */

.hero-visuals {
    /* Reset from previous absolute/floating layout */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: none;
    min-height: auto;
}

.ticker-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 500px;
}

.ticker-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Faint border */
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
    opacity: 0;
    animation: fadeInSlide 0.5s forwards ease-out;
}

.ticker-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ticker-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-card strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-display);
}

.ticker-change {
    font-size: 0.8rem;
    display: block;
}

.ticker-change.positive {
    color: var(--accent);
}

.ticker-change.negative {
    color: #f43f5e;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .ticker-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ticker-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .ticker-card strong {
        font-size: 1rem;
    }
}

/* Remove legacy floating cards */
.floating-ticker-card {
    display: none;
}



/* --- Spot Listings Section --- */
.spot-section {
    padding: 60px 0;
    text-align: center;
}

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

.section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.section-header p {
    color: var(--text-secondary);
}

.spot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.spot-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.spot-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.spot-tag {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.spot-desc {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-main);
}

.spot-coin {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.coin-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #333;
    /* Placeholder */
    background-size: cover;
}

/* Specific Icons (Placeholders) */
.icon-fight {
    background-image: linear-gradient(135deg, #ff4d4d, #f9cb28);
}

.icon-elsa {
    background-image: linear-gradient(135deg, #eee, #999);
}

.icon-whale {
    background-image: linear-gradient(135deg, #4facfe, #00f2fe);
}

.icon-gold {
    background-image: linear-gradient(135deg, #FFD700, #DAA520);
}

.icon-usdt {
    background: #26A17B;
}

.icon-btc {
    background: #F7931A;
}

.icon-eth {
    background: #627EEA;
}

.cta-container {
    margin-top: 30px;
}

.btn-spot-explore {
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-spot-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-spot-explore:hover::before {
    left: 100%;
}

.btn-spot-explore:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.4);
}

/* --- Earn Opportunities Section --- */
.earn-section {
    padding: 60px 0 100px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: var(--font-display);
}

.text-gold {
    color: var(--accent-gold);
}

.earn-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.earn-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.earn-card:hover {
    border-color: var(--accent-gold);
    background: #161616;
}

.earn-card.featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 0%, rgba(38, 161, 123, 0.15), transparent 70%), #111;
    position: relative;
    padding: 40px;
}

.earn-card.featured .earn-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.earn-label {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.earn-apr {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.earn-apr span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.earn-apr strong {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1.1;
}

.earn-arrow {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.earn-card:hover .earn-arrow {
    background: var(--accent);
    color: #000;
}

.earn-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.earn-card.small {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.earn-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.earn-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

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

.earn-info strong {
    font-size: 1.25rem;
    color: var(--accent);
}

.earn-action-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.earn-card.small:hover .earn-action-arrow {
    border-color: var(--text-main);
    color: var(--text-main);
}

@media (max-width: 768px) {
    .earn-grid {
        grid-template-columns: 1fr;
    }

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

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

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

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-active);
    transform: translateX(4px);
}

.wallet-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    /* Fallback */
}

/* Icon Placeholders (Use specific URLs or Sprites in prod) */
.metamask-icon {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/36/MetaMask_Fox.svg');
}

.trust-icon {
    background-image: url('https://trustwallet.com/assets/images/media/assets/TWT.png');
}

/* Simplified URL */
.tron-icon {
    background-image: url('https://cryptologos.cc/logos/tron-trx-logo.png');
}

.wc-icon {
    background-image: url('https://avatars.githubusercontent.com/u/37784886');
}

.ledger-icon {
    background-image: url('https://cryptologos.cc/logos/ledger-logo.png');
    background-color: white;
    border-radius: 4px;
    padding: 2px;
}

.wallet-option span {
    font-weight: 500;
    color: var(--text-main);
}


.hero-visuals {
    height: 400px;
    /* Fixed height for marquee window */
    overflow: hidden;
    /* Hide scrollbar */
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.ticker-grid-container {
    /* Container acts as the window */
    width: 100%;
    max-width: 500px;
    height: 100%;
    position: relative;
}

.ticker-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    /* Move the animation here */
    animation: scroll-up 20s linear infinite;
    will-change: transform;
}

.ticker-grid-container:hover .ticker-track {
    animation-play-state: paused;
    /* Interactive Pause */
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

    /* Need JS to duplicate items to make this seamless */
}

.ticker-card {
    /* Enhanced Interactive State */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Ensure opacity is visible */
    opacity: 1;
    animation: none;
    /* Reset entrance animation */
}

.ticker-card:hover {
    transform: scale(1.05);
    /* Pop effect */
    border-color: var(--accent);
    box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.3);
    z-index: 10;
}

/* --- GEO RECOVERY TOASTS --- */
.geo-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    /* Let clicks pass through */
}

.geo-toast {
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
    pointer-events: auto;
}

.geo-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.geo-icon {
    font-size: 1.5rem;
}

.geo-content {
    display: flex;
    flex-direction: column;
}

.geo-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.geo-desc {
    font-size: 0.9rem;
    color: var(--text-main);
}

.text-accent {
    color: var(--accent);
    font-weight: 700;
}

/* --- CARD ENHANCEMENTS (VISUAL LURE) --- */

/* 1. Radar Scan Effect for Asset Scanner */
@keyframes radar-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.card:nth-child(1):hover .card-icon {
    animation: radar-pulse 2s infinite;
    background: var(--primary);
    color: white;
}

/* 2. Breathing Glow for Fund Recovery (The "Lure") */
@keyframes breathing-border {
    0% {
        border-color: rgba(16, 185, 129, 0.3);
        box-shadow: 0 0 0 rgba(16, 185, 129, 0);
    }

    50% {
        border-color: rgba(16, 185, 129, 0.8);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    }

    100% {
        border-color: rgba(16, 185, 129, 0.3);
        box-shadow: 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Apply to the middle card (Fund Recovery) by default or on hover */
.card:nth-child(2) {
    position: relative;
    border-color: rgba(16, 185, 129, 0.4);
}

.card:nth-child(2):hover {
    animation: breathing-border 3s infinite;
}

/* Make the button inside it pulsate */
.card:nth-child(2) .btn-primary {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 3. Live Indicator for ROI */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ef4444;
    /* Recording Red */
    border-radius: 50%;
    margin-right: 6px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* --- Spot Card Upgrades (FOMO & GEO) --- */

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.spot-tag {
    margin-bottom: 0;
    /* Override previous */
}

.geo-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-container {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 16px;
    position: relative;
    display: block;
}

.progress-bar {
    background: var(--accent);
    height: 100%;
    border-radius: 3px;
    display: block;
}

.progress-bar.critical {
    background: #f43f5e;
    /* Red for high urgency */
}

.progress-text {
    font-size: 0.75rem;
    color: var(--accent);
    position: absolute;
    right: 0;
    top: -20px;
    font-weight: 600;
}

.text-critical {
    color: #f43f5e;
}

.btn-sm-connect {
    background: linear-gradient(135deg, #00D4FF, #0080FF);
    border: none;
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-sm-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-sm-connect:hover::before {
    left: 100%;
}

.btn-sm-connect:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.4);
}

.highlight-card {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(247, 166, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.eligibility-overlay {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-icon {
    animation: blink 1s infinite;
}

/* --- Hero Scanner Effect --- */
@keyframes scanDown {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes pulse-radar {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.scanner-overlay-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    border-radius: 12px;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    animation: scanDown 3s linear infinite;
    z-index: 12;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: pulse-radar 2.5s infinite;
}

/* --- Staking Calculator --- */
.calculator-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    border: 1px solid var(--border);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.calc-value {
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-display);
}

.calc-result {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Custom Range Slider */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    margin: 12px 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 10px rgba(247, 166, 0, 0.5);
    transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* === Trust Badges Section === */
.trust-badges-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badges-section>p:first-of-type {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 620px;
}

.trust-badge-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.trust-badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-badge-item:hover::before {
    opacity: 1;
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.trust-badge-item>div:first-child {
    font-size: 1.4rem;
    margin-bottom: 6px;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.trust-badge-item:hover>div:first-child {
    filter: grayscale(0);
    transform: scale(1.1);
}

.trust-badge-item>div:nth-child(2) {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
    word-break: break-word;
    line-height: 1.2;
}

.trust-badge-item>div:nth-child(3) {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.trust-badges-section>p:last-of-type {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 24px;
    line-height: 1.6;
    max-width: 420px;
}

.trust-badges-section>p:last-of-type strong {
    color: var(--accent);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

/* FAQ Section Styling */
.faq-section {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 32px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Left Accent Line on Hover */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #00D4FF, #0080FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Section Divider Utility */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    width: 100%;
    margin: 0 auto;
    border: none;
}

/* ===================================
   MOBILE RESPONSIVENESS (Global Fixes)
   =================================== */
@media (max-width: 768px) {

    /* 1. Reset Container Structure */
    .hero-grid,
    .dashboard-grid,
    .features-grid,
    .footer-grid,
    .charts-row,
    .metrics-grid,
    .spot-grid,
    .highlight-card {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* 2. Trust Badges Fix */
    .trust-badges-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }

    /* 3. Typography Scaling */
    .hero h1,
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero p,
    .hero-content p {
        font-size: 1rem !important;
        padding: 0 4px;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    /* 4. Spacing Adjustments */
    .section-separator {
        margin: 30px auto !important;
    }

    .hero-section,
    .spot-section,
    .earn-section,
    .faq-section {
        padding: 40px 16px !important;
    }

    /* 5. Component Fixes */
    .btn-primary,
    .btn-spot-explore {
        width: 100% !important;
        padding: 14px !important;
    }

    /* Fix Charts on Mobile */
    .pie-chart {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    /* Fix Table Overflow */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        display: block;
    }

    /* Hide non-essential elements on very small screens */
    .hero-bg-pattern {
        opacity: 0.5;
    }
}