/* ===== CSS VARIABLES ===== */
:root {
    --hall-paper: #F4F2EE;
    --notice-beige: #E8E2D8;
    --ink: #12161C;
    --muted: #5A6672;
    --union-navy: #223A5A;
    --stamp-maroon: #6B2A2A;
    --brass-pin: #C6A15B;
    --focus-blue: #2E6F9E;
    --divider: rgba(18, 22, 28, 0.10);
    --shadow-subtle: 0 2px 8px rgba(18, 22, 28, 0.08);
    --shadow-medium: 0 4px 16px rgba(18, 22, 28, 0.12);
    --shadow-elevated: 0 8px 32px rgba(18, 22, 28, 0.16);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background-color: var(--hall-paper);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
}

.mono-text, .stat-value, code, .label {
    font-family: 'IBM Plex Mono', monospace;
}

/* ===== NAVIGATION ===== */
.regal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--hall-paper);
    border-bottom: 1px solid var(--divider);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--union-navy);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--muted);
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--union-navy);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--union-navy);
    outline: none;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link-active {
    color: var(--union-navy);
}

.nav-link-active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.regal-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--union-navy) 0%, #1a2d45 100%);
    overflow: hidden;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero.png') center/cover no-repeat;
    opacity: 0.15;
}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hall-paper);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--notice-beige);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: var(--brass-pin);
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(198, 161, 91, 0.3);
}

.hero-btn-primary:hover {
    background: #d4b56d;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(198, 161, 91, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--hall-paper);
    border: 2px solid var(--hall-paper);
}

.hero-btn-secondary:hover {
    background: var(--hall-paper);
    color: var(--union-navy);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.regal-about,
.regal-cta,
.regal-join,
.regal-games,
.regal-features {
    padding: 6rem 2rem;
}

.about-container,
.cta-container,
.join-container,
.games-container,
.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--union-navy);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--brass-pin);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    text-align: center;
}

.about-description {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--notice-beige);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--union-navy);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CTA SECTIONS ===== */
.regal-cta {
    background: var(--notice-beige);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--union-navy);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--union-navy);
    color: var(--hall-paper);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #2a4a6f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.regal-join {
    background: linear-gradient(135deg, var(--union-navy) 0%, #1a2d45 100%);
}

.join-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--hall-paper);
    margin-bottom: 1rem;
}

.join-text {
    font-size: 1.15rem;
    color: var(--notice-beige);
    margin-bottom: 2rem;
}

.join-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--brass-pin);
    color: var(--ink);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #d4b56d;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(198, 161, 91, 0.4);
}

/* ===== GAMES SECTION ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.game-card {
    background: var(--hall-paper);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
    border: 1px solid var(--divider);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.game-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--union-navy) 0%, #1a2d45 100%);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--brass-pin);
}

.game-info {
    padding: 2rem;
}

.game-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--union-navy);
}

.game-description {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.game-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--union-navy);
    color: var(--hall-paper);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.game-btn:hover {
    background: #2a4a6f;
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--notice-beige);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--divider);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--hall-paper);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--union-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-symbol {
    font-size: 2rem;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--union-navy);
}

.feature-description {
    color: var(--muted);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.regal-footer {
    background: var(--ink);
    color: var(--hall-paper);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-disclaimer {
    background: var(--stamp-maroon);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.disclaimer-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--hall-paper);
    color: var(--stamp-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--hall-paper);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--brass-pin);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--notice-beige);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--brass-pin);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    color: var(--notice-beige);
    font-size: 0.95rem;
}

.footer-responsible {
    background: rgba(198, 161, 91, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.responsible-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--brass-pin);
}

.responsible-text {
    color: var(--notice-beige);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.responsible-link {
    color: var(--brass-pin);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.responsible-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
}

.copyright {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 22, 28, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-modal-content {
    background: var(--hall-paper);
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    overflow: hidden;
    animation: slideUp 0.5s ease;
    box-shadow: var(--shadow-elevated);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-modal-header {
    background: var(--union-navy);
    padding: 1.5rem 2rem;
}

.age-modal-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.5rem;
    color: var(--hall-paper);
    margin: 0;
}

.age-modal-body {
    padding: 2rem;
}

.age-modal-text {
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.age-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-confirm {
    background: var(--union-navy);
    color: var(--hall-paper);
}

.age-btn-confirm:hover {
    background: #2a4a6f;
    transform: translateY(-2px);
}

.age-btn-deny {
    background: var(--notice-beige);
    color: var(--ink);
}

.age-btn-deny:hover {
    background: var(--stamp-maroon);
    color: var(--hall-paper);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--hall-paper);
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--brass-pin);
    color: var(--ink);
}

.cookie-btn-accept:hover {
    background: #d4b56d;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--hall-paper);
    border: 1px solid var(--hall-paper);
}

.cookie-btn-decline:hover {
    background: var(--hall-paper);
    color: var(--ink);
}

.cookie-link {
    color: var(--brass-pin);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding-top: 100px;
    min-height: 100vh;
}

.contact-hero {
    background: linear-gradient(135deg, var(--union-navy) 0%, #1a2d45 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--hall-paper);
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    color: var(--notice-beige);
    font-size: 1.15rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.contact-info-card {
    background: var(--notice-beige);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.5rem;
    color: var(--union-navy);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--union-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hall-paper);
}

.contact-details {
    color: var(--muted);
}

.contact-details h4 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-details p {
    font-size: 1rem;
    color: var(--muted);
}

.contact-form-card {
    background: var(--notice-beige);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.5rem;
    color: var(--union-navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--divider);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--hall-paper);
    color: var(--ink);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--union-navy);
    box-shadow: 0 0 0 3px rgba(34, 58, 90, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--union-navy);
    color: var(--hall-paper);
    border: none;
    border-radius: 8px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #2a4a6f;
    transform: translateY(-2px);
}

/* ===== GAME PAGE ===== */
.game-page {
    padding-top: 70px;
    min-height: 100vh;
    background: var(--ink);
}

.game-header {
    background: linear-gradient(135deg, var(--union-navy) 0%, #1a2d45 100%);
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.game-page-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--hall-paper);
    margin-bottom: 0.5rem;
}

.game-page-subtitle {
    color: var(--notice-beige);
    font-size: 1rem;
}

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

.game-iframe-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background: var(--ink);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.game-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-hero {
    background: linear-gradient(135deg, var(--union-navy) 0%, #1a2d45 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.legal-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--hall-paper);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--notice-beige);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.5rem;
    color: var(--union-navy);
    margin-bottom: 1rem;
}

.legal-section-text {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-list {
    margin-left: 1.5rem;
    color: var(--muted);
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--hall-paper);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--divider);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe-container {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
