* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #ffe5f1 50%, #ffd9eb 100%);
    color: #2d1b2e;
    line-height: 1.7;
    min-height: 100vh;
}

.content-box, .header-container, .footer-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

#site-nav {
    display: flex;
    gap: 2rem;
}

#site-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
}

#site-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero-splash {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(196, 69, 105, 0.2) 100%);
    padding: 4.5rem 0;
    text-align: center;
    border-bottom: 4px solid #ff6b9d;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #c44569;
    margin-bottom: 1.2rem;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #2d1b2e;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.6);
}

/* Info Cards */
.info-cards {
    padding: 4rem 0;
}

.cards-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

.card-purple {
    border-top: 5px solid #9b59b6;
}

.card-pink {
    border-top: 5px solid #ff6b9d;
}

.card-red {
    border-top: 5px solid #c44569;
}

.card-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #2d1b2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* About Us */
.about-us {
    padding: 4rem 0;
    background: rgba(255, 107, 157, 0.08);
}

.about-us h2 {
    font-size: 2.3rem;
    color: #c44569;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-us p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 4rem 0;
}

.showcase-box {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

.showcase-box h2 {
    font-size: 2.3rem;
    color: #c44569;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.showcase-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.game-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #2d1b2e;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 107, 157, 0.4);
    border: 5px solid #ff6b9d;
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    display: block;
    border: none;
}

/* Highlights */
.highlights {
    padding: 4rem 0;
    background: rgba(255, 107, 157, 0.08);
}

.highlights h2 {
    font-size: 2.3rem;
    color: #c44569;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight h4 {
    font-size: 1.3rem;
    color: #c44569;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight p {
    font-size: 1rem;
}

/* Responsibility Note */
.responsibility-note {
    padding: 4rem 0;
}

.responsibility-note h2 {
    font-size: 2.3rem;
    color: #c44569;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.responsibility-note p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d1b2e 0%, #4a2e4d 100%);
    color: #fff;
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    color: #ff6b9d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 157, 0.3);
    font-size: 0.9rem;
}

/* Age Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 46, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #ffeef8 0%, #ffe5f1 100%);
    border-radius: 30px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 5px solid #ff6b9d;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-size: 2.2rem;
    color: #c44569;
    margin-bottom: 1rem;
    font-weight: 800;
}

.age-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d1b2e;
}

.age-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-actions button {
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-yes {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

.btn-no {
    background: #6c757d;
    color: #fff;
}

.btn-no:hover {
    background: #5a6268;
}

/* Play Page */
.play-header {
    padding: 3.5rem 0;
    background: rgba(255, 107, 157, 0.1);
    text-align: center;
}

.play-header h1 {
    font-size: 2.8rem;
    color: #c44569;
    margin-bottom: 1rem;
    font-weight: 800;
}

.play-tagline {
    font-size: 1.2rem;
}

.play-content {
    padding: 4rem 0;
}

.game-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #ff6b9d;
}

.game-info-box h2 {
    color: #c44569;
    margin-bottom: 1rem;
    font-weight: 700;
}

.game-info-box p {
    margin-bottom: 1rem;
}

.game-area {
    max-width: 950px;
    margin: 0 auto;
    background: #2d1b2e;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 107, 157, 0.4);
    border: 5px solid #ff6b9d;
}

.game-area iframe {
    width: 100%;
    height: 650px;
    display: block;
    border: none;
}

.play-reminder-section {
    padding: 3rem 0;
}

.reminder-banner {
    background: linear-gradient(135deg, #fff9e6 0%, #ffedcc 100%);
    border: 4px solid #ffc107;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reminder-banner h3 {
    color: #ff8800;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    font-size: 2.8rem;
    text-align: center;
    color: #c44569;
    margin-bottom: 1rem;
    font-weight: 800;
}

.date-stamp {
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.legal-block {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #ff6b9d;
}

.legal-block h3 {
    color: #c44569;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-block ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-block li {
    margin-bottom: 0.6rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    #site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #c44569 0%, #8e2945 100%);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        display: none;
    }

    #site-nav.active {
        display: flex;
    }

    #site-nav a {
        padding: 1rem;
        border-radius: 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe,
    .game-area iframe {
        height: 450px;
    }

    .age-box {
        padding: 2rem;
        margin: 1rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
