/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(to bottom, #1B1F3B, #20232A);
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #6C63FF;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('background.jpg') no-repeat center center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    border: 2px solid #6C63FF;
    color: #fff;
    background: transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    background: #6C63FF;
    color: #000;
}

.btn-secondary {
    border-color: #FF6584;
}

.btn-secondary:hover {
    background: #FF6584;
    color: #000;
}

/* Footer */
footer {
    background: #20232A;
    padding: 20px;
    text-align: center;
}

footer .social-links img {
    width: 30px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

footer .social-links img:hover {
    filter: brightness(0.7) invert(1);
}
/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #20232A, #1B1F3B);
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Games Grid */
.games .game-grid, .games-list .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Contact Form */
.contact-form {
    padding: 50px 20px;
    text-align: center;
}

.contact-form form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    background: #6C63FF;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
/* General Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(27, 31, 59, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    height: 80px; /* Adjust to match larger logo height */
}

/* Logo Styling */
.navbar-logo {
    display: flex;
    align-items: center; /* Vertically aligns the logo */
}

.navbar-logo img {
    height: 80px; /* Larger logo size */
    width: auto; /* Maintain aspect ratio */
}

/* Navbar Links */
.navbar-links {
    display: flex;
    align-items: center; /* Vertically align the links with the logo */
    gap: 20px;
    list-style: none;
    margin: 0;
}

.navbar-links li a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

.navbar-links li a:hover {
    color: #6C63FF;
    text-shadow: 0 0 8px #6C63FF;
}

/* Mobile-Responsive Menu */
@media screen and (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar.active .navbar-links {
        display: flex;
        flex-direction: column;
        background: rgba(27, 31, 59, 0.95);
        position: absolute;
        top: 80px; /* Matches the navbar height */
        right: 20px;
        padding: 10px;
        border-radius: 10px;
    }

    .navbar-links li {
        margin-bottom: 10px;
    }
}
/* Games Section */
.games-section {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1B1F3B, #20232A);
    color: #ffffff;
}

.games-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #6C63FF;
}

.games-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Game Card */
.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #6C63FF;
    border-radius: 10px;
    font-size: 1.2rem;
    font-style: italic;
    color: #6C63FF;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #dddddd;
}

.game-info .btn {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    background: #6C63FF;
    text-transform: uppercase;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.game-info .btn:hover {
    background: #FFC947;
    color: #1B1F3B;
}
/* Coming Soon Game Card */
.coming-soon {
    opacity: 0.5; /* Dim the card to indicate it's not available yet */
    position: relative;
}

.coming-soon .game-info h3 {
    text-decoration: line-through; /* Cross out the title */
    color: #ff6584; /* Optional: Red color for "Coming Soon" */
}

.coming-soon .game-info p {
    font-style: italic;
    color: #ffc947; /* Yellow "Coming Soon" text */
}

/* Optional: Overlay for Coming Soon */
.coming-soon::after {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffc947;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}
/* Studio Header Section */
.studio-header {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1B1F3B, #20232A);
    color: #ffffff;
}

.studio-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #6C63FF;
}

.studio-header p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #dddddd;
}

/* Mission and Vision Sections */
.studio-mission,
.studio-vision {
    padding: 50px 20px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.studio-mission h2,
.studio-vision h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFC947;
}

.studio-mission p,
.studio-vision p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    color: #dddddd;
}

/* Team Section */
.studio-team {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #20232A, #1B1F3B);
    color: #ffffff;
}

.studio-team h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFC947;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.member-photo {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #6C63FF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #6C63FF;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1rem;
    color: #dddddd;
}
/* Contact Header */
.contact-header {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1B1F3B, #20232A);
    color: #ffffff;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #6C63FF;
}

.contact-header p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #dddddd;
}

/* Contact Form Section */
.contact-form {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #ffffff;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFC947;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #6C63FF;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaaaaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFC947;
}

.contact-form button {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    background: #6C63FF;
    text-transform: uppercase;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background: #FFC947;
    color: #1B1F3B;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #1B1F3B;
    color: #ffffff;
}

footer .social-links img {
    width: 30px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

footer .social-links img:hover {
    filter: brightness(0.7) invert(1);
}