* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-primary: #ff6b9d;
    --pink-light: #ffa5c0;
    --pink-lighter: #ffd4e3;
    --purple-accent: #a78bfa;
    --yellow-accent: #ffd93d;
    --bg-light: #fff5f9;
    --text-dark: #2d3436;
    --text-light: #636e72;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #fff5f9 0%, #ffe6f0 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.95), rgba(167, 139, 250, 0.95));
    backdrop-filter: blur(10px);
}

.age-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4);
}

.bunny-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.age-modal-content h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.age-question {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    font-size: 1.2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.btn-no {
    background: #f0f0f0;
    color: var(--text-dark);
}

.btn-no:hover {
    background: #e0e0e0;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo svg {
    width: 60px;
    height: 60px;
}

.logo span {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: var(--pink-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--pink-primary);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--pink-primary);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 3rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 4rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 107, 157, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 4rem;
}

.welcome-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.welcome-card h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: var(--pink-primary);
    margin-bottom: 1.5rem;
}

.welcome-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Notices */
.notices {
    margin-bottom: 4rem;
}

.notices h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--pink-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-box {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid;
}

.notice-box.red {
    border-left-color: #ff6b9d;
}

.notice-box.green {
    border-left-color: #6dd5ed;
}

.notice-box.orange {
    border-left-color: #ffd93d;
}

.notice-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-box h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.notice-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 4rem;
}

.game-showcase h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--pink-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.game-frame {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    display: block;
    border: none;
}

/* Features */
.features {
    margin-bottom: 4rem;
}

.features h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--pink-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.25);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Game Info */
.game-info {
    margin-bottom: 3rem;
}

.info-panel {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

.info-panel h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: var(--pink-primary);
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    color: var(--pink-primary);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.reminder-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(167, 139, 250, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--pink-primary);
}

.reminder-box p {
    margin: 0;
    font-size: 1.1rem;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-box {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(255, 107, 157, 0.1);
}

.legal-box.highlight {
    border-left: 5px solid var(--pink-primary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(167, 139, 250, 0.05));
}

.legal-box h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.legal-box p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-box ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-box li {
    margin-bottom: 0.7rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: white;
    color: var(--pink-primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: flex;
        order: 3;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        background: white;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .welcome-card,
    .info-panel,
    .legal-box {
        padding: 2rem;
    }

    .notice-grid,
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal-content {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
