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

        :root {
            /* Heritage stone darks (warm) */
            --primary-dark: #100e0b;
            --secondary-dark: #16130e;
            --tertiary-dark: #211c15;
            --bg-deep: #0b0a07;

            /* Gold — antique heritage (primary brand) */
            --accent-gold: #e7b54e;
            --gold-bright: #f6d488;
            --gold-deep: #b8862b;

            /* Blue — refined "future" secondary */
            --accent-blue: #6cc5d8;
            --accent-purple: #a78bfa;
            --accent-pink: #ec4899;
            --success-green: #4ec99a;
            --warning-amber: #f0b34d;
            --error-red: #e7625a;

            /* Parchment text */
            --text-primary: #f5efe3;
            --text-secondary: #b7ad9b;
            --text-muted: #897f6c;

            /* Type system */
            --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
            --font-ui: 'Space Grotesk', sans-serif;

            /* Standardized Gradients */
            --gradient-primary: linear-gradient(160deg, #100e0b 0%, #1b1610 100%);
            --gradient-accent: linear-gradient(135deg, #f6d488 0%, #c0902f 100%);
            --gradient-gold: linear-gradient(135deg, #f6d488 0%, #c8922e 100%);
            --gradient-blue: linear-gradient(135deg, #8ad8e8 0%, #3a9fb5 100%);

            /* Subtler Effects */
            --gradient-glass: linear-gradient(135deg, rgba(255, 248, 233, 0.05) 0%, rgba(255, 248, 233, 0.015) 100%);
            --hairline: rgba(231, 181, 78, 0.16);
            --hairline-soft: rgba(245, 239, 227, 0.08);
            --shadow-glow: 0 0 24px rgba(231, 181, 78, 0.14);
            --shadow-glow-gold: 0 0 28px rgba(231, 181, 78, 0.2);

            /* Shadows (deeper, warmer) */
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.35);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
            --shadow-xl: 0 28px 70px rgba(0, 0, 0, 0.55);
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--primary-dark);
            background-image:
                radial-gradient(900px circle at 80% -5%, rgba(231, 181, 78, 0.06), transparent 55%),
                radial-gradient(700px circle at 0% 12%, rgba(108, 197, 216, 0.045), transparent 50%);
            background-attachment: fixed;
            color: var(--text-primary);
            line-height: 1.65;
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-feature-settings: "liga" 1, "kern" 1;
        }


        /* Spotlight Effect */
        .spotlight-card {
            position: relative;
            background: rgba(10, 10, 15, 0.6);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }

        .spotlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 1px;
            background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.4), transparent 40%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .spotlight-card:hover::before {
            opacity: 1;
        }

        /* Bento Grid Layout */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .bento-item {
            grid-column: span 4;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bento-item.large {
            grid-column: span 8;
        }

        .bento-item.medium {
            grid-column: span 6;
        }

        .bento-item.tall {
            grid-row: span 2;
        }

        @media (max-width: 1024px) {

            .bento-item.large,
            .bento-item.medium {
                grid-column: span 12;
            }

            .bento-item {
                grid-column: span 6;
            }
        }

        @media (max-width: 768px) {
            .bento-item {
                grid-column: span 12 !important;
            }
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(231, 181, 78, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(108, 197, 216, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(167, 139, 250, 0.03) 0%, transparent 50%);
            animation: backgroundShift 60s ease-in-out infinite;
            z-index: -1;
            pointer-events: none;
        }

        @keyframes backgroundShift {

            0%,
            100% {
                transform: translateX(0) translateY(0) scale(1);
            }

            25% {
                transform: translateX(-10px) translateY(-10px) scale(1.05);
            }

            50% {
                transform: translateX(10px) translateY(10px) scale(0.95);
            }

            75% {
                transform: translateX(-5px) translateY(5px) scale(1.02);
            }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-blue);
            border-radius: 50%;
            animation: float 30s infinite linear;
            opacity: 0.5;
        }

        .particle:nth-child(odd) {
            background: var(--accent-gold);
            animation-duration: 40s;
        }

        .particle:nth-child(3n) {
            background: var(--accent-purple);
            animation-duration: 50s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        /* Timeline Styles (Master Plan) */
        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline-line-vertical {
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent);
        }

        .timeline-step {
            position: relative;
            padding-left: 60px;
            margin-bottom: 3rem;
        }

        .step-marker {
            position: absolute;
            left: 11px;
            top: 0;
            width: 20px;
            height: 20px;
            background: #0d0d12;
            border: 2px solid var(--accent-blue);
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 10px var(--accent-blue);
        }

        .step-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            transition: transform 0.3s ease;
        }

        .step-content:hover {
            transform: translateX(10px);
            border-color: var(--accent-blue);
            background: rgba(255, 255, 255, 0.05);
        }

        .step-number {
            font-family: 'Courier New', monospace;
            color: var(--accent-blue);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(10, 10, 15, 0.95);
            box-shadow: var(--shadow-xl);
        }

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

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            transition: all 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-accent);
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.5rem 0;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-accent);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: var(--accent-blue);
            transform: translateY(-2px);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 3px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--accent-blue);
        }

        .cta-button {
            background: var(--gradient-accent);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
        }

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

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 70px;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }


        .hero-content p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

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

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

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-blue);
            padding: 1rem 2rem;
            border: 2px solid var(--accent-blue);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-accent);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-secondary:hover::before {
            width: 100%;
        }

        .btn-secondary:hover {
            color: white;
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .streaming-badges {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .streaming-badge {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

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

        .streaming-badge:hover::before {
            left: 100%;
        }

        .streaming-badge.twitch {
            border-color: rgba(145, 70, 255, 0.3);
            color: #9146ff;
        }

        .streaming-badge.twitch:hover {
            background: rgba(145, 70, 255, 0.1);
            transform: translateY(-2px);
        }

        .streaming-badge.kick {
            border-color: rgba(83, 252, 24, 0.3);
            color: #53fc18;
        }

        .streaming-badge.kick:hover {
            background: rgba(83, 252, 24, 0.1);
            transform: translateY(-2px);
        }

        .streaming-badge.pumpfun {
            border-color: rgba(255, 107, 53, 0.3);
            color: #ff6b35;
        }

        .streaming-badge.pumpfun:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        /* 3D Hero Visual */
        .hero-3d-container {
            position: relative;
            width: 100%;
            height: 500px;
            perspective: 1000px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-3d-scene {
            position: relative;
            width: 400px;
            height: 500px;
            transform-style: preserve-3d;
            transform: rotateX(10deg) rotateY(-10deg);
            transition: transform 0.1s ease-out;
        }

        .hero-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            pointer-events: none;
        }

        .layer-base {
            transform: translateZ(0px);
        }

        .layer-mid {
            transform: translateZ(50px);
        }

        .layer-top {
            transform: translateZ(100px);
        }

        .glass-panel {
            background: rgba(16, 18, 27, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            padding: 2rem;
            width: 100%;
            height: auto;
            min-height: 400px;
        }

        .floating-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            width: 200px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            position: absolute;
        }

        .floating-card.poker {
            top: 20%;
            right: -40px;
            transform: rotate(5deg);
        }

        .floating-card.gold {
            bottom: 20%;
            left: -40px;
            transform: rotate(-5deg);
        }


        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .card-price {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card-chart {
            height: 120px;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(16, 185, 129, 0.1));
            border-radius: 15px;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .chart-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
            transform: translateY(-50%);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .card-actions {
            display: flex;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .action-btn {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-buy {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }

        .btn-buy:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
        }

        .btn-sell {
            background: var(--gradient-pink);
            color: white;
            box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
        }

        .btn-sell:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
        }

        /* Section Styles */
        .section {
            padding: 6rem 0;
            position: relative;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

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

        /* Built Products Section */
        .built-products {
            background: var(--secondary-dark);
            position: relative;
        }

        .built-products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .product-card {
            background: rgba(10, 10, 15, 0.7);
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glass);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover::after {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 212, 255, 0.1);
        }

        .status-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .status-live {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success-green);
            border: 1px solid var(--success-green);
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
        }

        .status-building {
            background: rgba(245, 158, 11, 0.2);
            color: var(--warning-amber);
            border: 1px solid var(--warning-amber);
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
        }


        .product-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .product-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 20px;
            filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-icon:hover {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 12px 40px rgba(0, 212, 255, 0.25);
            transform: translateY(-2px);
        }

        .product-icon:hover img {
            filter: drop-shadow(0 6px 12px rgba(0, 212, 255, 0.4));
            transform: scale(1.05);
        }

        /* Animated Playing Cards */
        .playing-cards {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card {
            position: absolute;
            width: 24px;
            height: 34px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            color: #333;
            animation: cardFloat 3s ease-in-out infinite;
        }

        .card:nth-child(1) {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            animation-delay: 0s;
            transform: rotate(-15deg) translateX(-8px) translateY(-2px);
            z-index: 3;
        }

        .card:nth-child(2) {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: white;
            animation-delay: 0.5s;
            transform: rotate(-35deg) translateX(-25px) translateY(2px);
            z-index: 1;
        }

        .card:nth-child(3) {
            background: linear-gradient(135deg, #45b7d1, #96c93d);
            color: white;
            animation-delay: 1s;
            transform: rotate(35deg) translateX(25px) translateY(2px);
            z-index: 1;
        }

        .card::before {
            content: '♠';
            font-size: 14px;
        }

        .card:nth-child(2)::before {
            content: '♥';
            color: #ff4757;
        }

        .card:nth-child(3)::before {
            content: '♣';
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: rotate(var(--rotation, 0deg)) translateX(var(--translate-x, 0px)) translateY(0px);
            }

            25% {
                transform: rotate(calc(var(--rotation, 0deg) + 5deg)) translateX(var(--translate-x, 0px)) translateY(-3px);
            }

            50% {
                transform: rotate(var(--rotation, 0deg)) translateX(var(--translate-x, 0px)) translateY(-6px);
            }

            75% {
                transform: rotate(calc(var(--rotation, 0deg) - 5deg)) translateX(var(--translate-x, 0px)) translateY(-3px);
            }
        }

        .product-icon:hover .card {
            animation-duration: 1.5s;
            transform: scale(1.1);
        }

        .product-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .product-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .product-link {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            font-size: 1.05rem;
        }

        .product-link:hover {
            color: var(--accent-gold);
            transform: translateX(8px);
        }

        .product-link i {
            transition: transform 0.3s ease;
        }

        .product-link:hover i {
            transform: translateX(4px);
        }

        /* Roadmap Section */
        .roadmap {
            background: var(--primary-dark);
            position: relative;
        }

        .roadmap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
        }

        .roadmap-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .roadmap-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-accent);
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .roadmap-item {
            display: flex;
            margin-bottom: 4rem;
            position: relative;
        }

        .roadmap-item:nth-child(odd) {
            flex-direction: row;
        }

        .roadmap-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .roadmap-content {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            width: 45%;
            position: relative;
            backdrop-filter: blur(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .roadmap-content:hover {
            transform: translateY(-5px);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 212, 255, 0.1);
        }

        .roadmap-item:nth-child(odd) .roadmap-content {
            margin-right: auto;
        }

        .roadmap-item:nth-child(even) .roadmap-content {
            margin-left: auto;
        }


        @keyframes pulse {

            0%,
            100% {
                transform: translateX(-50%) scale(1);
                box-shadow:
                    0 0 20px rgba(0, 212, 255, 0.5),
                    inset 0 2px 4px rgba(255, 255, 255, 0.2);
            }

            50% {
                transform: translateX(-50%) scale(1.1);
                box-shadow:
                    0 0 30px rgba(0, 212, 255, 0.7),
                    inset 0 2px 4px rgba(255, 255, 255, 0.3);
            }
        }

        .roadmap-phase {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-blue);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .roadmap-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

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

        /* Vision Section */
        .vision {
            background: var(--secondary-dark);
            position: relative;
        }

        .vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }

        .vision-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .vision-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vision-text p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .vision-points {
            list-style: none;
            margin: 2rem 0;
        }

        .vision-points li {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .vision-points li:hover {
            color: var(--accent-blue);
            transform: translateX(10px);
        }

        .vision-points li::before {
            content: '🚀';
            margin-right: 1.5rem;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .vision-points li:hover::before {
            transform: scale(1.2) rotate(10deg);
        }

        /* Legal Framework Section */
        .legal-framework {
            background: var(--primary-dark);
            position: relative;
        }

        .legal-framework::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .legal-card {
            background: rgba(10, 10, 15, 0.8);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .legal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glass);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .legal-card:hover::before {
            opacity: 1;
        }

        .legal-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(139, 92, 246, 0.2);
        }

        .legal-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-purple);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .legal-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .legal-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Live Streaming Section */
        .streaming {
            background: var(--secondary-dark);
            position: relative;
        }

        .streaming::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(145, 70, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(83, 252, 24, 0.05) 0%, transparent 50%);
        }

        .streaming-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .platform-card {
            background: rgba(10, 10, 15, 0.8);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glass);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .platform-card:hover::before {
            opacity: 1;
        }

        .platform-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(255, 255, 255, 0.1);
        }

        .platform-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .platform-card.twitch .platform-icon {
            color: #9146ff;
            text-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
        }

        .platform-card.kick .platform-icon {
            color: #53fc18;
            text-shadow: 0 0 20px rgba(83, 252, 24, 0.5);
        }

        .platform-card.pumpfun .platform-icon {
            color: #ff6b35;
            text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        }

        .platform-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .platform-card p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-description {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--accent-blue);
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-blue);
        }

        .footer-link {
            display: inline-block;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            padding-left: 5px;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .partner-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0.5rem 0.75rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .partner-item:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
            color: var(--accent-blue);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                gap: 4rem;
            }

            .hero-content h1 {
                font-size: 1.75rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
            }
        }

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

            .cta-button {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .logo {
                font-size: 1.25rem;
            }

            .hero {
                padding-top: 100px !important;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-content h1 {
                font-size: 1.75rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .vision-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .roadmap-timeline::before {
                left: 2rem;
            }

            .roadmap-item {
                flex-direction: row !important;
                padding-left: 4rem;
            }

            .roadmap-content {
                width: 100%;
                margin: 0 !important;
            }


            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

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

            .product-card {
                padding: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

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

        .fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-accent);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-blue);
        }

        /* Advanced Visual Enhancements */



        /* Advanced Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loading-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            animation: logoGlow 2s infinite alternate;
        }

        @keyframes logoGlow {
            0% {
                filter: brightness(1);
            }

            100% {
                filter: brightness(1.5);
            }
        }

        .loading-bar {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .loading-progress {
            height: 100%;
            background: var(--gradient-accent);
            border-radius: 2px;
            width: 0%;
            animation: loadingProgress 3s ease-in-out forwards;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        @keyframes loadingProgress {
            0% {
                width: 0%;
            }

            100% {
                width: 100%;
            }
        }

        /* Interactive Data Visualization */
        .data-viz {
            position: relative;
            height: 200px;
            width: 100%;
            background: rgba(26, 26, 46, 0.3);
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .data-viz:has(.poker-table),
        .poker-data-viz {
            background: transparent !important;
        }

        /* Hide data visualization elements in poker container */
        .poker-data-viz .data-line,
        .poker-data-viz .data-point {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }

        /* Ensure poker table fills the container */
        .poker-data-viz {
            padding: 0 !important;
            position: relative !important;
            overflow: hidden !important;
        }

        .poker-data-viz .poker-table {
            width: 100% !important;
            height: 100% !important;
            margin: 0 !important;
            position: relative !important;
        }

        .poker-data-viz .table-surface {
            width: 100% !important;
            height: 100% !important;
            max-width: 100% !important;
            max-height: 100% !important;
            overflow: hidden !important;
            position: relative !important;
        }

        /* Trading Chart Styles */
        .trading-chart {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .chart-symbol {
            font-weight: 600;
            color: var(--accent-blue);
        }

        .chart-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
        }

        .chart-change.positive {
            color: #10b981;
        }

        .chart-change.negative {
            color: #ef4444;
        }

        .chart-container {
            flex: 1;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .price-chart {
            width: 100%;
            height: 100%;
        }

        /* Poker Visual Section */
        .poker-visual-section {
            padding: 2rem 0;
            background: transparent;
        }

        /* Poker Table Styles */
        .poker-table-section {
            margin: 0 auto;
            max-width: 800px;
        }

        .poker-table-container {
            position: relative;
            height: 200px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem 0;
        }

        .poker-table {
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            box-sizing: border-box;
        }

        .table-surface {
            height: 100%;
            width: 100%;
            max-width: 100%;
            max-height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            box-sizing: border-box;
            overflow: hidden;
        }

        .poker-cards {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .poker-cards .card {
            width: 35px;
            height: 50px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            color: #333;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
            animation: cardFlip 2s ease-in-out infinite;
        }

        .poker-cards .card:nth-child(1) {
            animation-delay: 0s;
        }

        .poker-cards .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .poker-cards .card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .poker-cards .card:nth-child(4) {
            animation-delay: 0.6s;
        }

        .poker-cards .card:nth-child(5) {
            animation-delay: 0.8s;
        }

        @keyframes cardFlip {

            0%,
            100% {
                transform: rotateY(0deg);
            }

            50% {
                transform: rotateY(10deg);
            }
        }

        .poker-chips {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .chip {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            font-weight: bold;
            color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            animation: chipBounce 1.5s ease-in-out infinite;
        }

        .chip:nth-child(1) {
            animation-delay: 0s;
        }

        .chip:nth-child(2) {
            animation-delay: 0.3s;
        }

        .chip:nth-child(3) {
            animation-delay: 0.6s;
        }

        .chip:nth-child(4) {
            animation-delay: 0.9s;
        }

        @keyframes chipBounce {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .chip-red {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
        }

        .chip-blue {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .chip-green {
            background: linear-gradient(135deg, #16a34a, #15803d);
        }

        .chip-white {
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
            color: #333;
        }

        .poker-text {
            color: #ffd700;
            font-weight: bold;
            font-size: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .data-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-accent);
            transform-origin: left;
            animation: dataFlow 3s infinite ease-in-out;
        }

        @keyframes dataFlow {
            0% {
                transform: scaleX(0);
            }

            50% {
                transform: scaleX(1);
            }

            100% {
                transform: scaleX(0);
            }
        }

        .data-point {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-blue);
            border-radius: 50%;
            animation: dataPoint 3s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        @keyframes dataPoint {

            0%,
            100% {
                transform: translateY(0) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translateY(-20px) scale(1.5);
                opacity: 1;
            }
        }


        /* Advanced Hover Effects */
        .magnetic-hover {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .magnetic-hover:hover {
            transform: translateY(-10px) scale(1.05);
        }

        /* Sound Wave Visualization */
        .sound-wave {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            margin: 1rem 0;
        }

        .wave-bar {
            width: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
            animation: wave 1.5s infinite ease-in-out;
        }

        .wave-bar:nth-child(1) {
            height: 20px;
            animation-delay: 0s;
        }

        .wave-bar:nth-child(2) {
            height: 35px;
            animation-delay: 0.1s;
        }

        .wave-bar:nth-child(3) {
            height: 50px;
            animation-delay: 0.2s;
        }

        .wave-bar:nth-child(4) {
            height: 35px;
            animation-delay: 0.3s;
        }

        .wave-bar:nth-child(5) {
            height: 20px;
            animation-delay: 0.4s;
        }

        @keyframes wave {

            0%,
            100% {
                transform: scaleY(0.5);
            }

            50% {
                transform: scaleY(1);
            }
        }

        /* Interactive Progress Rings */
        .progress-ring {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 2rem auto;
        }

        .progress-ring svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .progress-ring circle {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
        }

        .progress-ring .bg-circle {
            stroke: rgba(255, 255, 255, 0.1);
        }

        .progress-ring .progress-circle {
            stroke: url(#gradient);
            stroke-dasharray: 314;
            stroke-dashoffset: 314;
            animation: progressRing 3s ease-in-out forwards;
        }

        @keyframes progressRing {
            to {
                stroke-dashoffset: 0;
            }
        }



        /* Interactive Timeline */
        .timeline-enhanced {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-accent);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin: 3rem 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 2rem;
            width: 20px;
            height: 20px;
            background: var(--gradient-accent);
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            z-index: 2;
        }


        /* Liquid Morphing */
        .liquid-morph {
            position: relative;
            overflow: hidden;
        }

        .liquid-morph::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            animation: liquidFlow 8s infinite ease-in-out;
        }

        @keyframes liquidFlow {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
            }

            25% {
                transform: translate(-30%, -70%) scale(1.2) rotate(90deg);
            }

            50% {
                transform: translate(-70%, -30%) scale(0.8) rotate(180deg);
            }

            75% {
                transform: translate(-20%, -80%) scale(1.1) rotate(270deg);
            }
        }

        /* --- CUSTOM 3D ICONS (CSS-ONLY) --- */
        .icon-3d-container {
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            perspective: 500px;
        }

        .icon-3d {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
            transform: translateZ(20px);
            transition: transform 0.3s ease;
        }

        /* Glass Icon Background */
        .icon-glass-bg {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            transform: translateZ(0px);
        }

        .icon-3d-container:hover .icon-3d {
            transform: translateZ(40px) scale(1.1);
        }

        /* --- HERO: FLOATING SIDEBAR LAYOUT (FIXED OVERLAP) --- */
        .hero-grid-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 4rem;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-interface-container {
            position: relative;
            transform-style: preserve-3d;
            perspective: 2000px;
        }

        /* Main Terminal (Base) */
        .interface-main {
            background: #0d0d12;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* Floating Widgets (Sidebars) */
        .interface-widget {
            position: absolute;
            background: rgba(20, 20, 28, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            z-index: 2;
            width: 180px;
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .widget-poker {
            top: 10%;
            right: -60px;
            border-left: 3px solid var(--accent-purple);
        }

        .widget-gold {
            bottom: 15%;
            right: -60px;
            border-left: 3px solid var(--accent-gold);
        }

        /* Hover State: Exploded View */
        .hero-interface-container:hover .interface-main {
            transform: rotateY(-5deg) translateX(-20px);
        }

        .hero-interface-container:hover .widget-poker {
            transform: translateX(40px) translateY(-10px) translateZ(50px);
        }

        .hero-interface-container:hover .widget-gold {
            transform: translateX(40px) translateY(10px) translateZ(50px);
        }

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

            .hero-interface-container {
                margin-top: 4rem;
            }

            .widget-poker,
            .widget-gold {
                right: 0;
                position: relative;
                margin: 1rem auto;
                width: 100%;
                max-width: 300px;
                top: auto;
                bottom: auto;
                transform: none !important;
            }
        }

        /* --- CUSTOM 3D ICONS (CSS-ONLY) --- */
        .icon-3d-container {
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            perspective: 500px;
        }

        .icon-3d {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
            transform: translateZ(20px);
            transition: transform 0.3s ease;
        }

        /* Glass Icon Background */
        .icon-glass-bg {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            transform: translateZ(0px);
        }

        .icon-3d-container:hover .icon-3d {
            transform: translateZ(40px) scale(1.1);
        }

        /* --- HERO: FLOATING SIDEBAR LAYOUT (FIXED OVERLAP) --- */
        .hero-grid-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 4rem;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-interface-container {
            position: relative;
            transform-style: preserve-3d;
            perspective: 2000px;
        }

        /* Main Terminal (Base) */
        .interface-main {
            background: #0d0d12;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* Floating Widgets (Sidebars) */
        .interface-widget {
            position: absolute;
            background: rgba(20, 20, 28, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            z-index: 2;
            width: 180px;
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .widget-poker {
            top: 10%;
            right: -60px;
            border-left: 3px solid var(--accent-purple);
        }

        .widget-gold {
            bottom: 15%;
            right: -60px;
            border-left: 3px solid var(--accent-gold);
        }

        /* Hover State: Exploded View */
        .hero-interface-container:hover .interface-main {
            transform: rotateY(-5deg) translateX(-20px);
        }

        .hero-interface-container:hover .widget-poker {
            transform: translateX(40px) translateY(-10px) translateZ(50px);
        }

        .hero-interface-container:hover .widget-gold {
            transform: translateX(40px) translateY(10px) translateZ(50px);
        }

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

            .hero-interface-container {
                margin-top: 4rem;
            }

            .widget-poker,
            .widget-gold {
                right: 0;
                position: relative;
                margin: 1rem auto;
                width: 100%;
                max-width: 300px;
                top: auto;
                bottom: auto;
                transform: none !important;
            }
        }

        /* --- CUSTOM 3D ICONS (CSS-ONLY) --- */
        .icon-3d-container {
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            perspective: 500px;
        }

        .icon-3d {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
            transform: translateZ(20px);
            transition: transform 0.3s ease;
        }

        /* Glass Icon Background */
        .icon-glass-bg {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            transform: translateZ(0px);
        }

        .icon-3d-container:hover .icon-3d {
            transform: translateZ(40px) scale(1.1);
        }

        /* --- HERO: FLOATING SIDEBAR LAYOUT (FIXED OVERLAP) --- */
        .hero-grid-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 4rem;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-interface-container {
            position: relative;
            transform-style: preserve-3d;
            perspective: 2000px;
        }

        /* Main Terminal (Base) */
        .interface-main {
            background: #0d0d12;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* Floating Widgets (Sidebars) */
        .interface-widget {
            position: absolute;
            background: rgba(20, 20, 28, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            z-index: 2;
            width: 180px;
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .widget-poker {
            top: 10%;
            right: -60px;
            border-left: 3px solid var(--accent-purple);
        }

        .widget-gold {
            bottom: 15%;
            right: -60px;
            border-left: 3px solid var(--accent-gold);
        }

        /* Hover State: Exploded View */
        .hero-interface-container:hover .interface-main {
            transform: rotateY(-5deg) translateX(-20px);
        }

        .hero-interface-container:hover .widget-poker {
            transform: translateX(40px) translateY(-10px) translateZ(50px);
        }

        .hero-interface-container:hover .widget-gold {
            transform: translateX(40px) translateY(10px) translateZ(50px);
        }

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

            .hero-interface-container {
                margin-top: 4rem;
            }

            .widget-poker,
            .widget-gold {
                right: 0;
                position: relative;
                margin: 1rem auto;
                width: 100%;
                max-width: 300px;
                top: auto;
                bottom: auto;
                transform: none !important;
            }
        }

        /* ===== Lore / Heritage ===== */
        .lore-block {
            max-width: 860px;
            margin: 3.5rem auto 0;
            padding: 2.5rem 2.75rem;
            border-radius: 24px;
            background: var(--gradient-glass);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .lore-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-gold);
        }

        .lore-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 0%, #ffd700 120%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lore-block p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.08rem;
            margin-bottom: 1rem;
        }

        .lore-block p:last-child {
            margin-bottom: 0;
        }

        /* ===== Village Teaser Banner ===== */
        .village-banner {
            margin-top: 4rem;
            padding: 4rem 2rem;
            border-radius: 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.08) 0%, rgba(10, 10, 15, 0) 60%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 215, 0, 0.18);
        }

        .village-banner > .village-banner-glow {
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0) 70%);
            pointer-events: none;
            z-index: 0;
        }

        .village-banner > * {
            position: relative;
            z-index: 1;
        }

        .village-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .village-subtitle {
            max-width: 620px;
            margin: 0 auto 1.75rem;
            color: var(--text-secondary);
            font-size: 1.15rem;
            line-height: 1.7;
        }

        .village-image-frame {
            max-width: 880px;
            margin: 0 auto 2rem;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.25);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(255, 215, 0, 0.08);
            position: relative;
            line-height: 0;
        }

        .village-image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 10, 15, 0) 55%, rgba(10, 10, 15, 0.55) 100%);
            pointer-events: none;
        }

        .village-image-frame img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .village-image-frame:hover img {
            transform: scale(1.04);
        }

        .village-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            background: rgba(255, 215, 0, 0.08);
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: var(--accent-gold);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .village-pulse {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent-gold);
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
            animation: villagePulse 2s infinite;
        }

        @keyframes villagePulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
            70% { box-shadow: 0 0 0 12px rgba(255, 215, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        /* ===== Connect Section ===== */
        .connect {
            background: var(--primary-dark);
            position: relative;
        }

        .connect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.75rem;
            margin-top: 3rem;
        }

        .connect-card {
            display: flex;
            flex-direction: column;
            padding: 2.25rem;
            border-radius: 20px;
            background: var(--gradient-glass);
            border: 1px solid rgba(255, 255, 255, 0.08);
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .connect-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), var(--shadow-glow);
        }

        .connect-card-primary {
            border-color: rgba(0, 212, 255, 0.25);
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
        }

        .connect-icon {
            font-size: 2.4rem;
            color: var(--accent-blue);
            margin-bottom: 1.25rem;
        }

        .connect-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            color: var(--text-primary);
            margin-bottom: 0.6rem;
        }

        .connect-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.98rem;
            flex-grow: 1;
            margin-bottom: 1.25rem;
        }

        .connect-link {
            color: var(--accent-blue);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .connect-card:hover .connect-link {
            gap: 0.85rem;
        }

        /* ===== Loading status badge ===== */
        .loading-status {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .loading-dots::after {
            content: '';
            display: inline-block;
            width: 1.4em;
            text-align: left;
            animation: loadingDots 1.6s steps(1, end) infinite;
        }

        @keyframes loadingDots {
            0% { content: ''; }
            25% { content: '.'; }
            50% { content: '..'; }
            75% { content: '...'; }
            100% { content: ''; }
        }

        /* ===== X (Twitter) inline logo ===== */
        .x-logo {
            width: 1em;
            height: 1em;
            display: inline-block;
            vertical-align: -0.125em;
            fill: currentColor;
        }

        /* ===== Footer Socials ===== */
        .footer-socials {
            display: flex;
            gap: 0.85rem;
            margin-top: 1.25rem;
        }

        .footer-socials a {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: rgba(0, 212, 255, 0.12);
            border-color: rgba(0, 212, 255, 0.35);
            color: var(--accent-blue);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .lore-block {
                padding: 2rem 1.5rem;
            }

            .village-banner {
                padding: 3rem 1.25rem;
            }
        }

        /* =========================================================
           HERITAGE DESIGN SYSTEM v2 — "Saltaire: heritage-meets-future"
           Editorial serif display, antique gold, warm stone neutrals.
           This layer refines the base styles above.
           ========================================================= */

        ::selection {
            background: rgba(231, 181, 78, 0.3);
            color: #fff;
        }

        .text-gold-gradient {
            background: linear-gradient(100deg, var(--gold-bright) 0%, var(--gold-deep) 110%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* --- Editorial display typography --- */
        .hero-content h1,
        .section-title,
        .cta-title,
        .lore-title,
        .village-title,
        .roadmap-title {
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: -0.015em;
            font-optical-sizing: auto;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.08;
            background: none;
            -webkit-text-fill-color: currentColor;
            color: var(--text-primary);
            margin-bottom: 1.1rem;
        }

        .section-title::after {
            width: 48px;
            height: 2px;
            bottom: -14px;
            background: var(--gradient-gold);
            opacity: 0.9;
        }

        .section-header {
            margin-bottom: 3.5rem;
        }

        .section-subtitle {
            font-size: 1.08rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 640px;
        }

        /* Eyebrow / mono labels become refined small-caps */
        .mono-text {
            font-family: var(--font-ui);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-size: 0.72rem;
        }

        /* --- Section rhythm + architectural top hairline --- */
        .section {
            padding: 7rem 0;
        }

        .built-products,
        .vision,
        .connect {
            border-top: 1px solid var(--hairline-soft);
        }

        /* --- Navbar --- */
        .navbar {
            background: rgba(16, 14, 11, 0.72);
            border-bottom: 1px solid var(--hairline-soft);
        }

        .navbar.scrolled {
            background: rgba(11, 10, 7, 0.92);
            border-bottom-color: var(--hairline);
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        /* --- Buttons: gold needs dark ink --- */
        .btn-primary,
        .cta-button {
            color: #20170a;
            font-family: var(--font-ui);
            font-weight: 600;
            letter-spacing: 0.01em;
        }

        .btn-primary:hover {
            box-shadow: 0 20px 44px rgba(231, 181, 78, 0.34);
        }

        .cta-button:hover {
            box-shadow: 0 14px 32px rgba(231, 181, 78, 0.34);
        }

        .btn-secondary {
            color: var(--accent-gold);
            border-color: rgba(231, 181, 78, 0.45);
        }

        .btn-secondary:hover {
            color: #20170a;
        }

        /* --- Cards: warm glass + gold hairline --- */
        .luminous-card {
            background: linear-gradient(135deg, rgba(255, 248, 233, 0.04) 0%, rgba(255, 248, 233, 0.012) 100%);
            border: 1px solid var(--hairline-soft);
            border-radius: 18px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .luminous-card:hover {
            transform: translateY(-6px);
            border-color: var(--hairline);
            box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
        }

        .product-title {
            font-family: var(--font-ui);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

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

        .product-link i {
            color: var(--accent-gold);
        }

        /* --- Roadmap / timeline accents --- */
        .roadmap-phase,
        .step-number {
            font-family: var(--font-ui);
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .roadmap-title {
            font-size: 1.5rem;
        }

        /* --- Footer --- */
        .footer {
            border-top: 1px solid var(--hairline);
            background: var(--bg-deep);
        }

        .footer-section h3 {
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--accent-gold);
            letter-spacing: 0;
        }

        .footer-section a:hover {
            color: var(--accent-gold);
        }

        .partner-item:hover {
            background: rgba(231, 181, 78, 0.1);
            border-color: rgba(231, 181, 78, 0.3);
            color: var(--accent-gold);
        }

        /* --- CTA section title size --- */
        .cta-title {
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            line-height: 1.05;
        }

        /* --- Connect cards align to gold --- */
        .connect-icon,
        .connect-link {
            color: var(--accent-gold);
        }

        .connect-card:hover {
            border-color: var(--hairline);
            box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
        }

        .connect-card-primary {
            border-color: rgba(231, 181, 78, 0.28);
            background: linear-gradient(135deg, rgba(231, 181, 78, 0.08) 0%, rgba(255, 248, 233, 0.015) 100%);
        }

        /* --- Hero copy --- */
        .hero-content h1 {
            font-weight: 600;
        }

        /* =========================================================
           VISUAL POP LAYER — make it shine & stand out
           ========================================================= */

        @property --pop-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        /* --- Shimmering display headings --- */
        .text-gold-gradient,
        .cta-title,
        .village-title {
            background: linear-gradient(100deg,
                    #c8922e 0%, #f6d488 28%, #fff7e0 48%, #f6d488 68%, #c8922e 100%);
            background-size: 250% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: shimmerText 6s linear infinite;
        }

        .section-title {
            background: linear-gradient(100deg,
                    #f5efe3 0%, #f5efe3 32%, #fff3cf 48%, #f6d488 56%, #f5efe3 72%, #f5efe3 100%);
            background-size: 250% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: shimmerText 7s linear infinite;
        }

        @keyframes shimmerText {
            to {
                background-position: 250% center;
            }
        }

        .village-title {
            text-shadow: 0 0 40px rgba(231, 181, 78, 0.35);
        }

        /* --- Hero aurora: bright drifting color light --- */
        .hero {
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: -10%;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(38% 48% at 18% 28%, rgba(231, 181, 78, 0.22), transparent 70%),
                radial-gradient(34% 42% at 82% 22%, rgba(108, 197, 216, 0.20), transparent 70%),
                radial-gradient(42% 48% at 62% 82%, rgba(167, 139, 250, 0.16), transparent 70%);
            filter: blur(30px);
            animation: auroraDrift 18s ease-in-out infinite alternate;
        }

        @keyframes auroraDrift {
            0% {
                transform: translate3d(-2%, -1%, 0) scale(1);
                opacity: 0.75;
            }
            100% {
                transform: translate3d(3%, 2%, 0) scale(1.12);
                opacity: 1;
            }
        }

        .hero-grid-layout {
            position: relative;
            z-index: 2;
        }

        /* --- Animated glowing gradient borders on standout cards --- */
        .village-banner,
        .connect-card-primary,
        .product-group.mb-16 .luminous-card {
            position: relative;
        }

        .village-banner::before,
        .connect-card-primary::before,
        .product-group.mb-16 .luminous-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.5px;
            background: conic-gradient(from var(--pop-angle),
                    rgba(231, 181, 78, 0.95), rgba(108, 197, 216, 0.65),
                    rgba(167, 139, 250, 0.65), rgba(246, 212, 136, 0.95), rgba(231, 181, 78, 0.95));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 3;
            opacity: 0.55;
            transition: opacity 0.4s ease;
            animation: popSpin 6s linear infinite;
        }

        .village-banner::before {
            opacity: 0.8;
        }

        .product-group.mb-16 .luminous-card:hover::before {
            opacity: 1;
        }

        @keyframes popSpin {
            to {
                --pop-angle: 360deg;
            }
        }

        /* --- Brighter village glow + pulsing image frame --- */
        .village-banner > .village-banner-glow {
            background: radial-gradient(circle, rgba(231, 181, 78, 0.22) 0%, rgba(231, 181, 78, 0) 70%);
            animation: glowBreath 5s ease-in-out infinite;
        }

        .village-image-frame {
            border-color: rgba(231, 181, 78, 0.45);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(231, 181, 78, 0.22);
            animation: glowBreath 6s ease-in-out infinite;
        }

        @keyframes glowBreath {
            0%, 100% {
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(231, 181, 78, 0.16);
            }
            50% {
                box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 75px rgba(231, 181, 78, 0.32);
            }
        }

        /* --- Breathing glow on the primary nav CTA --- */
        .navbar .cta-button {
            animation: ctaPulse 3.2s ease-in-out infinite;
        }

        @keyframes ctaPulse {
            0%, 100% {
                box-shadow: 0 0 18px rgba(231, 181, 78, 0.25);
            }
            50% {
                box-shadow: 0 0 34px rgba(231, 181, 78, 0.55);
            }
        }

        /* --- Brighter status badges --- */
        .status-badge {
            backdrop-filter: blur(8px);
        }

        /* --- Nav fit: keep CTA on one line, switch to menu earlier --- */
        .navbar .cta-button {
            white-space: nowrap;
            flex-shrink: 0;
        }

        .navbar .nav-links {
            flex-wrap: nowrap;
        }

        @media (max-width: 920px) {

            .navbar .nav-links,
            .navbar .cta-button {
                display: none;
            }

            .navbar .mobile-menu-btn {
                display: flex;
            }
        }

        /* Respect users who prefer reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
            }
        }
