/* --- Dark Minimalist (Compact) --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    --bg-main: #09090b;
    --bg-card: #121212;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --accent: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(9, 9, 11, 0.8);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6; /* Slightly tighter line height */
    -webkit-font-smoothing: antialiased;
}

header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem; /* Reduced from 1.25rem */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-left: 2rem; /* Reduced from 2.5rem */
    transition: color 0.3s ease;
}

nav a:hover { color: var(--accent); }

/* --- Hero Section --- */
.hero {
    max-width: 800px;
    margin: 6rem auto; /* Reduced from 12rem */
    padding: 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem; /* Slightly smaller for compactness */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--accent);
}

.hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem auto; /* Reduced spacing */
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 2px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

/* --- Content Sections --- */
.section {
    max-width: 1200px;
    margin: 5rem auto; /* Reduced from 10rem */
    padding: 0 2rem;
}

.games-scroll-container {
    display: flex;
    gap: 1rem; /* Tighter gap */
    padding: 1.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.game-card {
    flex: 0 0 350px; /* Narrower cards */
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 200px; /* Shorter image height */
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.4s ease;
}

.game-card:hover .game-img { filter: grayscale(0); }

.game-info { padding: 1.25rem; }

/* --- Contact Section --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Reduced from 6rem */
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem 0;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
    font-family: inherit;
}

/* --- Experience & Footer --- */
.experience-section {
    padding: 4rem 0; /* Reduced from 8rem */
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-item {
    height: 64px;
    filter: invert(1);
    opacity: 0.3;
}

footer {
    padding: 3rem 2rem; /* Reduced from 6rem */
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .hero { margin: 4rem auto; }
    .section { margin: 3rem auto; }
    .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
}