  
        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-color: #ff9900;
            --secondary-color: #ffd700;
            --accent-color: #ff4d4d;
            --dark-color: #1e2a44;
            --light-color: #f7f9fb;
            --font-family: 'Baloo 2', cursive;
            --gradient-bg: linear-gradient(135deg, #ff4d4d 0%, #feca57 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
.center {
    text-align: center;
    margin-bottom: 3rem;
}
        /* Reusable Components */
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gradient-bg);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
            background: linear-gradient(135deg, #feca57 0%, #ff4d4d 100%);
        }

        h2 {
            font-size: 3.2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--dark-color);
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--gradient-bg);
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        /* Section Dividers */
        .divider-wave-top, .divider-wave-bottom {
            width: 100%;
            height: 120px;
            background-color: transparent;
            position: relative;
        }

        .divider-wave-top::before, .divider-wave-bottom::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 120px;
            background-color: var(--light-color);
        }

        .divider-wave-top::before {
            top: 0;
            clip-path: ellipse(80% 100% at 50% 100%);
        }

        .divider-wave-bottom::after {
            bottom: 0;
            clip-path: ellipse(80% 100% at 50% 0%);
        }

        /* Mobile Menu */
        .burger-menu {
            display: none;
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 30px;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 100;
        }

        .burger-menu span {
            display: block;
            height: 5px;
            width: 100%;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
            z-index: 100;
            
        }

        .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 8px); }
        .burger-menu.active span:nth-child(2) { opacity: 0; }
        .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -8px); }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(30, 42, 68, 0.95);
            backdrop-filter: blur(8px);
            z-index: 99;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-nav.open {
            display: flex;
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav a {
            color: white;
            font-size: 2.2rem;
            text-decoration: none;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--primary-color);
        }

        /* Header & Nav */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            z-index: 50;
            transition: background-color 0.4s ease;
        }

        header.scrolled {
            background-color: rgba(30, 42, 68, 0.9);
            backdrop-filter: blur(8px);
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--accent-color);
        }

        /* Hero Section */
        #hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 2rem;
            overflow: hidden;
            background: var(--gradient-bg);
            background-image: url('image/banner.jpeg');
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            z-index: 10;
            max-width: 800px;
        }

        #hero h1 {
            font-size: 5.5rem;
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1.2s ease-out;
            line-height: 1.2;
        }

        #hero h3 {
            font-size: 2rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1.2s ease-out;
            font-weight: 400;
        }

        .store-badges {
            margin-top: 2.5rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: fadeIn 1.5s ease-out;
        }

        .store-badges img {
            width: 160px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .store-badges img:hover {
            transform: scale(1.15);
        }

        .scroll-down {
            position: absolute;
            bottom: 2.5rem;
            animation: bounce 2s infinite;
        }

        .scroll-down a {
            color: white;
            font-size: 2.5rem;
        }

        /* Game Overview Section */
        #game-overview {
            background: #fefaf4;
            position: relative;
            padding: 6rem 0;
        }

        #game-overview .divider-wave-top::before {
            background-color: var(--light-color);
        }

        #game-overview .divider-wave-bottom::after {
            background-color: var(--primary-color);
        }

        #game-overview .overview-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .overview-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .overview-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
        }

        .overview-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .overview-card:hover::before {
            opacity: 0.6;
        }

        .overview-card img {
            width: 100%;
            height: auto;
            margin-bottom: 1.2rem;
            z-index: 1;
            position: relative;
            animation: pulse 2.5s infinite;
        }

        .overview-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            z-index: 1;
        }

        .overview-card p {
            z-index: 1;
        }

        /* Gameplay Features */
        #gameplay-features {
            background: var(--primary-color);
            color: white;
            padding: 6rem 0;
        }

        #gameplay-features .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .feature-item {
            text-align: center;
            animation: fadeInScale 0.8s ease-out forwards;
            opacity: 0;
        }

        .feature-item img {
            width: 90px;
            height: 90px;
            margin-bottom: 1.2rem;
            animation: shake 4s infinite ease-in-out;
        }

        .feature-item h4 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        /* Secret Levels Preview */
        #secret-levels {
            background: var(--dark-color);
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        #secret-levels .divider-wave-top::before {
            background-color: var(--primary-color);
        }

        #secret-levels .level-carousel {
            display: flex;
            overflow-x: scroll;
            gap: 2.5rem;
            padding: 2.5rem 0;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .level-carousel::-webkit-scrollbar {
            display: none;
        }

        .level-card {
            min-width: 320px;
            height: 420px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            scroll-snap-align: center;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
            transition: transform 0.3s ease;
        }
        .level-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .level-card:hover {
            transform: translateY(-8px);
        }

        .level-card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            padding: 2.5rem;
            text-align: left;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .level-card:hover .level-card-info {
            transform: translateY(0);
        }

        /* Characters & Chickens */
        #characters {
            background: #fefaf4;
            padding: 6rem 0;
        }

        #characters .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .character-card {
            perspective: 1000px;
            cursor: pointer;
            animation: fadeInScale 0.8s ease-out forwards;
            opacity: 0;
        }

        .character-card-inner {
            position: relative;
            width: 100%;
            height: 420px;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .character-card:hover .character-card-inner {
            transform: rotateY(180deg);
        }

        .character-front, .character-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 25px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
        }

        .character-front {
            background-color: var(--light-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .character-front img {
            width: 160px;
            height: 160px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 1.2rem;
        }

        .character-back {
            background: var(--gradient-bg);
            color: white;
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .character-back h4 {
            margin-bottom: 1.2rem;
        }

        /* Trailer Section */
        #trailer {
            background: var(--accent-color);
            padding: 6rem 0;
            color: white;
        }


        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 25px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
            margin-top: 3.5rem;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('image/banner.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .video-thumbnail:hover {
            opacity: 0.85;
        }


        .custom-play-btn:hover {
            transform: scale(1.15);
        }

        /* Gallery */
        #gallery {
            padding: 6rem 0;
            background: #fefaf4;
        }

        #gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.08);
        }

        /* Stats Counter */
        #stats-counter {
            background: url('image/bg.jpeg') no-repeat center center / cover;
            background-attachment: fixed;
            padding: 6rem 0;
            color: white;
            text-align: center;
            position: relative;
        }

        #stats-counter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.55);
        }

        #stats-counter .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            z-index: 10;
            position: relative;
        }
        #stats-counter h2 {
            color: var(--secondary-color);
          
            margin-bottom: 0.8rem;
            animation: popUp 1.2s ease-out;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            margin-bottom: 0.8rem;
            animation: popUp 1.2s ease-out;
        }

        /* Newsletter & Contact */
        #contact {
            background: var(--light-color);
            padding: 6rem 0;
        }

        #contact .contact-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-details {
            margin-top: 3rem;
            text-align: left;
            max-width: 600px;
            width: 100%;
        }

        .contact-details p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .contact-details a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--accent-color);
        }

        .registration-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2.5rem;
            width: 100%;
            max-width: 600px;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .registration-form input,
        .registration-form textarea {
            padding: 1rem;
            border: 2px solid var(--dark-color);
            border-radius: 10px;
            font-family: var(--font-family);
            font-size: 1rem;
            width: 100%;
            transition: border-color 0.3s ease;
        }

        .registration-form input:focus,
        .registration-form textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }

        .registration-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .registration-form .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .registration-form input[type="checkbox"] {
            width: auto;
            cursor: pointer;
        }

        .registration-form label {
            font-size: 1rem;
            color: var(--dark-color);
        }

        .registration-form .btn {
            border: none;
            cursor: pointer;
            align-self: center;
            padding: 1rem 3rem;
        }

        .mascot-animation {
            width: 50px;
            height: 50px;
            animation: bounce 2s infinite;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent-color);
        }

        .social-icons {
            margin-top: 1.5rem;
        }

        .social-icons a {
            color: white;
         
            margin: 0 0.8rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.25);
        }

      

        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            header .main-nav {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .mobile-nav {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.8);
                z-index: 999;
            }

            #hero h1 {
                font-size: 3.5rem;
            }

            #hero h3 {
                font-size: 1.4rem;
            }

            .store-badges {
                flex-direction: column;
                align-items: center;
            }

            .overview-cards, .features-grid, .character-grid, .stats-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }

            .level-carousel {
                flex-wrap: nowrap;
            }

            .registration-form {
                padding: 1.5rem;
            }
            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Keyframe Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-12px); }
            60% { transform: translateY(-6px); }
        }

        @keyframes popUp {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes rollEgg {
            0% { transform: translateX(0) rotate(0); }
            100% { transform: translateX(100vw) rotate(720deg); }
        }

        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(5deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
    