* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 25%, #fd79a8 75%, #a29bfe 100%);
    color: #2d3436;
    line-height: 1.6;
    min-height: 100vh;
}

.content-box {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-header {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    padding: 1.2rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-emoji {
    font-size: 2.5rem;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fd79a8;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-navigation {
    display: flex;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-item:hover,
.nav-item.current {
    color: #fd79a8;
}

.nav-item.current::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fd79a8, #a29bfe);
    border-radius: 2px;
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-overlay.show {
    display: flex;
}

.age-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.sparkle {
    font-size: 2rem;
}

.age-card h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.4);
}

.btn-secondary {
    background: #dfe6e9;
    color: #2d3436;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.welcome-section {
    padding: 4rem 0;
    text-align: center;
}

.welcome-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #2d3436;
}

.feature-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge.pink {
    background: #fd79a8;
    color: white;
}

.badge.teal {
    background: #74b9ff;
    color: white;
}

.badge.yellow {
    background: #ffeaa7;
    color: #2d3436;
}

.important-notices {
    padding: 4rem 0;
    background: white;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-pink {
    border-top: 5px solid #fd79a8;
}

.card-teal {
    border-top: 5px solid #74b9ff;
}

.card-yellow {
    border-top: 5px solid #ffeaa7;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.game-area {
    padding: 4rem 0;
}

.game-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 2rem;
}

.game-frame-wrapper {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.why-choose {
    padding: 4rem 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-box {
    text-align: center;
    padding: 2rem;
}

.reason-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.reason-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.about-us {
    padding: 4rem 0;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.call-action {
    padding: 4rem 0;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-link {
    display: inline-block;
    background: white;
    color: #fd79a8;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.play-header {
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.play-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.play-tagline {
    font-size: 1.2rem;
}

.play-zone {
    padding: 3rem 0;
}

.game-frame-wrapper-full {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-embed-full {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.play-info {
    padding: 3rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.info-tile {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-tile h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.legal-section {
    padding: 3rem 0;
    background: white;
    min-height: 70vh;
}

.legal-section h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-date {
    font-style: italic;
    color: #636e72;
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p,
.legal-section li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.warning-box h2 {
    color: white;
    margin-top: 0;
}

.page-footer {
    background: #2d3436;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    background: linear-gradient(135deg, #fd79a8, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.resource-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-links a:hover {
    color: #fd79a8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.active {
        display: flex;
    }

    .nav-item::after {
        display: none;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .age-card {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .notice-cards,
    .reasons-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-embed,
    .game-embed-full {
        height: 400px;
    }

    .play-header h1 {
        font-size: 2.2rem;
    }
}
