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

:root {
    --gold: #D4AF37;
    --gold-light: #F0C84A;
    --dark-bg: #0A0A0A;
    --dark-surface: #111111;
    --dark-card: #181818;
    --dark-border: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ─── LANGUAGE SWITCHER ───────────────────────────── */
.lang-switcher {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--dark-border);
    padding: 6px 28px 6px 10px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color 0.2s, color 0.2s;
}

.lang-switcher:hover,
.lang-switcher:focus {
    border-color: var(--gold);
    color: var(--text-primary);
}

.lang-switcher option {
    background: #1a1a1a;
    color: var(--text-primary);
}

.btn-download {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-download:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 80px 60px;
    gap: 60px;
    background: radial-gradient(ellipse 70% 80% at 60% 50%, #1a1508 0%, var(--dark-bg) 65%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 5px 14px;
    font-family: 'Arial', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero h1 .highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 420px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold);
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-primary .arrow {
    font-size: 1rem;
}

.hero-no-ads {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-no-ads svg {
    opacity: 0.6;
}

/* ─── DEVICE FRAMES ────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.devices-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    padding-bottom: 50px;
}

/* iPad Landscape Frame */
.ipad-frame {
    position: relative;
    margin-right: 55px;
    background: #1C1C1E;
    border-radius: 16px;
    padding: 12px 22px 12px 16px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.09),
        0 0 0 3px rgba(0,0,0,0.5),
        0 8px 32px rgba(0,0,0,0.7),
        0 24px 60px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

/* iPad front camera — right edge in landscape */
.ipad-camera {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #2a2a2c;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.ipad-screen {
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.ipad-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* iPhone Portrait Frame */
.iphone-frame {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 140px;
    background: #1C1C1E;
    border-radius: 28px;
    padding: 18px 8px 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 0 3px rgba(0,0,0,0.6),
        0 8px 32px rgba(0,0,0,0.85),
        0 20px 48px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.06);
    z-index: 2;
}

/* Dynamic Island */
.iphone-notch {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 17px;
    background: #000;
    border-radius: 20px;
    z-index: 3;
}

/* Volume buttons */
.iphone-side-btn {
    position: absolute;
    left: -3px;
    top: 78px;
    width: 3px;
    height: 26px;
    background: #2e2e30;
    border-radius: 2px 0 0 2px;
}

.iphone-side-btn.vol-down {
    top: 112px;
}

.iphone-side-btn.silent {
    top: 50px;
    height: 16px;
}

/* Power button */
.iphone-power-btn {
    position: absolute;
    right: -3px;
    top: 86px;
    width: 3px;
    height: 34px;
    background: #2e2e30;
    border-radius: 0 2px 2px 0;
}

.iphone-screen {
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.iphone-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* Home indicator bar */
.iphone-home-bar {
    margin: 7px auto 0;
    width: 46px;
    height: 3px;
    background: rgba(255,255,255,0.22);
    border-radius: 2px;
}

/* ─── SECTION SHARED ──────────────────────────────── */
section {
    padding: 120px 80px;
}

.section-eyebrow {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-body {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
}

/* ─── PHASES ──────────────────────────────────────── */
.phases {
    background: var(--dark-surface);
}

.phases-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.phase-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 40px 36px;
    transition: border-color 0.2s, transform 0.2s;
}

.phase-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}

.phase-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.phase-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.phase-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.phase-desc {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.phase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phase-list li {
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.phase-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* Chess piece images */
.icon-pawn, .icon-knight, .icon-king {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ─── AI SECTION ──────────────────────────────────── */
.ai-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    background: var(--dark-bg);
}

/* ─── CASUAL PLAY SECTION ────────────────────────── */
.casual-section {
    background: var(--dark-surface);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.casual-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.casual-feature-list li {
    font-family: 'Arial', sans-serif;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.55;
}

.casual-feature-list li .feat-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 1px;
}

.casual-screenshot-wrap {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.06);
    overflow: hidden;
}

.casual-steps-tabs {
    display: flex;
    border-bottom: 1px solid var(--dark-border);
}

.casual-step-tab {
    flex: 1;
    padding: 12px 8px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: background 0.15s;
}

.casual-step-tab:hover {
    background: rgba(255,255,255,0.03);
}

.casual-step-tab.active {
    border-bottom-color: var(--gold);
    background: rgba(212,175,55,0.05);
}

.casual-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}

.casual-step-tab.active .casual-step-num {
    background: var(--gold);
    color: #000;
}

.casual-step-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
    transition: color 0.15s;
}

.casual-step-tab.active .casual-step-label {
    color: var(--text-primary);
}

.casual-step-panel {
    display: none;
}

.casual-step-panel.active {
    display: block;
}

.casual-step-panel img {
    width: 100%;
    height: auto;
    display: block;
}

.elo-slider-wrap {
    margin-top: 40px;
}

.elo-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.elo-track {
    height: 4px;
    background: var(--dark-border);
    border-radius: 2px;
    position: relative;
}

.elo-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, #4A90D9, var(--gold));
    border-radius: 2px;
}

.elo-thumb {
    position: absolute;
    top: 50%;
    left: 78%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #000;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

.elo-current {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
}

/* puzzle panel */
.puzzle-panel {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 32px;
}

.puzzle-stat {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.puzzle-stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.puzzle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.puzzle-tag {
    font-family: 'Arial', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.puzzle-tag:hover,
.puzzle-tag.active {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── PASS AND PLAY SECTION ──────────────────────────── */
.pass-play-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    background: var(--dark-bg);
}

/* ─── OPENING VAULT ───────────────────────────────── */
.opening-vault {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    background: var(--dark-surface);
}

/* iPad portrait bezel */
.ipad-bezel {
    position: relative;
    width: 350px;
    margin: 0 auto;
    background: #1A1A1C;
    border-radius: 40px;
    padding: 60px 20px 72px;
    box-shadow:
        0 0 0 1.5px #3A3A3C,
        0 0 0 3px #0A0A0A,
        0 24px 60px rgba(0,0,0,0.7),
        inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Home bar */
.ipad-bezel::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
}

/* Front camera dot */
.ipad-bezel::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2C2C2E;
    border-radius: 50%;
    box-shadow: 0 0 0 1.5px #3A3A3C;
}

.ipad-bezel .ipad-screen {
    width: 100%;
    aspect-ratio: 1640/2360;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.ipad-bezel .ipad-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.vault-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.vault-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vault-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.vault-feature-text h4 {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.vault-feature-text p {
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ─── FOCUS SECTION ───────────────────────────────── */
.focus-section {
    text-align: center;
    background: var(--dark-bg);
}

.focus-section .section-body {
    margin: 0 auto 72px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 860px;
    margin: 0 auto 64px;
}

.focus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.focus-icon {
    width: 52px;
    height: 52px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.focus-item h4 {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.focus-item p {
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.platform-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.platform-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
}

/* ─── CTA ─────────────────────────────────────────── */
.cta-section {
    text-align: center;
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
}

.cta-section .section-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 16px;
}

.cta-section .section-body {
    margin: 0 auto 48px;
    text-align: center;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gold);
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.app-store-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.app-store-btn svg {
    width: 20px;
    height: 20px;
}

.cta-note {
    margin-top: 24px;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    padding: 48px 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-nav {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-nav-col h5 {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-col ul li a {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-bottom img {
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

/* ─── DIVIDER ─────────────────────────────────────── */
.divider {
    height: 1px;
    background: var(--dark-border);
    margin: 0 80px;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { gap: 20px; }

    .hero,
    .ai-section,
    .casual-section,
    .pass-play-section,
    .opening-vault {
        grid-template-columns: 1fr;
        padding: 100px 32px 60px;
    }

    /* hero-visual renders below hero-content on mobile (natural DOM order) */
    .hero-visual { margin-top: 80px; }

    /* opening-vault: copy above ipad on mobile */
    .opening-vault .ipad-bezel { order: 1; }

    section { padding: 80px 32px; }

    .phases-grid { grid-template-columns: 1fr; }
    .focus-grid  { grid-template-columns: 1fr; }

    footer { padding: 40px 32px; }
    .footer-nav { gap: 32px; }
    .divider { margin: 0 32px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .lang-switcher { font-size: 0.7rem; padding: 5px 22px 5px 8px; }
    .hero h1 { font-size: 2.6rem; }
}
