/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent elastic overscroll revealing white background */
html {
    overscroll-behavior: none;
    background: #0a0a1a;
}

/* Global image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

:root {
    /* ============================================
       WHIVE 4-COLOR BRAND PALETTE
       Based on logo: Green, Gold, Black, White
       ============================================ */

    /* Primary Brand Colors - ONLY THESE 4 ARE AUTHORIZED */
    --brand-green: #39FF14;      /* Primary accent - mining, success, CTAs */
    --brand-gold: #FFD700;       /* Secondary accent - highlights, links, brand */
    --brand-dark: #0a0a1a;       /* Background - primary dark */
    --brand-white: #FFFFFF;      /* Text - primary text color */

    /* Background Variants */
    --brand-dark-alt: #1a1a2e;   /* Secondary dark background */
    --dark-bg: #0a0a1a;          /* Alias for compatibility */
    --light-bg: #1A1A1A;         /* Card backgrounds */

    /* Text Colors */
    --white: #FFFFFF;            /* Primary text */
    --gray-light: #CCCCCC;       /* Secondary text */
    --gray-dark: #666666;        /* Muted text */

    /* Transparency Variants */
    --green-glow: rgba(57, 255, 20, 0.1);
    --gold-glow: rgba(255, 215, 0, 0.1);
    --green-border: rgba(57, 255, 20, 0.15);
    --gold-border: rgba(255, 215, 0, 0.15);

    /* Shadows */
    --shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    --shadow-green: 0 4px 20px rgba(57, 255, 20, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-glow-green: 0 0 20px rgba(57, 255, 20, 0.5);

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-hero: clamp(2rem, 5vw, 4rem);

    /* Spacing Scale */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Animation Timing */
    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;
    --easing-default: ease;
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-tooltip: 1100;

    /* Legacy Aliases (pointing to brand colors) */
    --primary-yellow: #FFD700;   /* Consolidated to gold */
    --primary-green: #39FF14;
    --brand-yellow: #FFD700;
    --hexagon-yellow: rgba(255, 215, 0, 0.1);
    --hexagon-green: rgba(57, 255, 20, 0.1);
    --trading-highlight: #FFD700;
    --sustainable-energy: #39FF14;
    --connection-line: rgba(57, 255, 20, 0.3);  /* Changed from blue to green */
    --opensource-accent: #39FF14;               /* Changed from blue to green */
}

/* ============================================
   CUSTOM BRAND ICONS
   SVG icons using brand colors (Green #39FF14, Gold #FFD700)
   ============================================ */

/* Base icon styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}

.icon-lg { width: 1.5em; height: 1.5em; }
.icon-xl { width: 2em; height: 2em; }
.icon-2x { width: 2.5em; height: 2.5em; }

/* Icon color variants */
.icon-gold { color: var(--brand-gold); }
.icon-green { color: var(--brand-green); }
.icon-white { color: var(--brand-white); }

/* SVG Icon Definitions using CSS masks */
.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Price/Money Icon */
.icon-price::before,
.icon-money::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M12 6v12M9 9h6c.6 0 1 .4 1 1v1c0 .6-.4 1-1 1h-4c-.6 0-1 .4-1 1v1c0 .6.4 1 1 1h6' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M12 6v12M9 9h6c.6 0 1 .4 1 1v1c0 .6-.4 1-1 1h-4c-.6 0-1 .4-1 1v1c0 .6.4 1 1 1h6' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Token/Coin Icon */
.icon-token::before,
.icon-coin::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M12 8l2 2-2 2-2-2z' fill='currentColor'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='currentColor' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M12 8l2 2-2 2-2-2z' fill='currentColor'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='currentColor' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Lightning/Energy Icon */
.icon-energy::before,
.icon-lightning::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7l1-8z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7l1-8z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Chain/Link Icon */
.icon-chain::before,
.icon-link::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Gear/Settings Icon */
.icon-gear::before,
.icon-settings::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M12 1v3M12 20v3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M1 12h3M20 12h3M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M12 1v3M12 20v3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M1 12h3M20 12h3M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Chart Up Icon */
.icon-chart::before,
.icon-growth::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 20h18M6 16l4-4 4 4 6-6M16 10h4v4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 20h18M6 16l4-4 4 4 6-6M16 10h4v4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Diamond/Gem Icon */
.icon-diamond::before,
.icon-gem::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6-10 12L2 9z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3Cpath d='M2 9h20M12 21L8 9l4-6 4 6z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6-10 12L2 9z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3Cpath d='M2 9h20M12 21L8 9l4-6 4 6z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Live/Status Dot Icon */
.icon-live::before,
.icon-status::before {
    content: '';
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    background-color: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-green);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Checkmark Icon */
.icon-check::before,
.icon-success::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='currentColor' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='currentColor' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Mobile/Phone Icon */
.icon-mobile::before,
.icon-phone::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cline x1='12' y1='18' x2='12' y2='18' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cline x1='12' y1='18' x2='12' y2='18' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Computer/Laptop Icon */
.icon-computer::before,
.icon-laptop::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='12' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M6 20h12M9 16v4M15 16v4' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='12' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M6 20h12M9 16v4M15 16v4' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Monitor/Desktop Icon */
.icon-monitor::before,
.icon-desktop::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M8 21h8M12 17v4' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M8 21h8M12 17v4' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Lightbulb/Tip Icon */
.icon-tip::before,
.icon-idea::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18h6M10 22h4M12 2a7 7 0 0 0-4 12.7V17a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.3A7 7 0 0 0 12 2z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18h6M10 22h4M12 2a7 7 0 0 0-4 12.7V17a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.3A7 7 0 0 0 12 2z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Bar Chart/Stats Icon */
.icon-stats::before,
.icon-bars::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 20V10M12 20V4M6 20v-6' stroke='currentColor' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 20V10M12 20V4M6 20v-6' stroke='currentColor' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Robot/AI Icon */
.icon-robot::before,
.icon-ai::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='8' width='16' height='12' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Ccircle cx='9' cy='13' r='1.5' fill='currentColor'/%3E%3Ccircle cx='15' cy='13' r='1.5' fill='currentColor'/%3E%3Cpath d='M12 4v4M8 4h8' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10 17h4' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='8' width='16' height='12' rx='2' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Ccircle cx='9' cy='13' r='1.5' fill='currentColor'/%3E%3Ccircle cx='15' cy='13' r='1.5' fill='currentColor'/%3E%3Cpath d='M12 4v4M8 4h8' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10 17h4' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Globe/Global Icon */
.icon-globe::before,
.icon-global::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z' stroke='currentColor' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z' stroke='currentColor' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Sync/Refresh Icon */
.icon-sync::before,
.icon-refresh::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 12a9 9 0 0 1-9 9m0 0a9 9 0 0 1-9-9m9 9v3m0-3l3-3m-3 3l-3-3M3 12a9 9 0 0 1 9-9m0 0a9 9 0 0 1 9 9m-9-9V0m0 3l3 3m-3-3L9 6' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 12a9 9 0 0 1-9 9m0 0a9 9 0 0 1-9-9m9 9v3m0-3l3-3m-3 3l-3-3M3 12a9 9 0 0 1 9-9m0 0a9 9 0 0 1 9 9m-9-9V0m0 3l3 3m-3-3L9 6' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Shield/Security Icon */
.icon-shield::before,
.icon-security::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Target Icon */
.icon-target::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Ccircle cx='12' cy='12' r='6' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Ccircle cx='12' cy='12' r='2' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Ccircle cx='12' cy='12' r='6' stroke='currentColor' stroke-width='2' fill='none'/%3E%3Ccircle cx='12' cy='12' r='2' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Exchange/Trade Icon */
.icon-exchange::before,
.icon-trade::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 16V4m0 0L3 8m4-4l4 4M17 8v12m0 0l4-4m-4 4l-4-4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 16V4m0 0L3 8m4-4l4 4M17 8v12m0 0l4-4m-4 4l-4-4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Rocket/Launch Icon */
.icon-rocket::before,
.icon-launch::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09zM12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09zM12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Arrow Up Icon */
.icon-up::before,
.icon-arrow-up::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 19V5m0 0l-7 7m7-7l7 7' stroke='currentColor' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 19V5m0 0l-7 7m7-7l7 7' stroke='currentColor' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Arrow Down Icon */
.icon-down::before,
.icon-arrow-down::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14m0 0l7-7m-7 7l-7-7' stroke='currentColor' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14m0 0l7-7m-7 7l-7-7' stroke='currentColor' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Book/Docs Icon */
.icon-book::before,
.icon-docs::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z' stroke='currentColor' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z' stroke='currentColor' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Wrench/Tools Icon */
.icon-wrench::before,
.icon-tools::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Warning/Alert Icon */
.icon-warning::before,
.icon-alert::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3Cpath d='M12 9v4M12 17h.01' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z' stroke='currentColor' stroke-width='2' fill='none' stroke-linejoin='round'/%3E%3Cpath d='M12 9v4M12 17h.01' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Trophy/Achievement Icon */
.icon-trophy::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6M18 9h1.5a2.5 2.5 0 0 0 0-5H18M4 22h16M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22M18 2H6v7a6 6 0 0 0 12 0V2z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6M18 9h1.5a2.5 2.5 0 0 0 0-5H18M4 22h16M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22M18 2H6v7a6 6 0 0 0 12 0V2z' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Numbered Step Icons */
.icon-step-1::before { content: '1'; display: inline-flex; align-items: center; justify-content: center; width: 1.5em; height: 1.5em; background: var(--brand-gold); color: var(--brand-dark); border-radius: 50%; font-weight: 700; font-size: 0.8em; }
.icon-step-2::before { content: '2'; display: inline-flex; align-items: center; justify-content: center; width: 1.5em; height: 1.5em; background: var(--brand-gold); color: var(--brand-dark); border-radius: 50%; font-weight: 700; font-size: 0.8em; }
.icon-step-3::before { content: '3'; display: inline-flex; align-items: center; justify-content: center; width: 1.5em; height: 1.5em; background: var(--brand-gold); color: var(--brand-dark); border-radius: 50%; font-weight: 700; font-size: 0.8em; }

/* Scale/Legal Icon */
.icon-legal::before,
.icon-scale::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v18M3 6l3 9a5 5 0 0 0 6 0l3-9M21 6l-3 9a5 5 0 0 1-6 0l-3-9M3 6h6M15 6h6' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v18M3 6l3 9a5 5 0 0 0 6 0l3-9M21 6l-3 9a5 5 0 0 1-6 0l-3-9M3 6h6M15 6h6' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Brain/AI Icon */
.icon-brain::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5a2.5 2.5 0 0 0-4.96-.46 2.5 2.5 0 0 0-1.98 3 2.5 2.5 0 0 0-1.32 4.24 3 3 0 0 0 .34 5.58 2.5 2.5 0 0 0 2.96 3.08A2.5 2.5 0 0 0 12 19.5a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 12 4.5' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M12 4.5v15M9 8h.01M15 8h.01M9 12h.01M15 12h.01M9 16h.01M15 16h.01' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5a2.5 2.5 0 0 0-4.96-.46 2.5 2.5 0 0 0-1.98 3 2.5 2.5 0 0 0-1.32 4.24 3 3 0 0 0 .34 5.58 2.5 2.5 0 0 0 2.96 3.08A2.5 2.5 0 0 0 12 19.5a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 12 4.5' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M12 4.5v15M9 8h.01M15 8h.01M9 12h.01M15 12h.01M9 16h.01M15 16h.01' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Clock/Time Icon */
.icon-clock::before,
.icon-time::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M12 6v6l4 2' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M12 6v6l4 2' stroke='currentColor' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Building/Datacenter Icon */
.icon-building::before,
.icon-datacenter::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18M2 22h20M10 6h.01M14 6h.01M10 10h.01M14 10h.01M10 14h.01M14 14h.01M10 18h4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18M2 22h20M10 6h.01M14 6h.01M10 10h.01M14 10h.01M10 14h.01M14 14h.01M10 18h4' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Unlock/Open Icon */
.icon-unlock::before,
.icon-open::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 9.9-1' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 9.9-1' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Network/Globe Alternative Icon */
.icon-network::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z' fill='none' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z' fill='none' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Download Icon */
.icon-download::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Windows Icon */
.icon-windows::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5.5l7-1v7H3zM3 12.5h7v7l-7-1zM11 4.35l10-1.5v9.15H11zM11 12.5h10v9.15l-10-1.5z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5.5l7-1v7H3zM3 12.5h7v7l-7-1zM11 4.35l10-1.5v9.15H11zM11 12.5h10v9.15l-10-1.5z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Linux Icon (Tux stylized) */
.icon-linux::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.5 2 6 5 6 8c0 2 .5 3 1 4-1.5 1-3 3-3 5 0 3 4 4 8 4s8-1 8-4c0-2-1.5-4-3-5 .5-1 1-2 1-4 0-3-2.5-6-6-6zm-2 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm4 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-2 3c1.5 0 2.5.5 2.5 1s-1 1-2.5 1-2.5-.5-2.5-1 1-1 2.5-1z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.5 2 6 5 6 8c0 2 .5 3 1 4-1.5 1-3 3-3 5 0 3 4 4 8 4s8-1 8-4c0-2-1.5-4-3-5 .5-1 1-2 1-4 0-3-2.5-6-6-6zm-2 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm4 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm-2 3c1.5 0 2.5.5 2.5 1s-1 1-2.5 1-2.5-.5-2.5-1 1-1 2.5-1z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* macOS/Apple Icon */
.icon-apple::before,
.icon-macos::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Balance/Swap Icon */
.icon-swap::before,
.icon-balance::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 3l4 4-4 4M20 7H4M8 21l-4-4 4-4M4 17h16' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 3l4 4-4 4M20 7H4M8 21l-4-4 4-4M4 17h16' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Target/Crosshair Icon */
.icon-crosshair::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M22 12h-4M6 12H2M12 6V2M12 22v-4' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cpath d='M22 12h-4M6 12H2M12 6V2M12 22v-4' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Discord Icon */
.icon-discord::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Telegram Icon */
.icon-telegram::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* GitHub Icon */
.icon-github::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Twitter/X Icon */
.icon-twitter::before,
.icon-x::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--brand-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z' fill='currentColor'/%3E%3C/svg%3E") center/contain no-repeat;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0a0a1a 100%);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    overscroll-behavior: none;
    position: relative;
    min-height: 100vh;
    font-size: 16px;
}

/* Typography - Headings use Space Grotesk for distinctive look */
h1, h2, h3, .hero-title, .section-title, .guide-title, .greenpaper-title {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { margin-bottom: 1.5rem; }
h2 { margin-bottom: 1.25rem; }
h3 { margin-bottom: 1rem; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   UTILITY CLASSES - Replace inline styles
   ============================================ */

/* Link colors */
.link-gold { color: var(--brand-gold); }
.link-gold:hover { color: #E5C100; }  /* Darker gold on hover */
.link-green { color: var(--brand-green); }
.link-green:hover { color: #2DD212; }  /* Darker green on hover */

/* Text utilities */
.text-gold { color: var(--brand-gold); }
.text-subtext { font-size: 0.95em; opacity: 0.85; margin-top: 10px; }
.text-intro { font-size: 1.1rem; margin-bottom: 20px; }

/* Highlight box titles (h3 in highlight boxes) */
.highlight-title { color: var(--brand-gold); margin-bottom: 15px; }

/* Centered button groups */
.buttons-centered {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.buttons-centered-section {
    text-align: center;
    margin-top: 38px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Tip/Pro-tip boxes */
.tip-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.tip-box p { margin: 0; }

/* Disclaimer sections with gold border */
.disclaimer-gold {
    border-color: var(--brand-gold);
    margin-top: 30px;
}

/* Styled lists */
.list-styled {
    color: #ddd;
    margin: 20px 0;
    padding-left: 20px;
}

.list-trading {
    margin: 10px 0 20px 20px;
}

/* Stats grid positioning */
.stats-grid-positioned { position: relative; }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, var(--hexagon-yellow) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, var(--hexagon-green) 0%, transparent 60%),
        radial-gradient(circle at 15% 85%, var(--hexagon-green) 0%, transparent 60%),
        radial-gradient(circle at 85% 85%, var(--hexagon-yellow) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, var(--hexagon-yellow) 0%, transparent 40%),
        radial-gradient(circle at 25% 50%, var(--hexagon-green) 0%, transparent 35%),
        radial-gradient(circle at 75% 50%, var(--hexagon-green) 0%, transparent 35%),
        radial-gradient(circle at 50% 25%, var(--hexagon-yellow) 0%, transparent 35%),
        radial-gradient(circle at 50% 75%, var(--hexagon-yellow) 0%, transparent 35%);
    z-index: -1;
    pointer-events: none;
}

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

/* Consistent section spacing - reduced 25% */
section {
    padding: 75px 0;
    position: relative;
}

/* Section divider - subtle gradient line */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 20%, 
        rgba(255, 215, 0, 0.5) 50%, 
        rgba(255, 215, 0, 0.3) 80%, 
        transparent 100%
    );
    margin: 0 auto;
}

/* Auto section separator for consistent rhythm */
section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.15) 20%, 
        rgba(255, 215, 0, 0.3) 50%, 
        rgba(255, 215, 0, 0.15) 80%, 
        transparent 100%
    );
}

/* ========================================
   BYD + APPLE GLASSMORPHISM CARDS
   Sharp edges, blade gradients, tech minimalism
   ======================================== */
.glass-card {
    background: rgba(10, 10, 26, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 6px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.glass-card-light {
    background: rgba(255, 215, 0, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 6px;
}

.glass-card:hover,
.glass-card-light:hover {
    background: rgba(10, 10, 26, 0.7);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .glass-card,
    .glass-card-light {
        background: rgba(10, 10, 26, 0.95);
    }
}

/* ========================================
   WHIVE BYD-STYLE UTILITY CLASSES
   ======================================== */
.whive-glass-card {
    background: rgba(10, 10, 26, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.whive-card {
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.whive-dashboard {
    display: grid;
    gap: 15px;
}

/* BYD-Style Buttons - Sharp edges, blade gradients, tech minimalism */
.whive-button,
.btn-whive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #B8860B 0%, var(--brand-gold) 25%, #FFF8DC 50%, var(--brand-gold) 75%, #B8860B 100%);
    color: var(--brand-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whive:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-whive-primary {
    background: linear-gradient(90deg, #B8860B 0%, var(--brand-gold) 25%, #FFF8DC 50%, var(--brand-gold) 75%, #B8860B 100%);
    color: var(--brand-dark);
}

.btn-whive-secondary {
    background: transparent;
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
}

.btn-whive-secondary:hover {
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

/* Inline style replacements */
.text-gold { color: var(--brand-gold); }
.highlight-box-title { color: var(--brand-gold); margin-bottom: 15px; }
.disclaimer-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}
.hero-subtext { font-size: 0.95em; opacity: 0.85; margin-top: 8px; }
.centered-buttons {
    text-align: center;
    margin-top: 38px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Legal Notice Box in Footer */
.legal-notice-box-footer {
    margin: 20px 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.legal-notice-box-footer h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0 0 8px;
}

.legal-notice-box-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    line-height: 1.6;
    margin: 0 0 6px;
}

.legal-notice-box-footer p:last-child {
    margin-bottom: 0;
}

.legal-notice-box-footer strong {
    color: var(--brand-gold);
}

.link-legal-popup {
    background: none;
    border: none;
    color: var(--brand-green);
    font-size: 0.72rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color 0.3s ease;
}

.link-legal-popup:hover {
    color: var(--brand-gold);
}

/* Legal Modal - Centered Popup */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.legal-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(10, 10, 26, 0.99));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.legal-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-close:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    border-color: var(--brand-gold);
}

.legal-modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.legal-modal-header h2 {
    color: var(--brand-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    padding-right: 40px; /* Space for close button */
}

.legal-version {
    color: rgba(255, 255, 255, 0.75); /* A11y: Improved contrast ratio */
    font-size: 0.75rem;
    margin: 8px 0 0;
}

.legal-modal-body {
    padding: 20px 30px 30px;
}

.legal-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-notice-box {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.legal-acknowledgment {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.legal-section h3 {
    color: var(--brand-green);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.legal-section h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 12px 0 6px;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0 0 8px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 8px 0;
    padding-left: 20px;
}

.legal-section ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 4px;
}

.legal-section strong {
    color: var(--brand-gold);
}

.legal-section em {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.legal-section a {
    color: var(--brand-green);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-modal-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.legal-footer-note {
    color: rgba(255, 255, 255, 0.75); /* A11y: Improved contrast ratio */
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.btn-legal-close {
    display: inline-block;
    background: var(--brand-green);
    border: none;
    color: var(--brand-dark);
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-legal-close:hover {
    background: #2DD212;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
}

@media (max-width: 768px) {
    .legal-modal-content {
        max-height: 90vh;
        border-radius: 12px;
    }

    .legal-modal-header {
        padding: 20px 20px 12px;
    }

    .legal-modal-header h2 {
        font-size: 1.2rem;
    }

    .legal-modal-body {
        padding: 15px 20px 25px;
    }

    .legal-section h3 {
        font-size: 0.9rem;
    }

    .legal-section p {
        font-size: 0.8rem;
    }
}

/* Header - Glassmorphism */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 32px;
    width: auto;
    max-width: 120px;
}

.nav-logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 10px 4px;
}

.nav-menu a:hover {
    color: var(--primary-yellow);
}

/* Greenpaper link with green hover effect */
.nav-link-green {
    color: var(--white);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link-green:hover {
    color: var(--brand-green) !important;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.btn-secondary {
    padding: 6px 16px !important;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--dark-bg) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   DEX-TRADE PRICE TICKER (Compact)
   ======================================== */
.price-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    margin-left: 10px;
}

.ticker-price {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    min-width: 65px;
}

.ticker-price.updated {
    color: var(--primary-green);
}

.ticker-trade-btn {
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-green));
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ticker-trade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.4);
}

/* Hide ticker on smaller screens, show in footer */
@media (max-width: 1024px) {
    .price-ticker {
        display: none;
    }
}

/* Hero Section - reduced 25% */
.hero {
    padding: 75px 0 90px;
    padding-top: 75px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* ========================================
   GLASSMORPHISM BACKGROUND ORBS
   Floating gradient orbs for depth
======================================== */
.glass-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glass-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    filter: blur(50px); /* Performance: reduced from 80px */
    animation: orbFloat1 20s ease-in-out infinite;
    will-change: transform, opacity; /* GPU acceleration hint */
}

.glass-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.12) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    filter: blur(60px); /* Performance: reduced from 100px */
    animation: orbFloat2 25s ease-in-out infinite;
    will-change: transform, opacity; /* GPU acceleration hint */
}

.glass-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    filter: blur(40px); /* Performance: reduced from 60px */
    animation: orbFloat3 18s ease-in-out infinite;
    will-change: transform, opacity; /* GPU acceleration hint */
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    33% { transform: translate(40px, -30px) scale(1.1); opacity: 1; }
    66% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.9; }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(-50px, -40px) scale(1.15); opacity: 1; }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, 20px) scale(1.05); }
    75% { transform: translate(-25px, -15px) scale(0.98); }
}

/* ========================================
   HEXAGONAL ORBITAL ANIMATION SYSTEM
   Inspired by QueryWeb Q-system
======================================== */
/* ============================================
   3D HEXAGONAL CUBE ANIMATION
   Inspired by Cuba logo - Green/Gold gradient
   ============================================ */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

/* Cube container - no background circle */
.hex-cube-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 3D Hexagonal Cube */
.hex-cube {
    width: 200px;
    height: 230px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 20s ease-in-out infinite;
}

@keyframes cubeRotate {
    0%, 100% { transform: rotateX(-5deg) rotateY(0deg); }
    25% { transform: rotateX(5deg) rotateY(10deg); }
    50% { transform: rotateX(-5deg) rotateY(0deg); }
    75% { transform: rotateX(5deg) rotateY(-10deg); }
}

/* Cube faces - 6 triangular faces forming the hexagonal cube */
.cube-face {
    position: absolute;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

/* Top-left face (bright green) */
.cube-face-1 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 115px solid var(--brand-green);
    top: 0;
    left: 0;
    filter: brightness(1.1);
    animation: face1Glow 3s ease-in-out infinite;
}

@keyframes face1Glow {
    0%, 100% { filter: brightness(1.1); }
    50% { filter: brightness(1.3); }
}

/* Top-right face (gold/yellow) */
.cube-face-2 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 115px solid var(--brand-gold);
    top: 0;
    left: 0;
    transform: rotateY(60deg) translateX(50px);
    filter: brightness(1);
    animation: face2Glow 3s ease-in-out infinite 0.5s;
}

@keyframes face2Glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Right face (dark green) */
.cube-face-3 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 115px solid #2DD212;
    bottom: 0;
    right: 0;
    filter: brightness(0.7);
}

/* Bottom-right face (dark gold) */
.cube-face-4 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 115px solid #B8A000;
    bottom: 0;
    left: 0;
    filter: brightness(0.6);
}

/* Bottom-left face (medium green) */
.cube-face-5 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 115px solid #30D912;
    bottom: 0;
    left: -100px;
    filter: brightness(0.8);
}

/* Center highlight */
.cube-face-6 {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 57px solid rgba(255, 255, 255, 0.1);
    top: 57px;
    left: 50px;
}

/* SVG-based 3D Cube - Large and prominent */
.whive-3d-cube {
    width: 420px;
    height: 420px;
    animation: cubeFloat 6s ease-in-out infinite;
}

@keyframes cubeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.4));
    }
    50% {
        transform: translateY(-15px) scale(1.02);
        filter: drop-shadow(0 0 50px rgba(57, 255, 20, 0.6));
    }
}

.whive-3d-cube svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.4)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.25));
}

/* Hexagon faces - subtle shimmer animation */
.hex-face {
    transition: all 0.3s ease;
    animation: faceShimmer 4s ease-in-out infinite;
}

.hex-face:nth-child(2) { animation-delay: 0.3s; }
.hex-face:nth-child(3) { animation-delay: 0.6s; }
.hex-face:nth-child(4) { animation-delay: 0.9s; }
.hex-face:nth-child(5) { animation-delay: 1.2s; }
.hex-face:nth-child(6) { animation-delay: 1.5s; }

@keyframes faceShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* GPU acceleration */
.hex-cube-container,
.hex-cube,
.whive-3d-cube {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Legacy support - hide old elements */
.hex-system { display: none; }
.hex-main { display: none; }
.hex-orbit { display: none; }

/* Hero Welcome Banner - Full Width */
.hero-banner {
    width: 100%;
    text-align: center;
    padding: 30px 20px 40px;
    margin-bottom: 40px;
}

.hero-welcome {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-welcome .launch-date {
    color: #FFD700;
    font-weight: 700;
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-welcome {
        font-size: 1rem;
        padding: 12px 20px;
        border-radius: 6px;
    }
    
    .hero-banner {
        padding: 15px 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-welcome {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

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

.main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 1.5px;
    text-align: left;
    background: linear-gradient(45deg, #FFD700, #39FF14, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.btn-primary, .btn-outline {
    padding: 18px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    color: var(--dark-bg);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.beehive-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.beehive-image {
    max-width: 100%;
    height: auto;
    width: 400px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.beehive-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

/* ========================================
   HERO ANIMATION RESPONSIVE STYLES
======================================== */
/* Tablet responsive */
@media (max-width: 768px) {
    .hero-animation {
        min-height: 350px;
        margin-top: 30px;
    }

    .hex-cube-container {
        max-width: 380px;
        height: 380px;
    }

    .whive-3d-cube {
        width: 340px;
        height: 340px;
    }

    .glass-orb-1 { width: 300px; height: 300px; }
    .glass-orb-2 { width: 250px; height: 250px; }
    .glass-orb-3 { width: 200px; height: 200px; }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .hero-animation {
        min-height: 280px;
    }

    .hex-cube-container {
        max-width: 300px;
        height: 300px;
    }

    .whive-3d-cube {
        width: 260px;
        height: 260px;
    }

    .glass-orb { display: none; } /* Hide orbs on very small screens */
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hex-system,
    .hex-main,
    .hex-orbit,
    .glass-orb,
    .whive-3d-cube,
    .hex-face {
        animation: none !important;
    }
}


@keyframes hexRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes hexFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

/* Live Stats Section */
.live-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(57, 255, 20, 0.08) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.stats-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    align-items: center;
}

.network-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.stats-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid;
    border-radius: 6px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card.price {
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.stat-card.supply {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.2);
}

.stat-card.hashrate {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.stat-card.blocks {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.stat-card.difficulty {
    border-color: var(--brand-green);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.2);
}

.stat-card.market-cap {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.stat-card:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    min-height: 2.4rem;
    line-height: 2.4rem;
    white-space: nowrap;
}

.stat-sub {
    font-size: 0.8rem;
    color: var(--gray-dark);
    font-weight: 400;
}

/* Data Source Attribution */
.data-attribution {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    margin: 30px auto;
    max-width: 600px;
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.attribution-source a {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.attribution-source a:hover {
    color: var(--brand-green);
    text-decoration: underline;
}

.attribution-update {
    color: var(--gray-dark);
    font-size: 0.8rem;
}

/* Offline state styling */
.offline-state {
    color: var(--brand-gold) !important;
    font-style: italic;
}

.stat-value.offline-state {
    opacity: 0.7;
}

.mining-performance {
    background: rgba(57, 255, 20, 0.05);
    border-radius: 8px;
    padding: 50px 40px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    margin-top: 40px;
}

.mining-performance h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 600;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.performance-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(57, 255, 20, 0.08);
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid rgba(57, 255, 20, 0.15);
}

.performance-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 500;
}

.performance-value {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: rgba(255, 215, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header .main-heading {
    font-size: 5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 0 6px 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    text-align: center;
    background: linear-gradient(45deg, #FFD700, #39FF14, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: goldShimmer 3s ease-in-out infinite;
    line-height: 1.1;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.sub-heading {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gray-light);
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
    line-height: 1.7;
}

.features::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: var(--primary-yellow);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    opacity: 0.08;
    animation: hexRotate 25s linear infinite;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    background: var(--primary-green);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    opacity: 0.1;
    animation: hexRotate 20s linear infinite reverse;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 45px 35px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Technology Section */
.technology {
    padding: 120px 0;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.tech-text p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.tech-list {
    list-style: none;
    margin-top: 30px;
}

.tech-list li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.tech-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.tech-diagram {
    display: flex;
    align-items: center;
    gap: 40px;
}

.compact-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 15px;
    border-radius: 4px;
    border: 2px solid;
    background: rgba(10, 10, 10, 0.8);
    transition: all 0.3s ease;
    min-width: 85px;
    max-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    text-align: center;
}

.bitcoin-source {
    border-color: #f7931a;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
    width: 100px;
    height: 85px;
}

.whive-core {
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
    width: 100px;
    height: 85px;
}

.energy-node {
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.reward-node {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.node-icon {
    font-size: 2rem;
    height: 32px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

.node-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.flow-arrow::before {
    content: '↓';
    font-size: 1.2rem;
    color: var(--primary-yellow);
    animation: arrowPulse 2s ease-in-out infinite;
}

.down-arrow::before {
    content: '↓';
    color: var(--primary-green);
}

.up-arrow::before {
    content: '↑';
}

.arrow-label {
    font-size: 0.6rem;
    color: var(--primary-green);
    font-weight: 500;
}

.device-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-device {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid var(--primary-green);
    background: rgba(57, 255, 20, 0.1);
    transition: all 0.3s ease;
}

.device-mini:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(57, 255, 20, 0.2);
}

.device-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 4px;
    border: 2px solid var(--primary-green);
    background: rgba(57, 255, 20, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.device-box:hover {
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
    background: rgba(57, 255, 20, 0.15);
}

.device-box .device-icon {
    font-size: 2rem;
}

.device-box .device-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.final-step {
    display: flex;
    justify-content: center;
}

.reward-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    background: rgba(255, 215, 0, 0.1);
}

.reward-icon {
    font-size: 1.3rem;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Enhanced Protocol Flowchart */
.protocol-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
}

.flow-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flow-arrow-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.flow-arrow-right::before {
    content: '→';
    font-size: 1.2rem;
    color: var(--primary-yellow);
    animation: arrowPulse 2s ease-in-out infinite;
}

.flow-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.consensus-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 4px;
    border: 2px solid var(--primary-green);
    background: rgba(57, 255, 20, 0.1);
}

.consensus-icon {
    font-size: 1.3rem;
}

.consensus-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-green);
}

.flow-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.device-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.device-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--primary-green);
    background: rgba(57, 255, 20, 0.05);
    min-width: 65px;
    transition: all 0.3s ease;
}

.device-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.2);
}

.device-mini.datacenter {
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 0, 0.05);
}

.device-mini.datacenter:hover {
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.2);
}

.device-text {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 500;
}

.outcome-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.outcome-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid;
    min-width: 45px;
}

.outcome-node.energy {
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 0, 0.05);
}

.outcome-node.open {
    border-color: var(--primary-green);
    background: rgba(57, 255, 20, 0.05);
}

.outcome-node.reward {
    border-color: var(--brand-gold);
    background: rgba(255, 215, 0, 0.05);
}

.outcome-icon {
    font-size: 1rem;
}

.outcome-text {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--white);
}

/* Agentic Mining Section - reduced 25% */
.agentic-mining {
    padding: 75px 0;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.03) 0%, rgba(255, 215, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.agentic-mining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.agentic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.agentic-text {
    position: relative;
}

.agentic-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(57, 255, 20, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
}

.agentic-mining h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #39FF14 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.agentic-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 25px;
}

.agentic-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.agentic-benefits li {
    padding: 10px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.agentic-benefits li:last-child {
    border-bottom: none;
}

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

.btn-agentic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #39FF14 100%);
    color: #0a0a1a;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-agentic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-agentic .btn-icon {
    font-size: 1.3rem;
}

.btn-agentic .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-agentic:hover .btn-arrow {
    transform: translateX(5px);
}

/* AI Brain Animation */
.agentic-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
}

/* Solar System Animation - WHIVE Brand Colors Only */
.solar-system {
    width: 480px;
    height: 480px;
    position: relative;
    margin: 0 auto;
}

/* The Sun - Whive Gold (#FFD700) */
.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #FFD700 0%, #E6C200 50%, #CCB000 100%);
    border-radius: 50%;
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.9),
        0 0 80px rgba(255, 215, 0, 0.6),
        0 0 120px rgba(255, 215, 0, 0.3);
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.9), 0 0 80px rgba(255, 215, 0, 0.6), 0 0 120px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 215, 0, 0.8), 0 0 150px rgba(255, 215, 0, 0.5); }
}

/* Orbit paths - Whive Green tint */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 50%;
    animation: orbitSpin linear infinite;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Planet base styles */
.planet {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    will-change: transform;
}

/* Planet 1 - Gold (brightest) */
.orbit-1 { width: 90px; height: 90px; animation-duration: 4s; }
.mercury {
    width: 8px;
    height: 8px;
    background: #FFD700;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}

/* Planet 2 - Gold (medium) */
.orbit-2 { width: 125px; height: 125px; animation-duration: 6s; }
.venus {
    width: 12px;
    height: 12px;
    background: #E6C200;
    box-shadow: 0 0 8px rgba(230, 194, 0, 0.8);
}

/* Planet 3 - Green (primary) */
.orbit-3 { width: 165px; height: 165px; animation-duration: 8s; }
.earth {
    width: 14px;
    height: 14px;
    background: #39FF14;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
}

/* Planet 4 - Green (darker) */
.orbit-4 { width: 205px; height: 205px; animation-duration: 10s; }
.mars {
    width: 10px;
    height: 10px;
    background: #2ECC10;
    box-shadow: 0 0 8px rgba(46, 204, 16, 0.7);
}

/* Planet 5 - Jupiter (largest) - Gold gradient */
.orbit-5 { width: 260px; height: 260px; animation-duration: 14s; }
.jupiter {
    width: 24px;
    height: 24px;
    background: linear-gradient(180deg, #FFD700 0%, #E6C200 50%, #CCB000 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Planet 6 - Saturn with ring - Gold */
.orbit-6 { width: 320px; height: 320px; animation-duration: 18s; }
.saturn {
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, #FFD700 30%, #B8A000 70%);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    position: relative;
}
.saturn-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    width: 36px;
    height: 36px;
    border: 2px solid rgba(57, 255, 20, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

/* Planet 7 - Green (lighter) */
.orbit-7 { width: 375px; height: 375px; animation-duration: 24s; }
.uranus {
    width: 16px;
    height: 16px;
    background: #5FFF3F;
    box-shadow: 0 0 12px rgba(95, 255, 63, 0.7);
}

/* Planet 8 - Green (deep) */
.orbit-8 { width: 420px; height: 420px; animation-duration: 30s; }
.neptune {
    width: 16px;
    height: 16px;
    background: #28B80E;
    box-shadow: 0 0 12px rgba(40, 184, 14, 0.7);
}

/* Planet 9 - Pluto (dwarf) - Gold dim */
.orbit-9 { width: 465px; height: 465px; animation-duration: 40s; }
.pluto {
    width: 6px;
    height: 6px;
    background: #B8A000;
    box-shadow: 0 0 6px rgba(184, 160, 0, 0.5);
}

/* Agentic Mining Responsive */
@media (max-width: 1200px) {
    .solar-system {
        width: 420px;
        height: 420px;
    }
    .agentic-visual {
        min-height: 450px;
    }
}

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

    .agentic-visual {
        order: -1;
        min-height: 400px;
    }

    .solar-system {
        width: 380px;
        height: 380px;
    }

    .agentic-mining h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .agentic-visual {
        min-height: 320px;
    }

    .solar-system {
        width: 300px;
        height: 300px;
    }

    .sun {
        width: 40px;
        height: 40px;
    }

    .jupiter {
        width: 18px;
        height: 18px;
    }

    .saturn {
        width: 14px;
        height: 14px;
    }

    .saturn-ring {
        width: 26px;
        height: 26px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .orbit, .sun {
        animation: none !important;
    }
}

/* Mining Section - reduced 25% */
.mining {
    padding: 75px 0;
    background: rgba(57, 255, 20, 0.02);
}

.mining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.mining-step {
    text-align: center;
    padding: 30px 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.mining-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.mining-step p {
    color: var(--gray-light);
}

.mining-info {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 0, 0.1);
}

.mining-info h3 {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.mining-info p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.mining-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 768px) {
    .mining-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .mining-cta .btn-primary,
    .mining-cta .btn-outline {
        width: 200px;
    }
}

/* ============================================
   EXCHANGES SECTION - Trade $WHIVE
   4-Color Palette: Green, Gold, Black, White
   ============================================ */
.exchanges {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-dark-alt) 100%);
    position: relative;
}

.exchanges .section-subtitle {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.exchanges .exchange-disclaimer {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 15px 20px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 10px;
    line-height: 1.5;
}

.exchanges .exchange-disclaimer strong {
    color: #ff6b6b;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.exchange-card {
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.exchange-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
}

.exchange-card.primary-exchange {
    border-color: var(--brand-green);
    background: rgba(57, 255, 20, 0.05);
}

.exchange-card.primary-exchange:hover {
    border-color: var(--brand-green);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2);
}

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

.exchange-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exchange-icon {
    font-size: 2rem;
}

.exchange-logo h3 {
    color: var(--brand-white);
    font-size: 1.4rem;
    margin: 0;
}

.exchange-badge {
    background: var(--brand-green);
    color: var(--brand-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.exchange-pairs {
    margin-bottom: 20px;
}

.pair-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pair-name {
    color: var(--brand-white);
    font-weight: 600;
}

.pair-status {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
}

.pair-status.live {
    background: rgba(57, 255, 20, 0.2);
    color: var(--brand-green);
}

.exchange-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-mini {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.stat-mini .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.stat-mini .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-gold);
}

.exchange-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-exchange {
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-buy {
    background: var(--brand-green);
    color: var(--brand-dark);
}

.btn-buy:hover {
    background: #2DD212;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
}

.btn-sell {
    background: transparent;
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
}

.btn-sell:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
}

.exchange-link {
    display: block;
    text-align: center;
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.exchange-link:hover {
    color: var(--brand-green);
}

/* Market Data Card */
.exchange-card h3 {
    color: var(--brand-gold);
    margin-bottom: 20px;
}

.market-stats {
    display: grid;
    gap: 15px;
}

.market-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.market-stat .stat-icon {
    font-size: 1.5rem;
}

.market-stat .stat-info {
    flex: 1;
}

.market-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-light);
}

.market-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-white);
}

/* Live Data Indicators for Exchange Widgets */
.stat-value.live-data {
    position: relative;
}

.stat-value.live-data::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    animation: livePulse 2s ease-in-out infinite;
}

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

/* Positive/Negative Change Indicators */
.stat-value.positive {
    color: var(--brand-green);
}

.stat-value.negative {
    color: #FF4444;
}

.tracking-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.tracking-link {
    color: var(--brand-gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.tracking-link:hover {
    color: var(--brand-green);
}

/* How to Trade Card */
.trade-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trade-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.trade-steps li:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--brand-green);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text strong {
    display: block;
    color: var(--brand-white);
    margin-bottom: 5px;
}

.step-text p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Exchanges */
@media (max-width: 768px) {
    .exchanges-grid {
        grid-template-columns: 1fr;
    }

    .exchange-stats {
        flex-direction: column;
    }

    .exchange-actions {
        flex-direction: column;
    }
}

/* Credibility Section - reduced 25% */
.credibility {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(57, 255, 20, 0.03) 100%);
    position: relative;
}

.credibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(57, 255, 20, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 45px;
    position: relative;
    z-index: 1;
}

.credibility-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 45px 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.credibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.credibility-card:hover::before {
    left: 100%;
}

.credibility-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cred-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.credibility-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.credibility-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
    position: relative;
    z-index: 1;
}

.credibility-card p strong {
    color: var(--brand-yellow);
    font-weight: 600;
}

@media (max-width: 768px) {
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .credibility-card {
        padding: 30px 25px;
    }
    
    .cred-icon {
        font-size: 3rem;
    }
}

/* Global Network Section */
.global-network {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    position: relative;
}

.global-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.network-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jurisdiction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.jurisdiction-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.jurisdiction-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.country-flag {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.country-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.country-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.mining-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-yellow);
}

.node-count {
    font-size: 0.9rem;
    color: var(--gray-light);
    opacity: 0.8;
}

.network-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.network-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

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

@media (max-width: 768px) {
    .jurisdiction-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .jurisdiction-card {
        padding: 20px;
        gap: 15px;
    }
    
    .country-flag {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--primary-green) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 5000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Contributors Section */
.contributors {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(57, 255, 20, 0.02) 100%);
    position: relative;
}

.contributors-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dev-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.dev-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dev-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-yellow);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.dev-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-height: 300px;
    overflow: hidden;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contributor-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.contributor-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.contributor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    font-weight: bold;
    overflow: hidden;
}

.contributor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.contributor-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contributor-name {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.contributor-commits {
    font-size: 0.9rem;
    color: var(--gray-light);
    opacity: 0.8;
}

.development-info {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.development-info h3 {
    font-size: 1.6rem;
    color: var(--brand-yellow);
    margin-bottom: 15px;
}

.development-info p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .dev-stats {
        gap: 30px;
    }
    
    .dev-number {
        font-size: 1.8rem;
    }
    
    .contributors-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-height: 400px;
        max-width: 600px;
    }
    
    .contributor-card {
        padding: 12px;
    }
    
    .contributor-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Community Section */
.community {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    opacity: 0.12;
    animation: hexFloat 8s ease-in-out infinite;
}

.community::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 110px;
    height: 110px;
    background: var(--primary-yellow);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    opacity: 0.1;
    animation: hexFloat 10s ease-in-out infinite 2s;
}

.community-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.community-link {
    padding: 18px 35px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: 6px;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.community-link:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

/* Footer - Compact Design (matching header) */
.footer {
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.logo-footer {
    height: 20px;
    width: auto;
    max-width: 80px;
}

.footer-section p {
    font-size: 0.75rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 4px 8px;
    border: 1px solid var(--primary-green);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 3px;
}

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--gray-dark);
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-yellow);
}

.footer-legal span {
    color: var(--gray-dark);
    font-size: 0.75rem;
}

/* 4K and Ultra-wide Display Support (2560px+) */
@media (min-width: 2560px) {
    .container {
        max-width: 1600px; /* Wider container for ultra-wide screens */
        padding: 0 40px;
    }
    
    .hero-container {
        gap: 80px;
        grid-template-columns: 1.2fr 1fr; /* Adjust proportions */
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .main-heading {
        font-size: 5.5rem;
        letter-spacing: 3px;
    }
    
    .beehive-image {
        width: 500px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        max-width: 1200px;
    }
    
    .mining-status-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        max-width: 1200px;
    }
    
    .jurisdiction-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        max-width: 1200px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
        min-height: auto;
    }

    .logo {
        height: 36px;
        max-width: 140px;
    }

    .typing-effect {
        letter-spacing: 1px;
    }
}

/* Large Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-heading {
        font-size: 4.5rem;
    }
    
    .beehive-image {
        width: 450px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .mining-status-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .jurisdiction-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 900px;
    }
}

/* Desktop (1366px - 1919px) */
@media (min-width: 1366px) and (max-width: 1919px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .main-heading {
        font-size: 4rem;
    }
    
    .beehive-image {
        width: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .mining-status-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .jurisdiction-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 800px;
    }
}

/* Laptop and Tablet Landscape (1025px - 1365px) */
@media (min-width: 1025px) and (max-width: 1365px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .main-heading {
        font-size: 3.5rem;
    }
    
    .beehive-image {
        width: 350px;
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .container {
        padding: 0 25px;
    }
}

/* Tablet Responsive Design (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .beehive-image {
        width: 320px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .protocol-flowchart {
        max-width: 350px;
        padding: 20px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 3.2rem;
    }
    
    .sub-heading {
        font-size: 1.6rem;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .beehive-container {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .features-header .main-heading {
        font-size: 3.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .mining-status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .jurisdiction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .logo {
        height: 30px;
        max-width: 120px;
    }
    
    .logo-footer {
        height: 22px;
        max-width: 90px;
    }
}

/* Mobile Color Consistency */
@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%) !important;
    }
    
    body::before {
        background-image: 
            radial-gradient(circle at 20% 20%, var(--hexagon-yellow) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, var(--hexagon-green) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, var(--hexagon-green) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, var(--hexagon-yellow) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, var(--hexagon-yellow) 0%, transparent 30%) !important;
    }
    
    /* Ensure consistent header glassmorphism */
    .header {
        background: rgba(10, 10, 26, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
    
    /* Ensure consistent navigation colors */
    .nav-menu.active {
        background: rgba(10, 10, 10, 0.95) !important;
    }
    .features-header .main-heading {
        font-size: 3.5rem;
        letter-spacing: 1.5px;
    }
    
    .sub-heading {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .beehive-image {
        width: 300px;
    }
    
    .protocol-flowchart {
        max-width: 380px;
        gap: 20px;
        padding: 25px;
    }
    
    .flow-node {
        min-width: 85px;
        padding: 12px 16px;
    }
    
    .device-mini {
        min-width: 55px;
        padding: 10px;
    }
    
    .device-grid {
        gap: 8px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .outcome-row {
        gap: 8px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 0;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .network-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    
    .compact-flowchart {
        max-width: 250px;
        gap: 12px;
        padding: 12px;
    }
    
    .device-row {
        gap: 8px;
    }
    
    .device-mini {
        width: 30px;
        height: 30px;
    }
    
    .device-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-header .main-heading {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .sub-heading {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .beehive-image {
        width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 200px;
    }
    
    .protocol-flowchart {
        max-width: 320px;
        gap: 18px;
        padding: 20px;
    }
    
    .flow-node {
        min-width: 75px;
        padding: 10px 14px;
    }
    
    .device-mini {
        min-width: 50px;
        padding: 8px;
    }
    
    .outcome-node {
        min-width: 40px;
        padding: 6px 8px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .community-link {
        width: 200px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal span {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Additional mobile improvements */
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        max-width: 400px;
    }
    
    .jurisdiction-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
        max-width: 400px;
    }
    
    .dev-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contributors-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        max-height: 350px;
        max-width: 400px;
    }
    
    /* Image optimizations for mobile */
    .logo {
        height: 28px;
        max-width: 100px;
    }
    
    .logo-footer {
        height: 20px;
        max-width: 80px;
    }
    
    .node-icon-img {
        width: 24px;
        height: 24px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 8px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Real-Time Mining Dashboard - Inspired by PulseChain UI Updates */
.realtime-mining-dashboard {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(57, 255, 20, 0.05) 100%);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.realtime-mining-dashboard h3 {
    color: var(--brand-yellow);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mining-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    padding: 18px;
    transition: all 0.3s ease;
}

/* Network Health card - same width as other cards */
.status-card.network-health {
    /* Full width like other status cards */
}

.status-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--white);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    will-change: box-shadow; /* GPU acceleration hint */
}

.pulse-dot.active {
    background: var(--primary-green);
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
}

.pulse-dot.mining {
    background: var(--brand-yellow);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
}

.pulse-dot.blocks {
    background: #39FF14;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.status-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-yellow);
}

.progress-container {
    margin-top: 12px;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--brand-yellow) 100%);
}

.progress-fill.efficiency {
    background: linear-gradient(90deg, var(--brand-yellow) 0%, #39FF14 100%);
}

/* Old throbbing circle CSS removed - now using throbbing progress bar */

.progress-fill.blocks {
    background: linear-gradient(90deg, #39FF14 0%, #2DD212 100%);
}

/* Throbbing Progress Bar Animation */
.progress-fill.throbbing {
    animation: throb-bar 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

@keyframes throb-bar {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
        transform: scaleY(1.2);
    }
}

/* Network Health Indicator (dynamically generated) */
.network-health-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10, 10, 26, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    padding: 12px 20px;
    margin: 20px auto;
    max-width: 400px;
}

.health-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    white-space: nowrap;
}

.health-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    min-width: 100px;
}

.health-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-green));
    transition: width 0.8s ease, background 0.5s ease;
}

.health-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-gold);
    min-width: 40px;
    text-align: right;
}

/* Enhanced Action Cards */
.mining-actions-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.action-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 4px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-card:hover {
    border-color: rgba(57, 255, 20, 0.4);
    background: rgba(57, 255, 20, 0.08);
}

.action-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    flex-shrink: 0;
}

.action-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.action-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-quick {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--brand-yellow) 100%);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-quick:hover {
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

/* Responsive Design for Mining Dashboard */
@media (max-width: 1024px) {
    .mining-status-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        max-width: 400px;
    }
    
    .realtime-mining-dashboard {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .realtime-mining-dashboard {
        margin-top: 30px;
        padding: 25px 15px;
    }
    
    .realtime-mining-dashboard h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .mining-actions-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        /* Disable hover effects on mobile */
        transform: none !important;
    }
    
    .action-card:hover {
        transform: none !important;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    /* Reduce animation intensity on mobile */
    .status-card {
        transition: none;
    }
    
    .status-card:hover {
        transform: none !important;
        border-color: rgba(255, 215, 0, 0.2) !important;
        box-shadow: none !important;
    }
    
    /* Simplify progress animations for mobile performance */
    .progress-fill {
        transition: width 0.4s ease;
    }
    
    /* Reduce throbbing intensity on mobile */
    .progress-fill.throbbing {
        animation-duration: 2.5s; /* Slower on mobile for battery */
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); /* Reduced glow */
    }

    /* Network health indicator responsive */
    .network-health-indicator {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px;
        max-width: 100%;
    }

    .health-bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .network-health-indicator {
        margin: 15px 10px;
        padding: 12px;
    }

    .health-label {
        font-size: 0.8rem;
    }

    .health-percentage {
        font-size: 0.85rem;
    }

    .status-card {
        padding: 15px;
        border-radius: 4px;
    }
    
    .status-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .status-value {
        font-size: 1.3rem;
    }
    
    .progress-container {
        margin-top: 8px;
    }
}

/* Mining Setup Wizard - Inspired by PulseChain's Simplified Interface */
.mining-wizard-section {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 6px;
    padding: 40px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    margin-top: 38px;
}

.mining-wizard-section h3 {
    text-align: center;
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.wizard-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    opacity: 1;
    transition: all 0.3s ease;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--brand-yellow) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.step-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--brand-yellow) 100%);
    margin-top: 10px;
    border-radius: 2px;
}

.wizard-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 4px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: rgba(57, 255, 20, 0.4);
    background: rgba(57, 255, 20, 0.08);
}

.step-content h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-light);
    margin-bottom: 25px;
}

/* Device Selection Options */
.device-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.device-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.device-option:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.device-option.selected {
    border-color: var(--primary-green);
    background: rgba(57, 255, 20, 0.1);
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.device-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.device-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Configuration Options */
.config-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.config-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.config-item label {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.config-item input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
}

.config-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-yellow);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.config-item select {
    padding: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
}

#cpu-value {
    color: var(--brand-yellow);
    font-weight: 600;
}

/* Download Section */
.setup-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.setup-summary h5 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--gray-light);
}

.summary-item span:last-child {
    color: var(--white);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-download, .btn-guide {
    padding: 15px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--brand-yellow) 100%);
    color: var(--dark-bg);
    flex: 1;
    justify-content: center;
}

.btn-guide {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 215, 0, 0.3);
    flex: 1;
    justify-content: center;
}

.btn-download:hover, .btn-guide:hover {
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.estimated-earnings {
    text-align: center;
    padding: 15px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.estimated-earnings span:first-child {
    color: var(--gray-light);
    margin-right: 10px;
}

.estimated-earnings span:last-child {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design for Wizard */
@media (max-width: 1024px) {
    .wizard-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-indicator {
        flex-direction: row;
        gap: 20px;
        width: 100%;
    }
    
    .step-connector {
        width: 60px;
        height: 3px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .mining-wizard-section {
        padding: 25px 15px;
    }
    
    .device-options {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .mining-wizard-section h3 {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .device-option {
        padding: 20px 15px;
    }
    
    .device-icon {
        font-size: 2.5rem;
    }
}

/* Enhanced Breakpoints for All Modern Devices */

/* 4K Ultra-wide and Large Screens (2560px+) */
@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        min-height: 6.5rem;
        max-height: 6.5rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
        max-width: 800px;
    }
    
    .realtime-mining-dashboard {
        padding: 60px 50px;
    }
    
    .mining-wizard-section {
        padding: 60px 50px;
    }
}

/* Large Desktop (1920-2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        min-height: 6rem;
        max-height: 6rem;
    }
}

/* Standard Desktop (1366-1919px) */
@media (min-width: 1366px) and (max-width: 1919px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 2.1rem;
        min-height: 5.8rem;
        max-height: 5.8rem;
    }
    
    .mining-status-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
    }
}

/* Laptop/Large Tablet (1025-1365px) */
@media (min-width: 1025px) and (max-width: 1365px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        min-height: 5.5rem;
        max-height: 5.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .mining-status-grid {
        grid-template-columns: repeat(3, 1fr);  
        gap: 25px;
        max-width: 900px;
    }
    
    .wizard-steps {
        max-width: 700px;
    }
}

/* Enhanced Typing Effect Animation - Fixed for All Screen Sizes */
.typing-effect {
    position: relative;
    overflow: visible; /* Changed from hidden to prevent clipping */
    display: inline-block;
    min-height: 1.2em; /* Ensure minimum height for cursor */
}

.typing-effect::after {
    content: '|';
    position: absolute;
    right: -2px; /* Better positioning */
    top: 0;
    color: var(--brand-yellow);
    animation: blink 1s infinite;
    font-weight: 400;
    z-index: 1;
}

.typing-effect.typing-complete::after {
    animation: blink 1s infinite 2s, fadeOut 0.5s ease 4s forwards;
}

.typing-effect.no-cursor::after {
    display: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Removed conflicting CSS animations - now handled purely by JavaScript */
.typing-effect.animate {
    /* Removed CSS animation to prevent conflicts with JavaScript typing */
    white-space: nowrap;
    overflow: hidden;
}

/* Support for text wrapping on very small screens */
.typing-effect.allow-wrap {
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
}

/* Enhanced gradient text effect for typing - Optimized for all screens */
.gradient-text.typing-effect {
    background: linear-gradient(
        45deg,
        var(--brand-yellow) 0%,
        var(--primary-green) 25%,
        var(--brand-yellow) 50%,
        var(--primary-green) 75%,
        var(--brand-yellow) 100%
    );
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--brand-yellow); /* Fallback for browsers without background-clip support */
}

.gradient-text.typing-effect.gradient-animated {
    animation: gradientShift 4s ease-in-out infinite;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (background-clip: text) or not (-webkit-background-clip: text) {
    .gradient-text.typing-effect {
        background: none;
        color: var(--brand-yellow);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    
    .gradient-text.typing-effect.gradient-animated {
        animation: textGlow 4s ease-in-out infinite;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive adjustments for typing effect - All screen sizes */

/* Large screens (4K, Ultra-wide) - Enhanced effect */
@media (min-width: 2560px) {
    .typing-effect {
        font-size: 1.1em; /* Slightly larger on very large screens */
    }
    
    .typing-effect::after {
        right: -3px; /* Better spacing on large screens */
    }
}

/* Desktop and Laptop (1024px+) - Standard effect */
@media (min-width: 1024px) {
    .typing-effect {
        overflow: visible; /* Ensure cursor is always visible */
    }
    
    .hero-title .typing-effect {
        min-height: 1.3em; /* Ensure proper height for large text */
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .typing-effect::after {
        right: -2px;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .typing-effect::after {
        font-size: 0.9em;
        right: -1px;
    }
    
    .hero-title .typing-effect {
        min-height: 1.2em;
    }
}

/* Small mobile - Allow text wrapping */
@media (max-width: 480px) {
    .typing-effect.mobile-wrap {
        white-space: normal;
        height: auto;
        line-height: 1.2;
        overflow: visible;
    }
    
    .typing-effect.mobile-wrap::after {
        position: relative;
        right: 0;
        margin-left: 2px;
    }
    
    .hero-title .typing-effect {
        min-height: auto;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .gradient-text.typing-effect.gradient-animated {
        animation-duration: 6s; /* Slower gradient animation on mobile */
    }
}

@media (prefers-reduced-motion: reduce) {
    .typing-effect::after {
        animation: none;
    }
    
    .gradient-text.typing-effect {
        animation: none;
        background: linear-gradient(45deg, var(--brand-yellow), var(--primary-green));
    }
}

/* Universal Screen Size Support */
@media (min-width: 320px) {
    .hero-title {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
        line-height: 1.3;
        min-height: 5.8rem; /* Always allocate space for 2 lines */
        max-height: 5.8rem;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.4rem);
    }
}

/* Enhanced Trading Symbol and Brand Highlights */
.trading-symbol-highlight {
    color: var(--trading-highlight);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFD700, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: tradingPulse 2s ease-in-out infinite;
}

@keyframes tradingPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Agentic Mining Highlight - Subtle accent styling */
.agentic-highlight {
    color: #39FF14;
    font-weight: 600;
}

/* Agentic Feature Card - Subtle accent styling */
.feature-card.agentic-card {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(255, 215, 0, 0.03));
    border-color: rgba(57, 255, 20, 0.3);
}

.feature-card.agentic-card:hover {
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 8px 30px rgba(57, 255, 20, 0.15);
}

.opensource-highlight {
    color: var(--opensource-accent);
    font-weight: 600;
    background: linear-gradient(135deg, #39FF14, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.opensource-highlight::after {
    content: " 🔓";
    -webkit-text-fill-color: var(--opensource-accent);
    background: none;
    font-size: 0.9em;
}

.sustainable-energy-highlight {
    color: var(--sustainable-energy);
    font-weight: 600;
    background: linear-gradient(135deg, #39FF14, #2DD212);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.sustainable-energy-highlight::before {
    content: "🌱 ";
    -webkit-text-fill-color: var(--sustainable-energy);
    background: none;
    font-size: 0.9em;
}

/* Enhanced body background with brand colors */
body {
    background: linear-gradient(135deg, 
        #0a0a1a 0%, 
        #1a1a2e 15%, 
        #16213e 30%, 
        #1a2530 45%, 
        #16213e 60%, 
        #1a1a2e 85%, 
        #0a0a1a 100%
    );
    position: relative;
}

/* Enhanced hexagonal pattern with trading colors */
body::before {
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(57, 255, 20, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 15% 85%, rgba(57, 255, 20, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 85%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 25% 50%, rgba(57, 255, 20, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 75% 50%, rgba(57, 255, 20, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 50% 25%, rgba(255, 215, 0, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 50% 75%, rgba(255, 215, 0, 0.06) 0%, transparent 35%);
}

/* Trading pairs visibility enhancement */
.stat-card.price {
    border: 2px solid var(--trading-highlight);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.1));
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.stat-card.supply {
    border: 2px solid var(--sustainable-energy);
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(0, 255, 127, 0.1));
    box-shadow: 0 8px 32px rgba(57, 255, 20, 0.2);
}

/* Enhanced feature cards for distributed computing emphasis */
.feature-card:nth-child(2) {
    border-left: 4px solid var(--sustainable-energy);
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(0, 255, 127, 0.05));
}

.feature-card:nth-child(1) {
    border-left: 4px solid var(--opensource-accent);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(107, 115, 255, 0.05));
}/* WHIVE Protocol - Performance Optimizations and Layout Fixes */

/* ========================================
   PERFORMANCE OPTIMIZATIONS
======================================== */

/* GPU acceleration for animations */
.typing-effect,
.progress-fill,
.pulse-dot,
.beehive-image,
.feature-card,
.stat-card {
    will-change: auto;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Reduce animations on low-end devices */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .typing-effect {
        will-change: contents; /* Lighter than transform */
    }
    
    /* Disable heavy animations on old mobile devices */
    @supports not (backdrop-filter: blur(10px)) {
        .header {
            background: rgba(10, 10, 26, 0.95);
        }
    }
}

/* Battery-saving mode detection */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .typing-effect::after {
        animation: none;
        opacity: 1;
    }
    
    .pulse-dot {
        animation: none;
    }
    
    .progress-fill {
        transition: none;
    }
    
    .progress-fill.throbbing {
        animation: none !important;
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.8) !important;
        transform: none !important;
    }
}

/* ========================================
   LAYOUT AND OVERFLOW FIXES
======================================== */

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fix container overflow on very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .hero-container,
    .stats-grid,
    .features-grid {
        margin: 0 -5px;
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .stat-card {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* Fix image responsiveness issues */
.beehive-image,
.node-icon-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Logo specific sizing - preserve original dimensions with increased size */
.logo {
    height: 48px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-footer {
    height: 36px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo {
        height: 40px !important;
        max-width: 150px !important;
    }
    
    .logo-footer {
        height: 30px !important;
        max-width: 120px !important;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 36px !important;
        max-width: 130px !important;
    }
    
    .logo-footer {
        height: 28px !important;
        max-width: 100px !important;
    }
}

@media (min-width: 1200px) {
    .logo {
        height: 56px !important;
        max-width: 200px !important;
    }
    
    .logo-footer {
        height: 42px !important;
        max-width: 170px !important;
    }
}

/* Prevent text overflow */
.hero-title,
.main-heading,
.sub-heading {
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

/* Fix grid layout issues on edge cases */
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
}

.mining-status-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

/* ========================================
   SPECIFIC SCREEN SIZE FIXES
======================================== */

/* Ultra-wide display fixes (3440px+) */
@media (min-width: 3440px) {
    .container {
        max-width: 1800px;
    }
    
    .hero-container {
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .stats-grid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Vertical orientation fixes */
@media (orientation: portrait) and (max-height: 800px) {
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .logo-footer,
    .beehive-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
======================================== */

/* Focus states for keyboard navigation */
.btn-primary:focus,
.btn-outline:focus,
.btn-secondary:focus,
.nav-menu a:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

/* Focus states for interactive cards and links */
.stat-card:focus-visible,
.feature-card:focus-visible,
.exchange-link:focus-visible,
.community-link:focus-visible,
.exchange-card:focus-visible,
.resource-link:focus-visible,
a.btn-primary:focus-visible,
a.btn-outline:focus-visible {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-yellow);
    color: var(--brand-dark);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gradient-text {
        background: none;
        color: var(--primary-yellow);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .stat-card,
    .feature-card {
        border-width: 3px;
    }
}

/* Reduced transparency for better readability */
@media (prefers-reduced-transparency: reduce) {
    .header {
        background: rgba(10, 10, 26, 0.95);
    }
    
    .footer {
        background: rgba(10, 10, 26, 0.95);
    }

    .stat-card,
    .feature-card {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
    .header,
    .scroll-to-top,
    .nav-toggle {
        display: none !important;
    }
    
    .hero,
    .live-stats,
    .features {
        page-break-inside: avoid;
    }
    
    .typing-effect::after {
        display: none;
    }
    
    .gradient-text {
        background: none;
        color: #000;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* ========================================
   DARK MODE SUPPORT
======================================== */

/* Light mode override removed - WHIVE Protocol uses dark theme always */

/* ========================================
   CRITICAL PERFORMANCE FIXES
======================================== */

/* Prevent layout thrashing */
.hero-container,
.stats-grid,
.features-grid {
    contain: layout style;
}

/* Optimize animation performance */
@keyframes optimizedPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Use optimized animations for better performance */
.pulse-dot.optimized {
    animation: optimizedPulse 2s ease-in-out infinite;
}

/* Lazy loading preparation */
.beehive-image[loading="lazy"],
.logo[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

.beehive-image[loading="lazy"].loaded,
.logo[loading="lazy"].loaded {
    opacity: 1;
}

/* ========================================
   MEMORY OPTIMIZATION
======================================== */

/* Reduce memory usage on mobile */
@media (max-width: 768px) {
    .stats-grid,
    .features-grid {
        contain: layout;
    }
    
    /* Limit simultaneous animations */
    .progress-fill:nth-child(n+4) {
        animation-delay: 0.5s;
    }
}

/* Garbage collection hints */
.temporary-animation {
    contain: layout style paint;
}

.hidden-offscreen {
    contain: strict;
    visibility: hidden;
}
/* ========================================
   LIVE COUNTER - Years:Months:Days:Hours:Min:Sec
======================================== */
.live-counter-wrapper {
    text-align: center;
    padding: 15px 0;
}

.live-counter-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    flex-wrap: wrap;
}

.live-counter .live-dot {
    width: 8px;
    height: 8px;
    background: #39FF14;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #39FF14, 0 0 20px rgba(57, 255, 20, 0.4);
    margin-right: 8px;
}

.live-counter .counter-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    min-width: 28px;
    text-align: center;
}

.live-counter .counter-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 6px;
}

.live-counter .counter-separator {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 215, 0, 0.4);
    margin: 0 1px;
}

.live-counter .counter-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: #39FF14;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 15px;
    padding: 4px 12px;
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 6px;
    background: rgba(57, 255, 20, 0.1);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .live-counter {
        gap: 4px;
        padding: 15px 10px;
    }
    
    .live-counter .counter-value {
        font-size: 1.2rem;
        min-width: 26px;
    }
    
    .live-counter .counter-label {
        font-size: 0.6rem;
        margin-right: 5px;
    }
    
    .live-counter .counter-separator {
        font-size: 1rem;
    }
    
    .live-counter .counter-status {
        font-size: 0.75rem;
        margin-left: 10px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .live-counter {
        gap: 3px;
    }
    
    .live-counter .counter-value {
        font-size: 1rem;
        min-width: 22px;
    }
    
    .live-counter .counter-label {
        font-size: 0.5rem;
        margin-right: 3px;
    }
    
    .live-counter .live-dot {
        margin-right: 5px;
    }
}

/* Stat card version */
.days-live-stat {
    text-align: center;
}

.days-live-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.days-live-stat .stat-label {
    font-size: 1rem;
    color: #ccc; /* A11y: Improved contrast ratio */
    margin-top: 5px;
}

.days-live-stat .stat-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Pulse animation for live indicator */
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #39FF14;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px #39FF14, 0 0 30px rgba(57, 255, 20, 0.4);
}

/* ========================================
   MOBILE UI OPTIMIZATIONS
======================================== */
@media (max-width: 768px) {
    /* Mobile container padding */
    .container {
        padding: 0 20px;
    }
    
    .main-heading,
    .features-header .main-heading {
        font-size: 2.5rem !important;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-title {
        font-size: 1.6rem;
        min-height: 3.6rem;
    }

    .features, .live-stats {
        padding: 70px 0;
    }
    
    section {
        padding: 70px 0;
    }
    
    .stats-title, .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .credibility-card {
        padding: 35px 25px;
    }
    
    .typing-effect {
        white-space: normal; /* Allow wrapping on mobile */
    }
}

/* ============================================
   NETWORK DASHBOARD & MINING CALCULATOR STYLES
   (Merged from network-dashboard.css)
   ============================================ */

.network-dashboard {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(10, 10, 26, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: 40px 0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    flex-wrap: wrap;
    gap: 15px;
}

.dashboard-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--brand-gold);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    color: var(--gray-light);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    animation: pulseDashboard 2s infinite;
}

.status-dot.live {
    background: var(--brand-green);
    box-shadow: 0 0 10px var(--brand-green);
}

.status-dot.offline {
    background: #8B7500;
    box-shadow: 0 0 10px #8B7500;
    animation: none;
}

.status-dot.cached {
    background: var(--brand-gold);
    box-shadow: 0 0 10px var(--brand-gold);
    animation: pulseDashboard 3s infinite;
}

@keyframes pulseDashboard {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.status-text {
    font-weight: 500;
}

.last-update {
    color: var(--gray-dark);
    font-size: var(--font-size-sm);
}

/* Stats Grid Enhanced */
.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-card-wide {
    grid-column: span 1; /* Reduced from span 2 to 50% width */
}

.stat-icon {
    font-size: var(--font-size-3xl);
    line-height: 1;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-change {
    font-size: var(--font-size-xs);
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.stat-change.positive {
    color: var(--brand-green);
    background: var(--green-glow);
}

.stat-change.negative {
    color: #B8A000;
    background: rgba(184, 160, 0, 0.1);
}

.stat-sub {
    font-size: var(--font-size-xs);
    color: var(--gray-dark);
    margin-top: 5px;
}

/* Health Bar */
.health-bar-container,
.supply-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin: 10px 0;
    overflow: hidden;
}

.health-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B7500, var(--brand-gold), var(--brand-green));
    border-radius: var(--radius-sm);
    transition: width var(--duration-slow) ease;
}

.supply-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-green));
    border-radius: var(--radius-sm);
    transition: width var(--duration-slow) ease;
}

.stat-card.health-good {
    border-color: rgba(0, 255, 136, 0.3);
}

.stat-card.health-moderate {
    border-color: var(--gold-border);
}

.stat-card.health-low {
    border-color: rgba(255, 107, 107, 0.3);
}

/* Dashboard CTA */
.dashboard-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--gold-glow), rgba(255, 165, 0, 0.05));
    border-radius: var(--radius-lg);
    border: 1px dashed var(--gold-border);
}

.dashboard-cta p {
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
}

.btn-calculator {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-green));
    color: var(--brand-dark);
    border: none;
    padding: 15px 30px;
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-normal) ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-calculator:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

/* Network Live Badge */
.network-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-xs);
    margin-left: auto;
}

.network-live-badge .live-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
}

.network-live-badge .live-dot.live {
    background: var(--brand-green);
    box-shadow: 0 0 6px var(--brand-green);
    animation: pulseDashboard 2s infinite;
}

.network-live-badge .live-dot.offline {
    background: #8B7500;
}

.network-live-badge .badge-text {
    font-weight: 600;
}

/* Enhanced Result Cards */
.result-value.profit.positive {
    color: var(--brand-green);
    text-shadow: var(--shadow-glow-green);
}

.result-value.profit.negative {
    color: #B8A000;
    text-shadow: 0 0 10px rgba(184, 160, 0, 0.5);
}

/* Calculator Network Stats */
.calculator-network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-glow);
}

.network-stat-mini {
    text-align: center;
}

.network-stat-mini .label {
    font-size: var(--font-size-xs);
    color: var(--gray-dark);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.network-stat-mini .value {
    font-family: 'Space Grotesk', monospace;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--brand-gold);
}

/* Loading States */
.stat-value.loading {
    background: linear-gradient(90deg, #333, #444, #333);
    background-size: 200% 100%;
    animation: shimmerDashboard 1.5s infinite;
    border-radius: var(--radius-sm);
    color: transparent;
    min-width: 80px;
    min-height: 1.5em;
}

@keyframes shimmerDashboard {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes valueFlash {
    0% { background: var(--gold-glow); }
    100% { background: transparent; }
}

.stat-value.updated {
    color: var(--brand-gold);
    animation: valueFlash var(--duration-slow) ease;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .network-dashboard {
        padding: var(--spacing-md);
        margin: var(--spacing-md) 0;
        border-radius: var(--radius-lg);
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-title {
        font-size: var(--font-size-xl);
    }

    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .stat-icon {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .calculator-network-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-cta {
        padding: var(--spacing-md);
    }

    .btn-calculator {
        width: 100%;
        justify-content: center;
    }
}

/* Dashboard Dark Mode */
@media (prefers-color-scheme: dark) {
    .network-dashboard {
        background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(5, 5, 15, 0.99));
    }
}

/* Dashboard Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .status-dot,
    .stat-value.updated,
    .health-bar-fill,
    .supply-bar-fill,
    .btn-calculator {
        animation: none;
        transition: none;
    }
}

/* Dashboard Print Styles */
@media print {
    .network-dashboard {
        background: white;
        color: black;
        border: 1px solid #ccc;
        box-shadow: none;
    }

    .dashboard-cta {
        display: none;
    }
}
