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

:root {
    --bg: #ECEFF1;
    --bg-dark: #DDE3E7;
    --text: #2B2F33;
    --text-muted: #5F6368;
    --accent: #005EA8;
    --accent-light: #1E90FF;
    --border: #B8C1C7;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(236, 239, 241, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo img { height: 60px; width: auto; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent-light); }
.cta-link { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 4px; }
.cta-link:hover { border-color: var(--accent-light); color: var(--accent-light); }

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 4rem 4rem;
    position: relative;
    gap: 4rem;
}

.hero-content { flex: 1; }

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-visual { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    max-width: 3000px; 
}

.hero-image { 
    width: 140%;
    height: auto; 
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    transition: transform 0.2s, opacity 0.2s;
}

/* Sections */
.section { padding: 5rem 0; }
.section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.section-text { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; }
.dark { background: var(--bg-dark); }

/* Stats */
.stats { display: flex; gap: 4rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-number { font-size: 1.5rem; color: var(--text); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { padding: 2rem; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; transition: border-color 0.2s, box-shadow 0.2s; }
.service-card:hover { border-color: var(--accent-light); box-shadow: 0 4px 20px rgba(0, 94, 168, 0.2); }
.service-card h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Games */
.games-grid { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.game-card { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 2rem; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; min-width: 180px; }
.game-card:hover { border-color: var(--accent-light); transform: translateY(-4px); }
.game-icon { font-size: 2.5rem; }
.game-name { font-weight: 500; color: var(--text); }
.game-desc { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* Contact */
.contact { text-align: center; padding: 5rem 0; }
.contact-text { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2rem; }
.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; font-family: 'Inter', sans-serif; font-size: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; color: var(--text); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-light); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.contact-form .btn { align-self: center; }

/* Footer */
.footer { padding: 2rem 0; border-top: 1px solid var(--border); text-align: center; }
.footer p { font-size: 0.85rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
    .hero { flex-direction: column; padding: 7rem 1.5rem 3rem; gap: 2rem; text-align: center; }
    .hero-content { width: 100%; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-visual { width: 100%; max-width: 400px; }
}

@media (max-width: 600px) {
    .nav { padding: 1rem; }
    .nav-links { gap: 0.75rem; }
    .nav-links a:not(.cta-link) { display: none; }
    .hero { padding: 6rem 1rem 2rem; }
    .hero h1 { font-size: 3rem; }
    .tagline { font-size: 1rem; }
    .section { padding: 4rem 0; }
    .stats { gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
}
