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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom right, #f8f3f0 0%, #e8ddd6 100%);
    min-height: 100vh;
    color: #3d3d3d;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 61, 61, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-overlay.show {
    display: flex;
}

.age-dialog {
    background: #ffffff;
    max-width: 540px;
    width: 100%;
    padding: 3.5rem 3rem;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-dialog h2 {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dialog-text {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1rem;
}

.dialog-question {
    font-size: 1.2rem;
    color: #3d3d3d;
    margin: 2rem 0;
    font-weight: 500;
}

.dialog-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dialog-actions button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #8b7355;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.action-yes {
    background: #8b7355;
    color: white;
}

.action-yes:hover {
    background: #75614a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.action-no {
    background: white;
    color: #8b7355;
}

.action-no:hover {
    background: #f5f5f5;
}

/* Menu Icon */
.menu-icon {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1001;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: white;
    padding: 12px;
    border-radius: 2px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.menu-icon span {
    display: block;
    width: 26px;
    height: 2px;
    background: #8b7355;
    transition: all 0.3s ease;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.site-navigation {
    background: white;
    padding: 2rem 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 2.2rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: #a89588;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
    border-bottom-color: #8b7355;
}

.nav-links a.current {
    color: #8b7355;
    border-bottom-color: #8b7355;
    font-weight: 500;
}

/* Page Wrapper */
.page-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Intro Header */
.intro-header {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.main-heading {
    font-size: 3.5rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Key Messages */
.key-messages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.message-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid;
}

.card-lavender {
    border-top-color: #c8b8db;
}

.card-rose {
    border-top-color: #dba8ac;
}

.card-sage {
    border-top-color: #a8c0b0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-symbol {
    font-size: 2rem;
    color: #8b7355;
}

.message-card h3 {
    font-size: 1.6rem;
    color: #8b7355;
    font-weight: 600;
}

.message-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Narrative Section */
.narrative-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 2px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-heading {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.narrative-content p {
    color: #666;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Gaming Showcase */
.gaming-showcase {
    background: white;
    padding: 4rem 3rem;
    border-radius: 2px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.showcase-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    aspect-ratio: 16 / 10;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.game-note {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Distinctions */
.distinctions {
    background: white;
    padding: 4rem 3rem;
    border-radius: 2px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.distinctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.distinction-item {
    padding: 2rem;
}

.distinction-icon {
    display: block;
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.distinction-item h4 {
    font-size: 1.4rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.distinction-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Page Banner */
.page-banner {
    text-align: center;
    padding: 3.5rem 2rem;
    margin-bottom: 3rem;
    background: white;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.banner-title {
    font-size: 3rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Guidelines Box */
.guidelines-box {
    background: white;
    padding: 3rem;
    border-radius: 2px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.guidelines-box h3 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 2rem;
    font-weight: 600;
}

.guidelines-list p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Recommendations */
.recommendations {
    background: white;
    padding: 4rem 3rem;
    border-radius: 2px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recommendation-box {
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 2px;
    border-left: 3px solid #c8b8db;
}

.recommendation-box h4 {
    font-size: 1.3rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.recommendation-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 4rem 3rem;
    border-radius: 2px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.legal-article h2 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.legal-article p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.emphasis-article {
    background: linear-gradient(135deg, #c8b8db15 0%, #dba8ac15 100%);
    padding: 3rem;
    border-radius: 2px;
    margin-bottom: 3rem;
    border-left: 5px solid #8b7355;
}

.emphasis-article h2 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.emphasis-article p {
    color: #3d3d3d;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Footer */
.site-footer {
    background: white;
    padding: 4rem 3rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-segment h4 {
    font-size: 1.4rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-segment p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.support-list {
    list-style: none;
    margin-top: 1rem;
}

.support-list li {
    margin-bottom: 0.8rem;
}

.support-list a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-list a:hover {
    color: #75614a;
    text-decoration: underline;
}

.info-items {
    list-style: none;
}

.info-items li {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.copyright-text {
    font-weight: 500;
    color: #8b7355;
}

.footer-motto {
    font-style: italic;
    color: #a89588;
    margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .site-navigation {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 1.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .page-wrapper {
        padding: 2rem 1rem;
    }

    .intro-header {
        padding: 2.5rem 1rem;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .key-messages {
        grid-template-columns: 1fr;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .age-dialog {
        padding: 2.5rem 2rem;
    }

    .age-dialog h2 {
        font-size: 2rem;
    }

    .dialog-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .dialog-actions button {
        width: 100%;
    }
}
