﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Trebuchet MS", system-ui, -apple-system, Segoe UI, sans-serif;
    background: #639126;
    color: #f8f7ed;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    line-height: 1.5
}

a {
    color: inherit
}

button,
input,
select,
textarea {
    font: inherit
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, transparent 2%, rgba(38, 195, 164, .06) 2%, rgba(38, 195, 164, .06) 3%, transparent 3%), radial-gradient(circle at 75% 75%, transparent 2%, rgba(249, 174, 67, .05) 2%, rgba(249, 174, 67, .05) 3%, transparent 3%);
    background-size: 80px 80px;
    animation: grid-move 30s linear infinite;
    z-index: -3
}

.gradient-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(23, 126, 119, .34) 0%, transparent 45%), radial-gradient(circle at 80% 45%, rgba(244, 144, 58, .22) 0%, transparent 48%), linear-gradient(180deg, #071716 0%, #0a2530 46%, #08231f 100%);
    z-index: -2;
    animation: gradient-shift 16s ease-in-out infinite
}

.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(transparent 50%, rgba(248, 247, 237, .018) 50%);
    background-size: 100% 4px;
    animation: scanlines 8s linear infinite;
    z-index: 2
}

.shapes-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1
}

.shape {
    position: absolute;
    opacity: .13
}

.shape-circle {
    width: 300px;
    height: 300px;
    border: 2px solid #24c3a4;
    border-radius: 50%;
    top: 10%;
    left: 8%;
    animation: float-rotate 20s ease-in-out infinite
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(243, 166, 55, .22);
    top: 58%;
    right: 12%;
    animation: float-rotate 25s ease-in-out infinite reverse
}

.shape-square {
    width: 150px;
    height: 150px;
    border: 2px solid #5ac8f5;
    transform: rotate(45deg);
    bottom: 18%;
    left: 18%;
    animation: float-rotate 22s ease-in-out infinite
}

.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #f6b846;
    box-shadow: 0 0 14px #f6b846;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    animation: float-up 15s linear infinite
}

@keyframes float-up {
    0% {
        transform: translateY(105vh);
        opacity: 0
    }

    12%,
    86% {
        opacity: .85
    }

    100% {
        transform: translateY(-10vh);
        opacity: 0
    }
}

@keyframes grid-move {
    to {
        transform: translate(80px, 80px)
    }
}

@keyframes gradient-shift {
    50% {
        filter: hue-rotate(12deg) brightness(1.08);
        transform: scale(1.03)
    }
}

@keyframes scanlines {
    to {
        transform: translateY(10px)
    }
}

@keyframes float-rotate {

    0%,
    100% {
        transform: translateY(0) rotate(0) scale(1)
    }

    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.07)
    }

    50% {
        transform: translateY(20px) rotate(180deg) scale(.94)
    }

    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.02)
    }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 42px;
    background: rgba(133, 134, 41, 0.82);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: .3s ease;
    border-bottom: 1px solid rgba(246, 184, 70, .18)
}

nav.scrolled {
    padding: 12px 42px;
    background: rgba(133, 134, 41, 0.82);
    box-shadow: 0 10px 34px rgba(5, 18, 20, .45)
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    min-width: max-content
}

.logo-svg {
    width: 42px;
    height: 42px
}

.logo-text,
.section-title,
.glitch-text,
.cta-button,
.nav-links a,
.nav-play,
.submit-btn {
    font-family: Georgia, "Times New Roman", serif
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #f7b84d, #26c3a4, #70d6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s ease-in-out infinite
}

.nav-links {
    display: flex;
    gap: 16px;
    list-style: none;
    align-items: center
}

.nav-links a,
.nav-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    text-decoration: none;
    color: #f8f7ed;
    position: relative;
    transition: .25s ease;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
    opacity: .78;
    border: 1px solid transparent
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #f6b846;
    border-color: rgba(246, 184, 70, .55);
    box-shadow: inset 0 0 12px rgba(246, 184, 70, .18)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-play {
    background: linear-gradient(45deg, #f6a541, #24b99c);
    border-color: rgba(255, 255, 255, .14);
    border-radius: 6px;
    opacity: 1;
    color: #08201d
}

.language-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.language-select {
    max-width: 180px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(246, 184, 70, .35);
    border-radius: 6px;
    padding: 9px 30px 9px 10px
}

.language-select option {
    color: #071716
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #f6b846;
    transition: .3s
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 110px 20px 60px
}

.bassora-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 44px;
    max-width: 1240px;
    margin: 0 auto
}

.compact-hero {
    min-height: 55vh
}

.hero-content {
    text-align: left;
    animation: fade-in-up 1s ease-out;
    z-index: 10;
    width: 100%
}

.text-rotator {
    position: relative;
    min-height: 210px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    width: 100%
}

.text-rotator.single {
    min-height: 120px;
    justify-content: center;
    text-align: center
}

.text-set {
    position: absolute;
    width: 100%;
    opacity: 0;
    display: none
}

.text-set.active {
    opacity: 1;
    display: block
}

.glitch-text {
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(246, 184, 70, .45);
    position: relative;
    line-height: 1
}

.page-hero .glitch-text {
    font-size: clamp(2.4rem, 6vw, 4.8rem)
}

.glitch-text:before,
.glitch-text:after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .38
}

.glitch-text:before {
    color: #24c3a4;
    transform: translate(-2px, 1px)
}

.glitch-text:after {
    color: #f6a541;
    transform: translate(2px, -1px)
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(44px);
    animation: charFlyIn .5s ease-out forwards
}

.char.out {
    animation: charFlyOut .3s ease-in forwards
}

@keyframes charFlyIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes charFlyOut {
    to {
        opacity: 0;
        transform: translateY(-25px) rotateX(80deg)
    }
}

.subtitle {
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    margin: 22px 0;
    color: #e8efe7;
    opacity: .82;
    max-width: 700px
}

.cta-container {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.cta-button {
    padding: 12px 24px;
    border: 0;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .25s ease;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
    border-radius: 6px
}

.cta-primary {
    background: linear-gradient(45deg, #f4a03a, #26c3a4);
    color: #061b18;
    box-shadow: 0 0 30px rgba(246, 184, 70, .28)
}

.cta-secondary {
    background: rgba(255, 255, 255, .04);
    color: #f6b846;
    border: 2px solid rgba(246, 184, 70, .62)
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(10, 40, 42, .42)
}

.hero-preview {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .42);
    min-height: 320px;
    background: #0d2b2c
}

.hero-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.features,
.about,
.contact,
.game-section,
.legal-section {
    padding: 90px 20px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 44px;
    background: linear-gradient(45deg, #f6b846, #26c3a4, #70d6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase
}

.section-intro {
    max-width: 860px;
    margin: -20px auto 36px;
    text-align: center;
    font-size: 1.16rem;
    color: #dcece6
}

.game-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start
}

.game-shell {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(246, 184, 70, .24);
    border-radius: 8px;
    padding: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
    touch-action: manipulation
}

.game-shell.large {
    max-width: 1100px;
    margin: 0 auto
}

.game-topbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px
}

.game-shell.large .game-topbar {
    grid-template-columns: repeat(5, 1fr)
}

.game-topbar div {
    background: rgba(2, 15, 18, .55);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 8px 10px;
    text-align: center;
    color: #dff7ef
}

.game-topbar strong {
    color: #f6b846
}

.game-canvas-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #092a34;
    border: 1px solid rgba(255, 255, 255, .12);
    touch-action: none
}

.game-canvas {
    width: 100%;
    height: 100%;
    display: block;
    outline: none;
    touch-action: none
}

.game-canvas:focus {
    box-shadow: inset 0 0 0 3px rgba(246, 184, 70, .75)
}

.game-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 26px;
    background: linear-gradient(180deg, rgba(5, 18, 20, .74), rgba(5, 18, 20, .38));
    z-index: 5
}

.game-overlay.hidden {
    display: none
}

.game-overlay h3 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #f6b846;
    margin-bottom: 12px
}

.game-overlay p {
    max-width: 640px;
    margin: 0 auto 18px;
    color: #eef8f0
}

.location-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0
}

.location-bar button,
.game-controls button,
.cookie-actions button {
    border: 1px solid rgba(246, 184, 70, .32);
    background: rgba(255, 255, 255, .08);
    color: #f8f7ed;
    border-radius: 6px;
    padding: 10px 12px;
    cursor: pointer;
    transition: .2s
}

.location-bar button.active,
.game-controls button:active,
.cookie-actions button:hover {
    background: linear-gradient(45deg, rgba(246, 184, 70, .9), rgba(38, 195, 164, .85));
    color: #061b18
}

.game-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 8px
}

.game-message {
    min-height: 28px;
    margin-top: 12px;
    color: #f6d88b;
    text-align: center
}

.instruction-card,
.feature-tabs,
.feature-content,
.contact-form,
.support-panel,
.guide-card,
.media-card,
blockquote,
.step-grid article,
.contact-preview-box,
.legal-content article {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(246, 184, 70, .22);
    border-radius: 8px;
    backdrop-filter: blur(12px)
}

.instruction-card {
    padding: 24px
}

.instruction-card h3,
.guide-card h3,
.media-card h3,
.preview-copy h3,
.contact-info h3,
.legal-content h3 {
    color: #f6b846;
    margin-bottom: 12px
}

.instruction-card ol {
    padding-left: 22px
}

.instruction-card li {
    margin: 10px 0
}

.notice {
    margin-top: 18px;
    color: #fff4c4;
    background: rgba(246, 184, 70, .1);
    border-left: 3px solid #f6b846;
    padding: 12px
}

.features-container {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 34px;
    align-items: start
}

.feature-tabs {
    padding: 18px
}

.tab-item {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: .25s ease;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.02rem;
    background: transparent;
    color: #fff;
    text-align: left
}

.tab-item:hover,
.tab-item.active {
    background: linear-gradient(45deg, rgba(246, 184, 70, .18), rgba(38, 195, 164, .16));
    border-color: rgba(246, 184, 70, .65)
}

.tab-icon {
    font-size: 1.2rem;
    color: #70d6ff
}

.feature-content {
    padding: 34px;
    min-height: 260px
}

.content-panel {
    display: none;
    animation: fadeIn .45s ease
}

.content-panel.active {
    display: block
}

.content-panel h3,
.about-text h2 {
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    margin-bottom: 18px;
    color: #f6b846
}

.content-panel p,
.about-text p,
.legal-content p {
    color: #d9e9e1;
    margin-bottom: 18px
}

.feature-list {
    list-style: none;
    margin-top: 16px
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #e5eee9
}

.feature-list li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: #26c3a4;
    font-weight: 900
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px
}

.media-card {
    overflow: hidden
}

.media-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block
}

.media-card h3,
.media-card p,
.guide-card,
blockquote {
    padding: 18px
}

.media-card p {
    padding-top: 0;
    color: #dbeae2
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 44px;
    align-items: center
}

.about-visual {
    min-height: 340px;
    display: grid;
    place-items: center
}

.fish-visual img {
    max-width: min(420px, 90%);
    filter: drop-shadow(0 20px 44px rgba(246, 184, 70, .28))
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.step-grid article {
    padding: 22px
}

.step-grid span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f6b846;
    color: #061b18;
    font-weight: 900;
    margin-bottom: 14px
}

.preview-strip {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: center;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    overflow: hidden
}

.preview-strip img {
    width: 100%;
    height: 340px;
    object-fit: cover
}

.preview-copy {
    padding: 26px
}

.reviews blockquote p {
    font-size: 1.1rem;
    color: #f4f7ef
}

.reviews cite {
    display: block;
    margin-top: 12px;
    color: #70d6ff
}

.faq-list {
    max-width: 900px;
    margin: 0 auto
}

.faq-list details {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(246, 184, 70, .2);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 16px
}

.faq-list summary {
    cursor: pointer;
    color: #f6b846;
    font-weight: 800
}

.faq-list p {
    margin-top: 10px;
    color: #dcece6
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px
}

.contact-form {
    padding: 34px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #f6b846;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .9rem
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(246, 184, 70, .34);
    color: #fff;
    border-radius: 6px;
    transition: .25s
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f6b846;
    box-shadow: 0 0 0 3px rgba(246, 184, 70, .15)
}

.form-group textarea {
    min-height: 140px;
    resize: vertical
}

.checkbox-group {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px
}

.checkbox-group .field-error {
    grid-column: 1/-1
}

.field-error {
    min-height: 20px;
    color: #ffb6a6
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #f6a541, #26c3a4);
    color: #061b18;
    border: 0;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer
}

.form-status {
    margin-top: 16px;
    min-height: 26px;
    color: #a8ffd9
}

.contact-info {
    padding: 18px
}

.info-item {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 18px
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #f6a541, #26c3a4);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #061b18;
    font-weight: 900
}

.support-panel {
    padding: 18px
}

.legal-section {
    max-width: 980px
}

.legal-content {
    display: grid;
    gap: 18px
}

.legal-content article {
    padding: 22px
}

.center-notice {
    text-align: center;
    max-width: 900px;
    margin: 28px auto 0
}

footer {
    background: rgba(133, 134, 41, 0.82);
    border-top: 1px solid rgba(246, 184, 70, .22);
    padding: 42px 20px;
    text-align: center
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto
}

.footer-brand {
    font-size: 1.5rem;
    color: #f6b846;
    text-decoration: none;
    font-weight: 900
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin: 18px 0
}

.footer-links a {
    color: #f6b846;
    text-decoration: none
}

.footer-notice {
    max-width: 850px;
    margin: 16px auto;
    color: #fff4c4
}

.copyright {
    opacity: .72
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    background: rgba(5, 18, 20, .96);
    border: 1px solid rgba(246, 184, 70, .4);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45)
}

.cookie-banner.show {
    display: grid
}

.cookie-banner h2 {
    font-size: 1.2rem;
    color: #f6b846
}

.cookie-banner p {
    color: #dcece6
}

.cookie-actions {
    display: flex;
    gap: 10px
}

@keyframes glow {
    50% {
        filter: brightness(1.25)
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:980px) {
    nav {
        padding: 14px 20px
    }

    .nav-container {
        gap: 12px
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 18, 20, .97);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 42px;
        transition: left .3s
    }

    .nav-links.active {
        left: 0
    }

    .menu-toggle {
        display: flex
    }

    .nav-play {
        display: none
    }

    .bassora-hero,
    .game-layout,
    .features-container,
    .about-content,
    .preview-strip,
    .contact-container {
        grid-template-columns: 1fr
    }

    .hero-content {
        text-align: center
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto
    }

    .cta-container {
        justify-content: center
    }

    .hero-preview {
        min-height: 240px
    }

    .game-topbar,
    .game-shell.large .game-topbar {
        grid-template-columns: repeat(2, 1fr)
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        left: 10px;
        right: 10px
    }

    .cookie-actions {
        justify-content: stretch
    }

    .cookie-actions button {
        flex: 1
    }
}

@media (max-width:560px) {
    .hero {
        padding-top: 96px
    }

    .text-rotator {
        min-height: 190px
    }

    .glitch-text {
        font-size: clamp(2rem, 12vw, 3.2rem)
    }

    .section-title {
        font-size: 2rem
    }

    .features,
    .about,
    .contact,
    .game-section,
    .legal-section {
        padding: 64px 14px
    }

    .game-shell {
        padding: 10px
    }

    .game-controls {
        grid-template-columns: repeat(2, 1fr)
    }

    .location-bar button {
        flex: 1 1 45%
    }

    .language-select {
        max-width: 128px
    }

    .logo-text {
        font-size: 19px
    }

    .nav-container {
        align-items: center
    }

    .card-grid {
        grid-template-columns: 1fr
    }

    .preview-strip img {
        height: 220px
    }
}