:root {
            --bg-color: #0d1117;
            --panel-bg: rgba(22, 27, 34, 0.5);
            --border-color: rgba(255, 255, 255, 0.08);
            --emerald: #00ff9d;
            --emerald-glow: rgba(0, 255, 157, 0.3);
            --emerald-hover: #33ffb3;
            --text-main: #e6eef8;
            --text-muted: #8a9bb8;
            --dire-red: #ff4a4a;
        }

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

        html {
            background-color: var(--bg-color);
            min-height: 100vh;
        }

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

        /* Background Effects */
        #dotaMapCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            pointer-events: none;
            opacity: 0.8;
        }

        .ambient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            background: 
                radial-gradient(circle at 15% 50%, rgba(0, 255, 157, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(255, 74, 74, 0.03) 0%, transparent 50%);
            animation: pulse-bg 15s infinite alternate ease-in-out;
        }

        @keyframes pulse-bg {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.1); opacity: 1; }
        }

        .dota-font {
            font-family: "Press Start 2P", 'Outfit', sans-serif;
        }

        .hero-glow {
            text-shadow: 0 0 20px var(--emerald-glow), 0 0 40px var(--emerald-glow);
            color: white;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Glassmorphism Classes */
        .glass-panel {
            background: var(--panel-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

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

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(5, 8, 20, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }

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

        .logo-group {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--emerald), #00b8ff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 0 20px var(--emerald-glow);
        }

        .logo-text {
            font-size: 1.5rem;
            letter-spacing: 2px;
            line-height: 1.1;
        }

        .logo-subtext {
            font-size: 0.65rem;
            color: var(--emerald);
            letter-spacing: 3px;
            font-family: 'Inter', sans-serif;
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-link {
            position: relative;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: white;
        }

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

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

        .nav-links .nav-mobile-cta {
            display: none !important;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--emerald), #00d482);
            color: #000;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 255, 157, 0.6);
            background: linear-gradient(135deg, var(--emerald-hover), var(--emerald));
        }

        /* Hero Section */
        header {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 6rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid rgba(0, 255, 157, 0.3);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--emerald);
            margin-bottom: 2rem;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--emerald);
            border-radius: 50%;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        .hero-title {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 1.35rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
            font-weight: 300;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 1.25rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 800;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--border-color);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-outline:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.05);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

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

        /* Visual Draft Representation */
        .draft-visual {
            position: relative;
            padding: 2.5rem;
        }

        .draft-visual::before {
            content: '⚔️';
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 150px;
            opacity: 0.03;
            z-index: -1;
        }

        .win-chance-card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 16px;
            padding: 2rem;
            text-center;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .win-chance-title {
            color: var(--emerald);
            font-size: 0.75rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .win-chance-value {
            font-size: 5rem;
            font-weight: 900;
            color: white;
            line-height: 1;
        }

        .draft-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .draft-slot {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem 0.5rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .draft-slot:hover {
            transform: translateY(-5px);
            border-color: var(--emerald);
            box-shadow: 0 10px 20px rgba(0, 255, 157, 0.1);
        }

        .draft-slot-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .draft-slot-name {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .draft-slot-reason {
            font-size: 0.65rem;
            color: var(--emerald);
            margin-top: 0.25rem;
        }

        /* Trust Bar */
        .trust-bar {
            background: rgba(0, 0, 0, 0.4);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 2rem 0;
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

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

        .trust-value {
            color: var(--emerald);
            font-size: 1.25rem;
            font-weight: 800;
            font-family: monospace;
        }

        .trust-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        /* Features Section */
        .section-features {
            padding: 8rem 0;
            position: relative;
        }

        .section-title-wrapper {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-tag {
            color: var(--emerald);
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 3.5rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            margin-top: 0.5rem;
        }

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

        .feature-card {
            padding: 3rem 2rem;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 255, 157, 0.3);
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }

        .feature-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* How it works */
        .section-how {
            padding: 8rem 0;
            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
        }

        .how-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            align-items: start;
        }

        .how-sticky {
            position: sticky;
            top: 150px;
        }

        .how-step {
            display: flex;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: rgba(0, 255, 157, 0.1);
            color: var(--emerald);
            border: 1px solid var(--emerald);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: inset 0 0 20px rgba(0, 255, 157, 0.1);
        }

        .step-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .step-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Proof / CTA */
        .section-proof {
            padding: 8rem 0;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(0, 255, 157, 0.05) 0%, transparent 60%);
        }

        .quote {
            font-size: 3rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            max-width: 900px;
            margin: 0 auto 3rem auto;
            line-height: 1.2;
        }

        .btn-massive {
            display: inline-flex;
            font-size: 1.5rem;
            padding: 1.5rem 4rem;
            border-radius: 100px;
            background: white;
            color: black;
            font-weight: 900;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .btn-massive:hover {
            transform: scale(1.05);
            background: var(--emerald);
            box-shadow: 0 15px 50px rgba(0, 255, 157, 0.4);
        }

        /* Footer */
        .disclaimer {
            background: rgba(0, 0, 0, 0.6);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.8;
        }

        footer {
            background: black;
            padding: 2rem 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.75rem;
        }

        /* Responsive */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 100;
            padding: 8px;
            transition: transform 0.2s;
        }
        .mobile-menu-btn:active {
            transform: scale(0.9);
        }

        @media (max-width: 1024px) {
            .hero-grid, .how-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .hero-title {
                font-size: 3.5rem;
            }
            .how-sticky {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }
            .quote {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(5, 8, 20, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--border-color);
                padding: 2rem;
                gap: 1.5rem;
                align-items: center;
                z-index: 99;
                box-shadow: 0 10px 30px rgba(0,0,0,0.8);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-inner > .btn-primary {
                display: none;
            }
            .nav-links .nav-mobile-cta {
                display: flex !important;
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .trust-bar {
                flex-direction: column;
                gap: 2rem;
                padding: 2rem 1rem;
            }
            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }
            .btn-massive {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                width: 100%;
                justify-content: center;
            }
            .container {
                padding: 0 1.25rem;
            }
            
            /* Landing page draft visual */
            .draft-visual {
                padding: 1.5rem;
            }
            .win-chance-value {
                font-size: 3.5rem;
            }
            .draft-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            .logo-text {
                font-size: 1.2rem;
            }
            .logo-icon {
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }
        }
