/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background-color: #1c1c1c;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    width: 100%;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #39c0ed;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0 auto; /* Centers the menu */
    padding: 0;
}

.nav-menu.centered {
    flex: 1;
    justify-content: center; /* Centers the menu in the middle of the screen */
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #7fdbff;
    font-weight: 500;
    padding: 5px 10px;
}

.nav-menu li a:hover {
    color: #39c0ed;
}

.hero-section {
    background-image: url('Webp.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 80px; /* Offset for fixed header */
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fade-in-slide-up 1.5s ease-out;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 15px #39c0ed;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #d4d4d4;
}

.btn {
    background-color: #39c0ed;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1c97b8;
}

.about-section, .features-section, .download-section {
    padding: 80px 40px;
    text-align: center;
    animation: fade-in 1.5s ease-out;
}

.about-section h2, .features-section h2, .download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #7fdbff;
    text-shadow: 0 0 10px #39c0ed;
}

.about-section p, .download-section p {
    font-size: 1.25rem;
    color: #b0b0b0;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    animation: fade-in 2s ease-out;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #e0e0e0;
}

.feature-list-wiki {
    list-style-type: none;
    padding: 0;
    animation: fade-in 2s ease-out;
}

.feature-list-wiki li {
    margin-bottom: 15px;
    font-size: 1.0rem;
    color: #e0e0e0;
}

.feature-list-wiki li a {
    text-decoration: none;
    color: #7fdbff;
    font-weight: 500;
    padding: 5px 10px;
}

.feature-list-wiki li a:hover {
    color: #39c0ed;
}

/* Form Section */
.form-section {
    padding: 80px 40px;
    text-align: center;
}

.form-container {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

form p {
    margin-bottom: 20px;
}

form label {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #7fdbff;
}

form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #39c0ed;
    border-radius: 5px;
    background-color: #121212;
    color: #e0e0e0;
    font-size: 1rem;
}

.form-section h3 {
    font-size: 2rem;
    margin-top: -5px;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 15px #39c0ed;
}

form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #39c0ed;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #1c97b8;
}

/* Container for Scrolling Gallery */
.scrolling-gallery {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 80px; /* Adjust based on header size */
    height: 200px; /* Adjust height as needed to fit images without cutting */
    padding: 20px; /* Padding to prevent cut-off at the bottom */
}

/* Scrolling Images */
.scrolling-images {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    top: 0; /* Ensures images start at the top */
    left: 0;
    animation: scroll-left 30s linear infinite;
}

.scrolling-images img {
    display: inline-block;
    width: 300px; /* Ensure consistent width */
    height: 200px; /* Ensure consistent height */
    margin-right: 20px; /* Spacing between images */
    border-radius: 15px; /* Smooth corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Shadow effect */
    transition: transform 0.5s ease-in-out;
    position: relative;
    top: 0; /* Ensure no shifting */
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); /* Adjust for float effect */
    }
}

/* Smooth Scrolling Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Trailer Section */
.trailer-section {
    padding: 80px 40px;
    text-align: center;
    background-color: #1c1c1c;
    color: #e0e0e0;
}

.trailer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #7fdbff;
    text-shadow: 0 0 10px #39c0ed;
}

.trailer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


footer {
    background-color: #1c1c1c;
    color: #7f7f7f;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333;
    animation: fade-in 2s ease-out;
}

/* Animations */
@keyframes fade-in-slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
