@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --rose: #f43f5e;
    --pink-light: #fda4af;
    --blush: #fff1f2;
    --dark-rose: #9f1239;
    --charcoal: #1f2937;
    --soft-white: #fefefe;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--blush), var(--soft-white));
    color: var(--charcoal);
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.soft-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(244, 63, 94, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px;
    max-width: 1500px;
    margin: 0 auto;
}

.soft-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.soft-logo svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--rose);
}

.soft-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.soft-nav a {
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s;
}

.soft-nav a:hover {
    color: var(--rose);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--rose);
    border-radius: 3px;
}

/* Hero */
.soft-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 80px;
    background: linear-gradient(180deg, var(--blush) 0%, var(--soft-white) 100%);
}

.hero-wrapper {
    max-width: 800px;
}

.hero-wrapper h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-wrapper h1 span {
    color: var(--rose);
}

.hero-wrapper .intro {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #64748b;
}

.soft-btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--rose);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
}

.soft-btn:hover {
    background: var(--dark-rose);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.4);
}

/* Notice Cards */
.notice-area {
    padding: 80px 30px;
    background: var(--soft-white);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.notice-item {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(244, 63, 94, 0.08);
    transition: all 0.3s;
}

.notice-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(244, 63, 94, 0.15);
}

.notice-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-item h3 {
    color: var(--rose);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.notice-item p {
    color: #64748b;
}

/* Game Section */
.game-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--soft-white), var(--blush));
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.section-heading h2 span {
    color: var(--rose);
}

.game-box {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(244, 63, 94, 0.15);
}

.game-box iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 20px;
}

/* Benefits */
.benefits-area {
    padding: 100px 30px;
    background: var(--blush);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: scale(1.05);
}

.benefit-item .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--rose);
    margin-bottom: 10px;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Footer */
.soft-footer {
    background: white;
    padding: 60px 30px 35px;
    border-top: 1px solid rgba(244, 63, 94, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support-links h4 {
    color: var(--rose);
    margin-bottom: 20px;
}

.support-links a {
    color: var(--dark-rose);
    margin: 0 18px;
    transition: opacity 0.3s;
}

.support-links a:hover {
    opacity: 0.7;
}

.footer-copy {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(244, 63, 94, 0.1);
    font-size: 0.9rem;
    color: #64748b;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 50px 45px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    color: var(--rose);
    font-size: 2rem;
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 30px;
    color: #64748b;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-buttons button {
    padding: 14px 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--rose);
    color: white;
    border: none;
}

.btn-yes:hover {
    background: var(--dark-rose);
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
}

.btn-no:hover {
    background: var(--charcoal);
    color: white;
}

/* Page Header */
.page-header {
    padding: 150px 30px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--blush), var(--soft-white));
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.page-header h1 span {
    color: var(--rose);
}

/* Content Section */
.content-section {
    padding: 70px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    color: var(--rose);
    font-size: 1.4rem;
    margin: 35px 0 18px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 16px;
    color: #475569;
}

.content-section ul {
    margin: 18px 0 18px 28px;
    color: #475569;
}

.content-section li {
    margin-bottom: 10px;
}

/* Play Header */
.play-header {
    padding: 140px 30px 50px;
    text-align: center;
    background: var(--blush);
}

.play-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.play-header h1 span {
    color: var(--rose);
}

.play-header .desc {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .soft-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 25px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s;
        box-shadow: 0 10px 30px rgba(244, 63, 94, 0.1);
    }
    
    .soft-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .soft-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-wrapper h1 {
        font-size: 2.5rem;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .game-box iframe {
        height: 400px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}
