:root {
            --primary-dark: #0d1b2a;
            --primary-blue: #1b263b;
            --accent-teal: #00b4d8;
            --accent-light: #90e0ef;
            --neutral-gray: #e0e1dd;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar {
            background: rgba(13, 27, 42, 0.98);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--accent-teal), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: var(--neutral-gray) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: white !important;
            background: rgba(0, 180, 216, 0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(27, 38, 59, 0.9)), 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;
            color: white;
            padding: 8rem 0 6rem;
            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-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.1;
            animation: zoomEffect 30s infinite alternate;
        }
        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--accent-teal), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .section-title {
            font-weight: 700;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-teal), var(--primary-blue));
            border-radius: 2px;
        }
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .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.2);
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        .team-img:hover {
            transform: scale(1.05);
            border-color: var(--accent-teal);
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 180, 216, 0.5);
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            background: white;
            border-radius: 10px;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-teal);
            color: var(--accent-teal);
        }
        .contact-info {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        footer {
            background: var(--primary-dark);
            color: var(--neutral-gray);
            padding: 4rem 0 2rem;
        }
        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-teal);
            padding-left: 5px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--accent-teal);
            transform: translateY(-5px);
        }
        .game-showcase {
            background: linear-gradient(135deg, #1a237e, #311b92);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .game-card {
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
            position: relative;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s;
        }
        .game-card:hover {
            transform: scale(1.03);
        }
        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s;
        }
        .game-card:hover img {
            transform: scale(1.1);
        }
        .game-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 2rem;
            color: white;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--accent-teal), var(--primary-blue));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background: white;
            top: 30px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background: var(--accent-teal);
            border: 4px solid var(--primary-dark);
            top: 25px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even)::after {
            left: -12px;
        }
        @media screen and (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .timeline::after { left: 31px; }
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
            .timeline-item:nth-child(even) { left: 0; }
            .timeline-item::after { left: 18px; }
            .timeline-content::after { left: -10px; right: auto; }
        }
        .stats-counter {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-teal);
            line-height: 1;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s;
        }
        .back-to-top.active {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--primary-blue);
            transform: translateY(-5px);
        }
