:root {
            --primary-color: #6a11cb;
            --secondary-color: #2575fc;
            --accent-color: #ff4e50;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-color: #333333;
            --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: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            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;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        h2.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            margin-bottom: 60px;
        }
        .navbar {
            padding: 20px 0;
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--accent-color);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 15px !important;
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(106, 17, 203, 0.2);
        }
        .hero {
            height: 100vh;
            min-height: 800px;
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.8)), 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;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 4rem;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            border-top: 5px solid transparent;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            border-top-color: var(--primary-color);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        .game-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            background: white;
            margin-bottom: 30px;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .game-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        .game-content {
            padding: 25px;
        }
        .game-badge {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .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);
        }
        .team-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            margin-bottom: 30px;
            text-align: center;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            width: 100%;
            object-fit: cover;
        }
        .team-content {
            padding: 25px;
        }
        .team-social {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        .team-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            color: var(--dark-color);
        }
        .team-social a:hover {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
        }
        .contact-info {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 50px 40px;
            border-radius: var(--border-radius);
            height: 100%;
        }
        .contact-item {
            display: flex;
            margin-bottom: 30px;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.5rem;
        }
        .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: var(--accent-color);
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 70px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 15px 30px;
            margin: 10px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            font-weight: 600;
            color: var(--dark-color);
        }
        .flink:hover {
            transform: translateY(-5px);
            color: var(--primary-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 1199.98px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            .hero h1 { font-size: 3.5rem; }
        }
        @media (max-width: 991.98px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .hero h1 { font-size: 3rem; }
            .section-padding { padding: 80px 0; }
            .navbar-nav { text-align: center; padding-top: 15px; }
        }
        @media (max-width: 767.98px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.8rem; }
            .hero p { font-size: 1.1rem; }
            .section-padding { padding: 60px 0; }
            .contact-info { margin-bottom: 40px; }
        }
        @media (max-width: 575.98px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero h1 { font-size: 2.5rem; }
            .hero { min-height: 700px; }
            .btn { padding: 10px 25px; }
        }
