:root {
    --navy: #214082;
    --deep-space: #0a0f1d;
    --accent-blue: #3b82f6;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--deep-space);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scrollbar-color: var(--navy) var(--deep-space);
    scrollbar-width: thin; /* Optional: makes the scrollbar thinner */
}

/* For WebKit and Chromiums (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
  width: 12px; /* Adjust width as needed */
  background-color: var(--deep-space); /* Color of the entire scrollbar area */
}

body::-webkit-scrollbar-track {
  background: var(--deep-space); /* Color of the track */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--navy); /* Color of the draggable handle */
  border-radius: 6px; /* Optional: adds roundness to the thumb */
  border: 3px solid var(--deep-space); /* Optional: creates padding around the thumb */
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}

.nav-icon { height: 32px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover { color: white; }

.contact-pill {
    padding: 8px 20px;
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    color: var(--accent-blue) !important;
}

/* Cinematic Hero */
.cinematic-hero {
    height: 101vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #214082 0%, #08112d 70%);
    border-bottom: 2px solid white;
}

.hero-logo {
    max-width: 600px;
    width: 80%;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.subtitle {
    letter-spacing: 6px;
    font-size: 0.9rem;
    color: var(--text-dim);
    animation: fadeIn 2s ease-out;
}

/* Project Showcase */
.project-showcase { padding: 120px 40px; max-width: 1400px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }

.tag {
    color: var(--accent-blue);
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 800;
}

h2 { font-size: 2.5rem; letter-spacing: 2px; margin-top: 10px; }

.featured-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #111827 0%, #0a0f1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.game-info { padding: 60px; display: flex; flex-direction: column; justify-content: center; }

.game-info h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--accent-blue); }

.ghost-btn {
    width: fit-content;
    margin-top: 30px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.ghost-btn:hover { background: white; color: black; }

.game-visual {
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-motif { width: 10%; opacity: 0.2; }

/* Studio Culture */
.studio-culture { padding: 100px 40px; background: #f8fafc; color: var(--deep-space); }

.culture-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.values { list-style: none; margin-top: 30px; }

.values li { margin-bottom: 15px; padding-left: 20px; border-left: 3px solid var(--navy); }

.culture-logo-feature {
    width: 100%;
    max-width: 100px;
    filter: invert(1); /* Inverting the whiteout for the light background */
    display: block;
    margin: 0 auto;
}

/* Footer */
footer { padding: 80px 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-mini-logo { height: 40px; opacity: 0.4; }

.socials a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    margin-left: 20px;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
