:root {
            --primary-dark: #0d1b2a;
            --primary-blue: #1b4965;
            --accent-teal: #2ec4b6;
            --accent-red: #e71d36;
            --light-bg: #f8f9fa;
            --text-light: #e0e1dd;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .game-card {
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 14px 28px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.1);
        }
        .btn-acequeen {
            background: linear-gradient(to right, var(--accent-teal), var(--primary-blue));
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-acequeen:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(46, 196, 182, 0.3);
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: #f1f3f5;
            border-radius: 6px;
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--accent-teal);
            color: white;
            transform: translateY(-2px);
            border-color: var(--accent-teal);
        }
        .footer-bg {
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        .icon-hover {
            transition: transform 0.3s ease;
        }
        .icon-hover:hover {
            transform: scale(1.2);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-teal), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .timeline-item {
            border-left: 3px solid var(--accent-teal);
            padding-left: 25px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--accent-teal);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
