:root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --dark-color: #1A1A2E;
            --light-color: #F8F9FA;
            --accent-color: #00B4D8;
            --text-color: #333333;
            --text-light: #6C757D;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        h1 {
            font-size: 3.5rem;
            font-weight: 800;
        }
        h2 {
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--primary-color);
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        .btn {
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            border: none;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        .btn-secondary:hover {
            background-color: #003d6b;
            border-color: #003d6b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 78, 137, 0.2);
        }
        .section-padding {
            padding: 80px 0;
        }
        .bg-light {
            background-color: var(--light-color) !important;
        }
        .bg-dark {
            background-color: var(--dark-color) !important;
        }
        .text-primary {
            color: var(--primary-color) !important;
        }
        .text-secondary {
            color: var(--secondary-color) !important;
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 15px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--primary-color);
        }
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0 20px !important;
            font-family: 'Montserrat', sans-serif;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
        }
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        .feature-box {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: var(--primary-color);
        }
        .about-img {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        .about-img img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        .about-img:hover img {
            transform: scale(1.05);
        }
        .game-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .game-img {
            height: 220px;
            overflow: hidden;
        }
        .game-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .game-card:hover .game-img img {
            transform: scale(1.1);
        }
        .game-content {
            padding: 25px;
        }
        .team-member {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }
        .team-member:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .team-member:hover .team-img img {
            transform: scale(1.1);
        }
        .team-info {
            padding: 25px;
            text-align: center;
        }
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        .team-social a {
            width: 40px;
            height: 40px;
            background-color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
        }
        .team-social a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .contact-info-box {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            height: 100%;
            text-align: center;
            transition: var(--transition);
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 30px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .friendlink {
            background-color: var(--light-color);
            padding: 60px 0;
        }
        .flink {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        .flink img {
            max-height: 30px;
            width: auto;
            filter: grayscale(100%);
            transition: var(--transition);
        }
        .flink:hover img {
            filter: grayscale(0%);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.3rem;
            }
            .hero-section {
                padding: 150px 0 100px;
            }
            .hero-section h1 {
                font-size: 3rem;
            }
            .section-padding {
                padding: 60px 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 120px 0 80px;
            }
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .navbar-nav .nav-link {
                padding: 10px 0 !important;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 10px 25px;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
