/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f1115;
    color: #e2e8f0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: #1a1d24;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2d3748;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #3b82f6;
}

.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.9)), url('https://placehold.co/1920x1080/1a1d24/3b82f6?text=Studio+Background');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #94a3b8;
}

/* Buttons */
.btn, .btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn {
    background-color: #3b82f6;
    color: #fff;
    border: none;
}

.btn:hover {
    background-color: #2563eb;
}

.btn-outline {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: #fff;
}

/* Tags */
.tag-vr {
    background-color: #8b5cf6;
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 10px;
}
.tag-vr.large {
    font-size: 1.2rem;
}

/* Sections */
section { padding: 5rem 0; }
section h2 { font-size: 2.2rem; margin-bottom: 0.5rem; color: #fff; }
.section-subtitle { color: #94a3b8; margin-bottom: 3rem; }

/* Portfolio / Games */
.game-card {
    background-color: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #334155;
    max-width: 600px;
}

.game-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.game-card-content {
    padding: 2rem;
}

.game-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: #fff; }
.game-card p { margin-bottom: 1.5rem; color: #cbd5e1; }

/* Contact Form */
.contact-form {
    max-width: 600px;
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #334155;
}

.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; color: #cbd5e1; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #475569;
    background-color: #0f1115;
    color: #fff;
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}
#formStatus { margin-top: 15px; font-weight: bold; }

/* Scale Game Page Specifics */
.game-banner {
    width: 100%;
    height: 350px;
}
.game-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-info {
    max-width: 800px;
    margin: 0 auto;
}
.game-info h1 { font-size: 3rem; color: #fff; margin-bottom: 1rem; }
.game-info h3 { margin-top: 2rem; color: #fff; }
.game-info ul { margin-left: 20px; margin-top: 1rem; margin-bottom: 2rem; }
.legal-links { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #334155; }
.privacy-link { color: #94a3b8; text-decoration: underline; font-weight: bold; }

/* Privacy Policy Specifics */
.policy-container h1 { margin-bottom: 0.5rem; }
.policy-container h2 { margin-top: 2.5rem; font-size: 1.5rem; color: #fff; }
.policy-container p { margin-bottom: 1rem; }

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #1a1d24;
    border-top: 1px solid #2d3748;
    color: #64748b;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 10px;
}
.footer-links a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Mobile Responsiveness */
@media(max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: absolute;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #1a1d24;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid #2d3748;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 1.5rem 0; }
}