* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #fef3c7, #fde68a, #fcd34d);
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-overlay.show {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #ec4899, #14b8a6);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.age-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 34px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.age-box p {
    font-size: 19px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.age-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.yes-btn,
.no-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.yes-btn {
    background: white;
    color: #14b8a6;
}

.yes-btn:hover {
    background: #f0fdf4;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.no-btn {
    background: #dc2626;
    color: white;
}

.no-btn:hover {
    background: #991b1b;
    transform: translateY(-4px);
}

/* Header */
.top-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #ec4899;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(135deg, #ec4899, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-line {
    width: 30px;
    height: 4px;
    background: #ec4899;
    border-radius: 5px;
    transition: 0.3s;
}

.top-nav {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: #1f2937;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #ec4899, #14b8a6);
    transition: width 0.3s;
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-item.active {
    color: #ec4899;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 120px 40px 40px;
        transition: right 0.4s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #ec4899;
    }
    
    .top-nav.open {
        right: 0;
    }
}

/* Welcome Banner */
.welcome-banner {
    padding: 120px 30px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.2), transparent);
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-banner h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    color: #ec4899;
    margin-bottom: 30px;
    line-height: 1.2;
}

.tagline {
    font-size: 22px;
    color: #374151;
    margin-bottom: 45px;
    line-height: 1.8;
    font-weight: 600;
}

.action-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #14b8a6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

/* Content Sections */
.about-us,
.game-section,
.key-info,
.perks,
.responsibility-notice {
    padding: 90px 30px;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.about-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #fcd34d;
}

.about-emoji {
    font-size: 75px;
    display: block;
    margin-bottom: 25px;
}

.about-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 38px;
    color: #ec4899;
    margin-bottom: 25px;
}

.about-box p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.9;
    font-weight: 600;
}

/* Game Section */
.section-header {
    font-family: 'Fredoka', sans-serif;
    font-size: 44px;
    color: #14b8a6;
    text-align: center;
    margin-bottom: 50px;
}

.game-box {
    background: white;
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #ec4899;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 20px;
}

/* Key Info */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.info-card {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid;
}

.info-card.pink-card {
    border-left-color: #ec4899;
}

.info-card.teal-card {
    border-left-color: #14b8a6;
}

.info-card.purple-card {
    border-left-color: #a855f7;
}

.info-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    font-weight: 600;
}

/* Perks */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.perk-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #fcd34d;
}

.perk-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.2);
}

.perk-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.perk-box h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: #14b8a6;
    margin-bottom: 15px;
}

.perk-box p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 600;
}

/* Responsibility Notice */
.notice-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #a855f7;
}

.notice-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    color: #a855f7;
    margin-bottom: 25px;
}

.notice-box p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.9;
    font-weight: 600;
}

/* Play Pages */
.play-intro {
    padding: 100px 30px 50px;
    text-align: center;
}

.play-intro h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 52px;
    color: #ec4899;
    margin-bottom: 20px;
}

.play-desc {
    font-size: 20px;
    color: #374151;
    font-weight: 600;
}

.play-zone {
    padding: 50px 30px 90px;
}

.full-game-box {
    background: white;
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #14b8a6;
}

.full-game-embed {
    width: 100%;
    height: 850px;
    border: none;
    border-radius: 20px;
}

.play-tips {
    padding: 50px 30px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #fcd34d;
}

.tip-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    color: #ec4899;
    margin-bottom: 18px;
}

.tip-card p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    font-weight: 600;
}

/* Legal Pages */
.page-top {
    padding: 100px 30px 50px;
    text-align: center;
}

.page-top h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 52px;
    color: #14b8a6;
    margin-bottom: 15px;
}

.doc-date {
    font-size: 16px;
    color: #9ca3af;
}

.page-content {
    padding: 50px 30px 100px;
}

.legal-text {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #fcd34d;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    color: #ec4899;
    margin: 45px 0 20px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.9;
    font-weight: 600;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 35px;
}

.legal-text li {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.8;
    font-weight: 600;
}

.legal-text a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
}

.legal-text a:hover {
    color: #0d9488;
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #ec4899, #14b8a6);
    color: white;
    padding: 70px 30px 30px;
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-block h5 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-block p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 12px;
}

.link-list a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.link-list a:hover {
    opacity: 0.8;
}

.footer-note {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-note p {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .welcome-banner h1 {
        font-size: 38px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .game-embed {
        height: 550px;
    }
    
    .full-game-embed {
        height: 650px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        padding: 40px 25px;
    }
    
    .site-logo {
        font-size: 24px;
    }
}