/* ============================================
   Grički Top — Main Stylesheet
   Modern/Dark Theme
   ============================================ */

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

:root {
    --bg: #0a0a0a;
    --bg-light: #111;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text: #f5f0eb;
    --accent: #c8a45c;
    --accent-bright: #e0be72;
    --accent-dim: #8a7340;
    --gray: #888;
    --gray-dark: #444;
    --rust: #a0522d;
    --success: #4caf50;
    --danger: #e74c3c;
    --section-gap: 10vh;
    --max-content: 900px;
    --max-wide: 1100px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-bright); }

img { max-width: 100%; height: auto; display: block; }

/* ---- Language Switcher (dropdown) ---- */
.lang-switcher {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 92, 0.2);
    border-radius: 2rem;
    padding: 0.4rem 0.8rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lang-current:hover {
    border-color: var(--accent);
}

.lang-current::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--accent);
    transition: transform 0.3s;
}

.lang-switcher.open .lang-current::after {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 92, 0.2);
    border-radius: 10px;
    padding: 0.3rem;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 100%;
}

.lang-switcher.open .lang-dropdown {
    display: flex;
}

.lang-dropdown button {
    background: none;
    border: none;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
}

.lang-dropdown button:hover {
    background: rgba(200, 164, 92, 0.15);
    color: var(--accent);
}

.lang-dropdown button.active {
    color: var(--accent);
}

/* ---- Navigation ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.4s;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* Hamburger button */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 3.5rem;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.nav-open .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Section Labels ---- */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* ---- Hero ---- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(200, 164, 92, 0.08) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.hero > * { position: relative; z-index: 2; }

.hero-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.hero-overline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 500px;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent-dim);
    animation: pulse 2s infinite;
}

/* ---- Page Hero (shorter, for inner pages) ---- */
.page-hero {
    padding: 10rem 3rem 4rem;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(200, 164, 92, 0.06) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

.page-hero > * { position: relative; z-index: 2; }

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.page-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

/* ---- Countdown ---- */
.countdown-section {
    padding: 6rem 3rem;
    text-align: center;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.countdown {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text);
}

.countdown .unit {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.1em;
    margin: 0 0.5rem;
}

.countdown-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}

/* ---- Story Section ---- */
.story {
    padding: var(--section-gap) 3rem;
    max-width: var(--max-content);
    margin: 0 auto;
}

.story-header { margin-bottom: 4rem; }

.story h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.story p, .content-text p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #bbb;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.story p strong, .content-text p strong {
    color: var(--text);
    font-weight: 600;
}

/* ---- Timeline ---- */
.timeline {
    padding: var(--section-gap) 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 2px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-align: right;
    padding-top: 0.2rem;
}

.timeline-line {
    background: linear-gradient(to bottom, var(--accent), var(--accent-dim), transparent);
    border-radius: 1px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.timeline-content .detail {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ---- Info Cards ---- */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-content);
    margin: 0 auto;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 92, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--accent);
    background: rgba(200, 164, 92, 0.05);
    transform: translateY(-3px);
}

.info-card .icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.info-cards--2col {
    grid-template-columns: repeat(2, 1fr);
}

.card-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
}

/* ---- Visit Section ---- */
.visit {
    padding: var(--section-gap) 3rem;
    text-align: center;
    max-width: var(--max-content);
    margin-left: auto;
    margin-right: auto;
}

.visit h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.visit > p, .visit-intro {
    color: var(--gray);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 3rem;
}

/* ---- CTA Links ---- */
.cta-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(200, 164, 92, 0.3);
    border-radius: 2rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.cta-link:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* ---- Games Section ---- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 3rem 3rem 0;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid rgba(200, 164, 92, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--accent);
    background: rgba(200, 164, 92, 0.05);
    transform: translateY(-4px);
}

.game-card .game-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.game-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.game-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.play-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover { background: var(--accent-bright); }

/* ---- Game Container (active game) ---- */
.game-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.game-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.game-container .game-desc {
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 2rem;
}

.game-area {
    background: var(--bg-light);
    border: 1px solid rgba(200, 164, 92, 0.15);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

/* Clock display for Noon Shot game */
.clock-display {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.clock-display .ms {
    font-size: 0.5em;
    color: var(--accent);
}

/* Fire button */
.fire-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fire-btn:hover { background: #c0392b; transform: scale(1.05); }
.fire-btn:active { transform: scale(0.95); }

.fire-btn:disabled {
    background: var(--gray-dark);
    cursor: not-allowed;
    transform: none;
}

/* Score display */
.score-display {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(200, 164, 92, 0.08);
    border: 1px solid rgba(200, 164, 92, 0.2);
}

.score-display h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.score-display .score-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.score-display .score-detail {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.score-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-dark);
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray);
}

.share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.share-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* Power meter for Fire the Cannon game */
.power-meter {
    width: 100%;
    height: 40px;
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
    border: 1px solid var(--gray-dark);
}

.power-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--danger), var(--accent), var(--success), var(--accent), var(--danger));
    transition: none;
    border-radius: 20px;
}

.power-zone {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(76, 175, 80, 0.2);
    border-left: 2px solid var(--success);
    border-right: 2px solid var(--success);
}

/* Trivia styles */
.trivia-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.trivia-progress {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.trivia-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trivia-option {
    padding: 1rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--gray-dark);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.trivia-option:hover {
    border-color: var(--accent);
    background: rgba(200, 164, 92, 0.05);
}

.trivia-option.correct {
    border-color: var(--success);
    background: rgba(76, 175, 80, 0.15);
}

.trivia-option.wrong {
    border-color: var(--danger);
    background: rgba(231, 76, 60, 0.15);
}

.trivia-option:disabled { cursor: not-allowed; }

.trivia-fact {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(200, 164, 92, 0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: left;
    line-height: 1.6;
}

/* Cannon animation for Fire game */
.cannon-visual {
    font-size: 5rem;
    margin-bottom: 1rem;
    transition: transform 0.1s;
}

.cannon-visual.fired {
    animation: cannonFire 0.5s ease;
}

@keyframes cannonFire {
    0% { transform: rotate(0); }
    10% { transform: rotate(-15deg) scale(1.1); }
    30% { transform: rotate(5deg); }
    50% { transform: rotate(-3deg); }
    100% { transform: rotate(0); }
}

.boom-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.boom-text.show {
    animation: boomAnim 0.8s ease forwards;
}

@keyframes boomAnim {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    30% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover { color: var(--accent); }

/* ---- Content Grid (history page) ---- */
.content-section {
    padding: var(--section-gap) 3rem;
    max-width: var(--max-content);
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 2rem;
}

figure {
    margin: 2rem 0;
}

figure img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

figure.landscape img { aspect-ratio: 16/9; }
figure.portrait img { aspect-ratio: 3/4; }
figure.portrait { max-width: 500px; margin-left: auto; margin-right: auto; }
figure.square img { aspect-ratio: 1/1; }
figure.square { max-width: 500px; margin-left: auto; margin-right: auto; }

figcaption {
    font-size: 0.75rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
    text-align: right;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

/* ---- Footer ---- */
footer {
    padding: 4rem 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--section-gap);
}

footer .logo {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    list-style: none;
}

footer .footer-links a {
    color: var(--gray);
    font-size: 0.8rem;
    transition: color 0.3s;
}

footer .footer-links a:hover { color: var(--accent); }

/* ---- Animations ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Screen shake effect */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px) rotate(-0.5deg); }
    40% { transform: translateX(8px) rotate(0.5deg); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake { animation: shake 0.4s ease; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-burger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.5rem 0;
        margin-right: 0;
    }
    .nav-open .nav-links { display: flex; }
    .nav-links a {
        display: block;
        padding: 0.9rem 1.5rem;
    }
    .story, .timeline, .visit,
    .content-section, .game-container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .games-grid { padding: 0 1.5rem; grid-template-columns: 1fr; }
    .info-cards--2col { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 70px 2px 1fr; gap: 1rem; }
    .lang-switcher { top: 0.75rem; right: 1rem; }
    .page-hero { padding: 8rem 1.5rem 3rem; }
    .cta-row { flex-direction: column; align-items: center; }
}
