body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0e0e0e;
    color: #eaeaea;
}

header {
    padding: 3rem;
    text-align: center;
}

section {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        rgba(6, 53, 20, 0.85),
        rgba(16, 10, 100, 0.85)
    );
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.tagline {
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.85;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.btn.primary {
    background-color: #8b0000;
    color: white;
}

.btn.secondary {
    border: 2px solid #8b0000;
    color: #8b0000;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.gameplay-video {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.hidden {
    display: none;
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.trailer-container {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}

.trailer-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #ccc;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.contact {
    max-width: 900px;
    margin: auto;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: #151515;
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card a {
    color: #455cdf;
    text-decoration: none;
    font-weight: bold;
}