* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fdf2f8;
    color: #1f2937;
    line-height: 1.6;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.top-bar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-name {
    font-size: 1.7rem;
    font-weight: 900;
    color: #ec4899;
}

.menu {
    display: flex;
    gap: 2.5rem;
}

.menu-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu-link:hover,
.menu-link.active {
    color: #ec4899;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: #ec4899;
    border-radius: 2px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #ec4899, #db2777);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-banner h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Sections */
.welcome,
.highlights,
.gaming,
.benefits,
.promise {
    padding: 5rem 0;
}

.welcome {
    background: white;
}

.main-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.welcome-col p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Highlights */
.highlights {
    background: #fce7f3;
}

.highlight-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
}

.pink-box {
    border-top: 4px solid #ec4899;
}

.rose-box {
    border-top: 4px solid #f43f5e;
}

.magenta-box {
    border-top: 4px solid #db2777;
}

.box-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.box p {
    color: #6b7280;
    line-height: 1.7;
}

/* Gaming Section */
.gaming {
    background: white;
}

.game-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.game-box {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

/* Benefits */
.benefits {
    background: #fce7f3;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.benefit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2);
}

.emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #6b7280;
    line-height: 1.6;
}

/* Promise Section */
.promise {
    background: white;
}

.promise-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fce7f3;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #ec4899;
}

.promise-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ec4899;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promise-box > p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promise-points {
    list-style: none;
    margin: 2rem 0;
}

.promise-points li {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #6b7280;
    font-size: 1.05rem;
    border-bottom: 1px solid #f3f4f6;
}

.promise-points li span {
    color: #ec4899;
    font-weight: bold;
    font-size: 1.3rem;
}

.promise-close {
    text-align: center;
    font-weight: 600;
    color: #ec4899;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Play Page */
.play-info {
    padding: 4rem 0;
    background: white;
}

.info-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.point {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: #fce7f3;
    border-radius: 12px;
}

.point-emoji {
    font-size: 2.5rem;
}

.point h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.point p {
    font-size: 0.9rem;
    color: #6b7280;
}

.play-area {
    padding: 3rem 0;
    background: #fce7f3;
}

.play-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.play-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
}

.play-notice {
    padding: 3rem 0;
    background: white;
}

.notice-box {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.notice-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.notice-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: white;
}

.doc-section {
    background: #f9fafb;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ec4899;
}

.doc-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 1rem;
}

.doc-section p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.featured-section {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border-left: 5px solid #ec4899;
}

/* Footer */
.page-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-area h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 1rem;
}

.footer-area p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-area ul {
    list-style: none;
}

.footer-area li {
    margin-bottom: 0.5rem;
}

.footer-area a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-area a:hover {
    color: #ec4899;
}

.footer-line {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-gate.hidden {
    display: none;
}

.gate-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gate-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ec4899;
    margin-bottom: 1rem;
}

.gate-box p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.gate-note {
    font-size: 1rem;
    opacity: 0.85;
}

.gate-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.accept-btn,
.decline-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.accept-btn {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

.decline-btn {
    background: #e5e7eb;
    color: #6b7280;
}

.decline-btn:hover {
    background: #d1d5db;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .menu.active {
        max-height: 400px;
    }
    
    .menu-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-boxes,
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .game-embed,
    .play-embed {
        height: 450px;
    }
    
    .gate-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .gate-actions {
        flex-direction: column;
    }
}
