:root {
            --primary-color: #2a2a72;
            --secondary-color: #009ffd;
            --accent-color: #00d4aa;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #009ffd 100%);
            --gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #009ffd 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
            background-color: #f5f7ff;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: white !important;
            display: flex;
            align-items: center;
        }
        .navbar-brand i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 4px;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: white !important;
            background-color: rgba(0, 212, 170, 0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            position: relative;
            background: var(--gradient-primary);
            color: white;
            padding: 180px 0 120px;
            overflow: hidden;
        }
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            opacity: 0.9;
        }
        .btn-primary {
            background: var(--gradient-secondary);
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 212, 170, 0.4);
        }
        .game-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        .game-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        .game-card-img {
            height: 220px;
            overflow: hidden;
        }
        .game-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .game-card:hover .game-card-img img {
            transform: scale(1.1);
        }
        .game-card-content {
            padding: 25px;
        }
        .game-card-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        .about-section {
            padding: 100px 0;
            background-color: white;
        }
        .about-content {
            padding-right: 40px;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .services-section {
            padding: 100px 0;
            background-color: #f0f4ff;
        }
        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            margin-bottom: 30px;
        }
        .service-card:hover {
            transform: translateY(-10px);
            background: var(--gradient-primary);
            color: white;
        }
        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }
        .service-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
        }
        .service-card:hover .service-icon {
            color: white;
        }
        .team-section {
            padding: 100px 0;
            background-color: white;
        }
        .team-member {
            text-align: center;
            margin-bottom: 40px;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 25px;
            border: 5px solid #f0f4ff;
            transition: var(--transition);
        }
        .team-member:hover .team-img {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }
        .news-section {
            padding: 100px 0;
            background-color: #f0f4ff;
        }
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        .news-card:hover {
            transform: translateY(-10px);
        }
        .news-date {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 20px;
            display: inline-block;
            border-radius: 0 0 10px 0;
            font-weight: 600;
        }
        .contact-section {
            padding: 100px 0;
            background-color: white;
        }
        .contact-info {
            background: var(--gradient-primary);
            color: white;
            padding: 50px 40px;
            border-radius: 15px;
            height: 100%;
            box-shadow: var(--shadow);
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }
        .contact-icon {
            font-size: 1.5rem;
            margin-right: 20px;
            min-width: 40px;
            color: var(--accent-color);
        }
        .form-control {
            padding: 15px;
            border: 2px solid #e1e5f1;
            border-radius: 10px;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 159, 253, 0.25);
        }
        .footer {
            background-color: var(--dark-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 30px;
        }
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            color: white;
            margin-bottom: 25px;
            display: inline-block;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        friendlink {
            display: block;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            padding: 10px 20px;
            margin: 0 10px 10px 0;
            border-radius: 5px;
            text-decoration: none;
            transition: var(--transition);
        }
        .flink:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .about-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            .hero-title {
                font-size: 1.9rem;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }
