/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo', sans-serif;
}

body {
    background-color: #101010;
    color: #fff;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #181818;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ffcc;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('mainbg.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
}

.btn {
    background-color: #00ffcc;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Games Section */
/* Games Section */
.games-section {
    padding: 50px;
    background-color: #202020;
}

.game-cards {
    display: flex;
    justify-content: space-between;
}

.game-card {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.game-card img {
    max-width: 100%;
    border-radius: 10px;
}

.game-btn {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding for button size */
    font-size: 16px; /* Adjust font size */
    font-weight: bold;
    color: white;
    background-color: #ff4500; /* Bright orange for gaming theme */
    border: none;
    border-radius: 5px; /* Smooth edges */
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth hover effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
}

.game-btn:hover {
    background-color: #ff6347; /* Slightly lighter orange on hover */
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5); /* More pronounced shadow */
}


/* News Section */
.news-section {
    padding: 50px;
    background-color: #181818;
}

.news-carousel {
    display: flex;
    overflow-x: scroll;
}

.news-item {
    background-color: #2a2a2a;
    padding: 20px;
    margin-right: 20px;
    border-radius: 10px;
}

/* Featured Video Section */
.featured-video-section {
    background-color: #000000; /* Light background color */
    padding: 40px 20px;
    text-align: center;
}

.featured-video-section h2 {
    font-size: 2em;
    color: #ffffff; /* Dark text color for the heading */
    margin-bottom: 20px;
}

.video-container {
    max-width: 1000px; /* Set maximum width for the video */
    margin: 0 auto; /* Center the video */
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About Us Section */
.about-section {
    padding: 50px;
    background-color: #181818;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.team-timeline {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}

.team-timeline h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00ffcc;
}

.team-timeline ul {
    list-style-type: none;
    padding-left: 0;
}

.team-timeline ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.team-timeline ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ffcc;
    font-size: 24px;
}

/* Contact Section */
.contact-section {
    padding: 50px;
    background-color: #202020;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
}

.contact-section a.email-link {
    color: #00ffcc;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a.email-link:hover {
    color: #00e6b2;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #101010;
    color: #fff;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Join Our Team Section */
.join-section {
    padding: 50px;
    background-color: #181818;
    text-align: center;
    color: white;
}

.join-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.join-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-btn {
    display: inline-block;
    background-color: #00ffcc;
    color: #000;
    padding: 15px 30px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.join-btn:hover {
    background-color: #00e6b2;
}

/* Ensure Footer Stays at Bottom */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: #101010;
    color: #fff;
    text-align: center;
}

/* Legal Info Links */

.legal-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

.legal-link:hover {
    color: #00ffcc;
    /* Hover color */
    text-decoration: none;
}

/* Centered Heading for Privacy Policy, TOS, and Data Usage Pages */
.center-heading {
    text-align: center;
    margin-top: 20px;
    color: white;
    font-size: 28px;
}

/* for souls game */
.down-section {
    padding: 50px;
    background-color: #181818;
    color: white;
}

.down-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.down-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.down-btn {
    display: inline-block;
    background-color: #00ffcc;
    color: #000;
    padding: 15px 30px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.down-btn:hover {
    background-color: #00e6b2;
}

.downl {
    text-align: center;
}

/* Social Links Section */
.social-links {
    text-align: center;
    padding: 20px 0;
    background-color: #111; /* Adjust background color if needed */
    color: white;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
}

.social-icons a {
    text-decoration: none;
    color: white; /* Icon color */
    font-size: 25px; /* Adjust size of icons */
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2); /* Icon grows when hovered */
}

/* General styles remain unchanged */

/* Media Queries for Tablets and Smaller Devices */
@media (max-width: 768px) {
    /* Navigation Bar */
    nav {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links li {
        margin-right: 0;
    }

    /* Hero Section */
    .hero {
        height: 80vh; /* Reduce height for smaller screens */
        background-position: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 15px;
    }

    /* Games Section */
    .games-section {
        padding: 30px;
    }

    .game-cards {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        width: 90%;
        margin-bottom: 20px;
    }

    /* News Section */
    .news-carousel {
        display: block;
    }

    /* About Us Section */
    .about-section h2 {
        font-size: 28px;
    }

    .about-section p {
        font-size: 16px;
    }

    /* Team Timeline */
    .team-timeline h3 {
        font-size: 22px;
    }

    .team-timeline ul li {
        font-size: 16px;
    }

    /* Contact Section */
    .contact-section h2 {
        font-size: 28px;
    }

    .contact-section p {
        font-size: 16px;
    }

    /* Footer */
    footer {
        padding: 10px;
        font-size: 14px;
    }
}

/* Media Queries for Mobile Devices */
@media (max-width: 480px) {
    /* Navigation Bar */
    nav {
        padding: 8px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .logo {
        font-size: 20px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Games Section */
    .game-card img {
        max-width: 100%;
        height: auto;
    }

    /* News Section */
    .news-item {
        font-size: 14px;
        padding: 15px;
    }

    /* Social Links */
    .social-icons a {
        font-size: 20px;
    }

    /* Footer */
    footer p {
        font-size: 12px;
    }
}
