        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: #fff3e0;
            color: #333;
            overflow-x: hidden;
        }

        /* Header and Navigation */
        header {
            background: #facc15;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #1a1a1a;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-menu a {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #ff6f00;
        }

        .burger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #1a1a1a;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 250px;
                background: #facc15;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease-in-out;
            }

            .nav-menu.active {
                right: 0;
            }

            .burger {
                display: block;
            }
        }

        /* Sections */
        section {
            padding: 6rem 2rem;
          
            margin: 0 auto;
            text-align: center;
        }

        section:nth-child(even) {
            background: #fef08a;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #ff6f00;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #e65a00;
        }

        .icon {
            color: #ff6f00;
            margin-right: 0.5rem;
        }

        /* Game Grid */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .game-card {
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .game-card img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .game-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .stat-card h3 {
            font-size: 2.5rem;
            color: #ff6f00;
            margin-bottom: 0.5rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .faq-item {
            background: #fff;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-question {
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .faq-answer {
            max-height: 0;
            padding: 0 1rem;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 1rem;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay p {
            color: #fff;
            font-size: 1.2rem;
            text-align: center;
            padding: 1rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: #facc15;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #1a1a1a;
        }

        .footer-links a, .footer-contact a {
            color: #1a1a1a;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
        }

        .footer-links a:hover, .footer-contact a:hover {
            color: #ff6f00;
        }

        .footer-social a {
            font-size: 1.5rem;
            margin: 0 1rem;
            color: #1a1a1a;
            transition: color 0.3s;
        }

        .footer-social a:hover {
            color: #ff6f00;
        }
   