 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        /* Header Section */
        .header {
            min-height: 100vh;
            width: 100%;
            background:url(Background\ Image.png);
            background-size: cover;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        nav {
            display: flex;
            padding: 2% 6%;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }


        .close-menu {
            display: none;
        }

        .nav-links {
            flex: 1;
            text-align: right;
        }

        .nav-links ul {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .nav-links ul li {
            display: inline-block;
            padding: 8px 12px;
            position: relative;
        }

        .nav-links ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links ul li a:hover {
            color: #f44336;
        }

        .nav-links ul li::after {
            content: '';
            width: 0;
            height: 2px;
            background: #f44336;
            display: block;
            margin: auto;
            transition: width 0.5s ease;
        }

        .nav-links ul li:hover::after {
            width: 100%;
        }

        .text-box {
            width: 90%;
            max-width: 800px;
            color: #ffffff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .text-box h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .text-box p {
            margin: 20px 0 40px;
            font-size: 18px;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .hero-btn {
            display: inline-block;
            text-decoration: none;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 500;
            background: transparent;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hero-btn:hover {
            border-color: #f44336;
            background: #f44336;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(244, 67, 54, 0.3);
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #ffffff;
            cursor: pointer;
            z-index: 11;
        }

        /* About Section */
        .about {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            text-align: center;
            padding: 100px 20px;
        }

        .about h1 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 60px;
            color: #333;
        }

        .row {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 50px;
        }

        .about-section {
            flex: 1;
            background: #f8f9fa;
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .about-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: #ffffff;
        }

        .about-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .about-section p {
            color: #666;
            line-height: 1.6;
        }

        /* Game Section */
        .game {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            text-align: center;
            padding: 100px 20px;
            background: #f8f9fa;
        }

        .game h1 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 60px;
            color: #333;
        }

        .game-location {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .game-location:hover {
            transform: scale(1.05);
        }

        .game-location img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .layer {
            background: rgba(0,0,0,0.7);
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .layer:hover {
            opacity: 1;
        }

        .layer h3 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        /* Contact Section */
        .contact {
            margin: 100px auto;
            width: 90%;
            max-width: 800px;
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            color: #ffffff;
        }

        .contact h1 {
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            width: 100%;
            text-align: center;
            padding: 40px 20px;
            background: #333;
            color: #ffffff;
        }

        /* Beta Testing Modal */
        .beta-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
        }

        .beta-modal-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin: 10% auto;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            color: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .beta-modal h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .beta-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

        .beta-form input {
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            background: rgba(255,255,255,0.9);
            color: #333;
        }

        .beta-form input:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.3);
        }

        .beta-submit {
            background: #f44336;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .beta-submit:hover {
            background: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(244, 67, 54, 0.3);
        }

        .beta-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 30px;
            cursor: pointer;
            color: white;
            transition: color 0.3s ease;
        }

        .beta-close:hover {
            color: #f44336;
        }

        /* Beta Section */
        .beta-section {
            display: none;
            width: 90%;
            max-width: 1200px;
            margin: auto;
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            color: white;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .beta-section h1 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: white;
        }

        .beta-content {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 50px;
        }

        .beta-feature {
            flex: 1;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .beta-feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #f44336;
        }

        .beta-feature p {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .beta-download {
            background: #f44336;
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .beta-download:hover {
            background: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(244, 67, 54, 0.3);
        }

        /* Error Page */
        .error-page {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            color: white;
            text-align: center;
            padding-top: 20vh;
        }

        .error-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: white;
        }

        .error-content h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .error-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .footer h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .icons {
            margin-top: 20px;
        }

        .icons i {
            font-size: 24px;
            color: #ffffff;
            margin: 0 15px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .icons i:hover {
            color: #f44336;
        }

        /* Countdown Box Styling */
        .countdown-box {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .countdown-box p {
            font-size: 18px;
            font-weight: 500;
            color: #f44336;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin: 0;
        }

/* Current Date Styling */
        .current-date {
            font-size: 16px;
            color: #cccccc;
            margin: 15px 0;
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .text-box h1 {
                font-size: 2.5rem;
            }

            .close-menu {
                display: none; /* Hidden by default on mobile too */
                position: absolute;
                top: 20px;
                right: 30px;
                font-size: 24px;
                color: #ffffff;
                cursor: pointer;
            }
    
            /* Show close icon only when mobile menu is active/open */
            .nav-links.active .close-menu {
                display: block;
            }
    
            /* Hide hamburger icon when menu is open */
            .nav-links.active ~ .menu-toggle {
                display: none;
            }

            .text-box p {
                font-size: 16px;
            }

            .nav-links {
                position: fixed;
                background: #333;
                height: 100vh;
                width: 250px;
                top: 0;
                right: -250px;
                text-align: left;
                z-index: 9;
                transition: right 0.3s ease;
                padding-top: 60px;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links ul {
                flex-direction: column;
                align-items: flex-start;
                padding: 0 30px;
            }

            .nav-links ul li {
                display: block;
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid #555;
            }

            .menu-toggle {
                display: block;
            }

            .close-menu {
                position: absolute;
                top: 20px;
                right: 30px;
                font-size: 24px;
                color: #ffffff;
                cursor: pointer;
            }

            .row {
                flex-direction: column;
                gap: 20px;
            }

            .about h1, .game h1 {
                font-size: 2rem;
            }

            .contact h1 {
                font-size: 1.5rem;
            }

            .beta-content {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                padding: 15px 20px;
            }

            .about, .game {
                padding: 60px 20px;
            }

                .countdown-box {
                padding: 15px;
                margin: 20px 0;
            }
            
            .countdown-box p {
                font-size: 16px;
            }
            
            .current-date {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .text-box h1 {
                font-size: 2rem;
            }

            .hero-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .about-section {
                padding: 30px 20px;
            }
        }