@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pastel-pink: #ffb6c1;
    --pastel-purple: #dda0dd;
    --pastel-blue: #add8e6;
    --pastel-lavender: #e6e6fa;
    --soft-white: #fefefe;
    --cloud-gray: #f5f5f5;
    --muted-text: #666677;
    --deep-purple: #4a3f6b;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--soft-white) 50%, var(--pastel-blue) 100%);
    color: var(--deep-purple);
    line-height: 1.8;
    min-height: 100vh;
}

/* Age Modal */
.age-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(230, 230, 250, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.age-modal-box {
    background: white;
    border-radius: 30px;
    padding: 50px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(74, 63, 107, 0.15);
}

.age-modal-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-purple);
    margin-bottom: 20px;
    font-weight: 500;
}

.age-modal-box p {
    color: var(--muted-text);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.age-modal-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-btn {
    padding: 14px 40px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn.confirm {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple));
    color: white;
}

.modal-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(221, 160, 221, 0.4);
}

.modal-btn.cancel {
    background: transparent;
    border: 2px solid var(--pastel-purple);
    color: var(--deep-purple);
}

.modal-btn.cancel:hover {
    background: var(--pastel-lavender);
}

/* Header */
.site-head {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(74, 63, 107, 0.08);
}

.head-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-purple);
    text-decoration: none;
}

.head-links {
    display: flex;
    gap: 35px;
}

.head-links a {
    color: var(--deep-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.head-links a:hover {
    color: var(--pastel-purple);
}

/* Hamburger */
.mobile-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-trigger span {
    width: 25px;
    height: 2px;
    background: var(--deep-purple);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-dropdown {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 30px;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(74, 63, 107, 0.1);
}

.mobile-dropdown.active {
    display: flex;
}

.mobile-dropdown a {
    color: var(--deep-purple);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Welcome Section */
.welcome-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
}

.welcome-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--deep-purple);
    margin-bottom: 25px;
    line-height: 1.2;
}

.welcome-content p {
    font-size: 1.15rem;
    color: var(--muted-text);
    margin-bottom: 40px;
    line-height: 1.9;
}

.ethereal-btn {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue));
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.ethereal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(221, 160, 221, 0.35);
}

/* Notice Bubbles */
.notice-bubbles {
    padding: 80px 30px;
    background: white;
}

.bubbles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bubble {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--cloud-gray);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
}

.bubble .bubble-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bubble h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--deep-purple);
    margin-bottom: 15px;
}

.bubble p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* Game Area */
.game-area {
    padding: 80px 30px;
    background: linear-gradient(180deg, white, var(--pastel-lavender));
}

.game-area h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 45px;
}

.game-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 50px rgba(74, 63, 107, 0.12);
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

/* Info Section */
.info-area {
    padding: 80px 30px;
    background: white;
}

.info-inner {
    max-width: 900px;
    margin: 0 auto;
}

.info-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-purple);
    margin-bottom: 25px;
}

.info-inner p {
    color: var(--muted-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Features */
.feature-area {
    padding: 80px 30px;
    background: var(--cloud-gray);
}

.feature-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.feature-item {
    background: white;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    gap: 20px;
}

.feature-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--deep-purple);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* Footer */
.site-foot {
    background: var(--deep-purple);
    padding: 50px 30px;
}

.foot-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.foot-inner > p {
    color: var(--pastel-lavender);
    margin-bottom: 25px;
}

.help-resources {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.help-resources a {
    color: var(--pastel-pink);
    text-decoration: none;
    transition: color 0.3s;
}

.help-resources a:hover {
    color: white;
}

.foot-copy {
    padding-top: 20px;
    border-top: 1px solid rgba(230, 230, 250, 0.2);
    color: var(--pastel-lavender);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Page Styles */
.page-head {
    padding: 140px 30px 60px;
    background: white;
    text-align: center;
}

.page-head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--deep-purple);
}

.page-body {
    padding: 60px 30px;
    background: var(--cloud-gray);
}

.page-body .container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
}

.page-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin: 30px 0 15px;
}

.page-body p {
    color: var(--muted-text);
    margin-bottom: 15px;
}

.page-body ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-body ul li {
    color: var(--muted-text);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.page-body ul li::before {
    content: '✦';
    color: var(--pastel-purple);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .head-links {
        display: none;
    }
    
    .welcome-content h1 {
        font-size: 2.4rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 420px;
    }
    
    .help-resources {
        flex-direction: column;
        gap: 12px;
    }
}
