:root {
            --primary-dark: #0a1128;
            --primary-blue: #1a3a8f;
            --accent-cyan: #00d4ff;
            --accent-orange: #ff6b35;
            --light-bg: #f8f9fa;
            --text-light: #e9ecef;
            --text-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .section-header {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue));
            border-radius: 2px;
        }
        .text-center .section-header::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
            color: var(--text-light);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #fff, var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
        }
        .btn-cta {
            background: linear-gradient(90deg, var(--accent-orange), #ff8e53);
            border: none;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 107, 53, 0.6);
            color: white;
        }
        .nav-bar {
            background-color: rgba(10, 17, 40, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
        }
        .nav-bar.scrolled {
            padding: 0.7rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--accent-cyan);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(26, 58, 143, 0.3);
        }
        .section-padding {
            padding: 100px 0;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
            transition: transform 0.3s;
        }
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s;
            background: white;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
        }
        .game-card-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }
        .contact-info-box {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-left: 5px solid var(--accent-cyan);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 80px 0 30px;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 4rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .friendlink {
            background-color: #f1f5f9;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.8rem;
            margin: 0.5rem 1rem;
            border-radius: 50px;
            color: var(--primary-dark);
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            text-decoration: none;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--text-dark);
            opacity: 0.8;
            margin-top: 0.5rem;
        }
        .timeline-item {
            position: relative;
            padding-left: 3rem;
            padding-bottom: 3rem;
            border-left: 2px solid var(--accent-cyan);
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: -10px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent-cyan);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--accent-cyan);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(26, 58, 143, 0.3);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--accent-orange);
            color: white;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-padding {
                padding: 70px 0;
            }
            .stats-number {
                font-size: 2.8rem;
            }
        }
        .content-rich p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-rich h3 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        .content-rich ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .content-rich li {
            margin-bottom: 0.5rem;
        }
