        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #ffffff;
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }
    
        pre {
            color: red;
            font-weight: bolder;
        }
    
        header {
            background-color: #ffffff;
            border-bottom: 1px solid #ddd;
            padding: 10px 20px;
        }
    
        .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    
        .logo img {
            height: 50px;
        }
    
        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
    
        nav ul li {
            margin-left: 20px;
        }
    
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 700;
            font-size: 16px;
        }
    
        nav ul li a:hover {
            color: #00ffbf;
            text-decoration: none;
        }
    
        /* Carousel Container */
        .carousel {
            position: relative;
            width: 100vw;
            height: 85vh;
            overflow: hidden;
            margin: 0;
        }
    
        .carousel-inner {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
    
        .carousel-item {
            flex: 1 0 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
    
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
        }
    
        .carousel-prev, .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            cursor: pointer;
            padding: 15px;
            z-index: 1000;
            border-radius: 50%;
            font-size: 24px;
        }
    
        .carousel-prev {
            left: 15px;
        }
    
        .carousel-next {
            right: 15px;
        }
    
        a {
            color: #00ffbf;
            text-decoration: none;
            font-weight: bolder;
          
        }
        /* Contact Us Section */
.contact-us {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-us h2 {
    font-size: 28px; /* Adjusted font size for better mobile view */
    margin-bottom: 20px;
}

.contact-us .content {
    display: flex;
    flex-direction: column; /* Stacked layout on mobile */
    align-items: center;
    gap: 20px; /* Space between items */
}

.contact-us .details {
    width: 100%;
    max-width: 600px; /* Limit the width on larger screens */
    margin: 0 auto;
}

.contact-us .details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us .details ul li {
    margin-bottom: 10px;
    font-size: 16px; /* Smaller font size for mobile */
}

.contact-us .details a {
    color: #00ffbf;
    text-decoration: none;
    font-weight: bold;
}

.contact-us .form-container {
    width: 100%;
    max-width: 600px; /* Limit the width on larger screens */
    margin: 0 auto;
}

.contact-us form {
    display: flex;
    flex-direction: column;
}

.contact-us form input, .contact-us form textarea {
    width: 100%;
    padding: 12px; /* Slightly larger padding for better touch usability */
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-us form button {
    padding: 12px;
    background-color: #00ffbf;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px; /* Adjusted font size for better mobile view */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-us form button:hover {
    background-color: #009f8b;
}

@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 24px; /* Further reduced font size on small screens */
    }

    .contact-us .details ul li {
        font-size: 14px; /* Further reduced font size on small screens */
    }

    .contact-us form input, .contact-us form textarea {
        font-size: 14px; /* Adjusted font size for inputs on small screens */
    }

    .contact-us form button {
        font-size: 14px; /* Adjusted font size for button on small screens */
    }
}

        
        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
            }
    
            .carousel {
                height: 50vh;
            }
    
            .carousel-prev, .carousel-next {
                font-size: 20px;
                padding: 10px;
            }
    
            .our-games .content {
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
                width: 100%;
            }
    
            .our-games .logo-container {
                margin-bottom: 15px;
            }
    
            .our-games .logo-container img {
                max-width: 100px;
                height: auto;
            }
    
            .our-games .details {
                padding-left: 0;
                text-align: center;
                width: 100%;
            }
    
            .our-games .details h3 {
                font-size: 16px;
                margin-bottom: 10px;
            }
    
            .our-games, .about-us {
                margin: 0;
            }
    
            .our-games h2, .about-us h2 {
                margin: 0;
            }
    
            .our-games .details, .about-us .details {
                margin: 0;
                padding: 0;
            }
    
            .logo-container img {
                max-width: 100%;
                height: auto;
            }
    
            pre {
                display: none;
            }
    
            .our-games .details p {
                font-size: 12px;
                margin-bottom: 10px;
                padding: 0 10px;
            }
    
            .our-games .buttons {
                flex-direction: column;
                width: 100%;
                gap: 5px;
            }
    
            .our-games .buttons a {
                width: 90%;
                text-align: center;
                justify-content: center;
                padding: 8px;
                font-size: 12px;
            }
    
            .our-games .buttons a.download {
                background-color: #28a745;
            }
    
            .our-games .buttons a.redirect {
                background-color: #007bff;
            }
    
            .our-games .buttons a i {
                margin-right: 5px;
            }
        }
    
        /* Our Games Section */
        .our-games {
            padding: 20px;
            background-color: #f9f9f9;
        }
    
        .our-games h2 {
            margin: 0;
            font-size: 32px;
            text-align: center;
        }
    
        .our-games .content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
        }
    
        .our-games .logo-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }
    
        .our-games .logo-container img {
            max-width: 200px;
        }
    
        .our-games .details {
            flex: 2;
            padding-left: 20px;
        }
    
        .our-games .details h3 {
            margin: 0 0 10px 0;
            font-size: 24px;
        }
    
        .our-games .details p {
            margin: 0 0 20px 0;
            font-size: 16px;
        }
    
        .our-games .buttons {
            display: flex;
            gap: 10px;
        }
    
        .our-games .buttons a {
            text-decoration: none;
            color: #fff;
            padding: 10px 10px;
            border-radius: 5px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
    
        .our-games .buttons a.download {
            background-color: #28a745;
        }
    
        .our-games .buttons a.redirect {
            background-color: #007bff;
        }
    
        .our-games .buttons a i {
            margin-right: 8px;
        }
    
        /* About Us Section */
        .about-us {
            padding: 20px;
            background-color: #f2f2f2;
        }
    
        .about-us .content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
        }
    
        .about-us .logo-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }
    
        .about-us .logo-container img {
            max-width: 150px;
        }
    
        .about-us .details {
            flex: 2;
            padding-left: 20px;
        }
    
        .about-us .details h2 {
            margin: 0 0 10px 0;
            font-size: 28px;
        }
    
        .about-us .details p {
            font-size: 16px;
            margin: 0;
        }
    
        /* Footer Styling */
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px;
            font-size: 14px;
        }
    
        footer p {
            margin: 0;
        }
