        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: #fff3e0;
            color: #333;
            overflow-x: hidden;
        }

        /* Header and Burger Menu */
        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;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        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;
        }

        .game-grid, .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .game-card, .event-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, .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .game-card img, .event-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .game-card h3, .event-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .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;
        }
.hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 226, 39, 0.5)), url('image/banner.jpeg') no-repeat center center/cover!important;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff3e0;
    height: 80vh;
}
.hero h1 {
    color: #fff3e0;
}
        /* Contact Section */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .contact-info i {
            margin-right: 0.5rem;
            color: #ff6f00;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-form .checkbox-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
           
        }

        .contact-form .checkbox-container input[type="checkbox"] {
            width: 20px;
            height: 20px;
        }

        /* 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 0.5rem;
            transition: color 0.3s;
            font-size: 14px;

        }
a {
    text-decoration: none;
    color: inherit;
}
        .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;
        }
  