@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #ffe0f5 50%, #ffd9f2 100%);
    color: #5a3d5c;
    line-height: 1.8;
    min-height: 100vh;
}

/* Top Navigation */
.top-bar {
    background: linear-gradient(90deg, #ff69b4, #ff85c0, #ff69b4);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 8px rgba(255, 20, 147, 0.4);
    letter-spacing: 1px;
}

.navigation {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.navigation a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-area {
    padding: 50px 0;
}

/* Headings */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff1493;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(255, 20, 147, 0.2);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff69b4;
    margin: 45px 0 25px;
    text-shadow: 2px 2px 5px rgba(255, 105, 180, 0.2);
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ff85c0;
    margin: 30px 0 18px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.9;
    color: #6b4d6d;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #ffb6d9, #ffd4e8);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.25);
    border: 4px solid #ff69b4;
}

.welcome-banner p {
    font-size: 1.25rem;
    color: #8b5a8d;
}

/* Notice Panel */
.notice-panel {
    background: linear-gradient(135deg, #ffe5f1, #fff0f7);
    border-radius: 25px;
    border: 3px solid #ff1493;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.notice-panel h2 {
    margin-top: 0;
    color: #ff1493;
}

.notice-panel p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff69b4;
    margin: 12px 0;
}

/* Sweet Cards */
.sweet-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 50px 0;
}

.sweet-card {
    background: linear-gradient(145deg, #fff0f7, #ffe5f1);
    border-radius: 25px;
    padding: 35px;
    border: 3px solid #ffb6d9;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(255, 182, 217, 0.3);
}

.sweet-card:hover {
    transform: translateY(-8px) rotate(1deg);
    border-color: #ff69b4;
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.4);
}

.sweet-card h3 {
    margin-top: 0;
}

/* Game Area */
.game-area {
    background: linear-gradient(135deg, #ffffff, #fff5fa);
    border-radius: 30px;
    padding: 50px;
    margin: 50px 0;
    text-align: center;
    border: 4px solid #ff85c0;
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.25);
}

.game-area h2 {
    text-align: center;
}

.game-area iframe {
    width: 100%;
    max-width: 950px;
    height: 680px;
    border: 4px solid #ff69b4;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
}

/* Text Section */
.text-section {
    background: linear-gradient(135deg, #fff8fb, #ffe5f1);
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid #ffccdf;
}

.text-section ul,
.text-section ol {
    margin-left: 35px;
    margin-bottom: 22px;
}

.text-section li {
    margin-bottom: 14px;
    font-size: 1.08rem;
}

/* Footer Area */
.footer-area {
    background: linear-gradient(90deg, #ff69b4, #ff85c0, #ff69b4);
    padding: 45px 0;
    margin-top: 80px;
    box-shadow: 0 -4px 20px rgba(255, 105, 180, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.08);
}

.footer-area p {
    color: #ffe5f1;
    font-weight: 600;
}

/* Age Check Overlay */
.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.age-check-box {
    background: linear-gradient(135deg, #ffffff, #fff5fa);
    border-radius: 35px;
    padding: 60px 70px;
    max-width: 620px;
    text-align: center;
    border: 5px solid #ff1493;
    box-shadow: 0 20px 70px rgba(255, 20, 147, 0.5);
}

.age-check-box h2 {
    margin-top: 0;
    color: #ff1493;
    text-align: center;
}

.age-check-box p {
    font-size: 1.18rem;
    margin: 20px 0;
    color: #8b5a8d;
}

.age-check-actions {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}

.age-check-btn {
    padding: 18px 50px;
    font-size: 1.22rem;
    font-weight: 800;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.btn-accept:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.6);
}

.btn-decline {
    background: #d3d3d3;
    color: #5a3d5c;
}

.btn-decline:hover {
    background: #c0c0c0;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, #ff69b4, #ff85c0);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(255, 105, 180, 0.5);
    }

    nav.show {
        right: 0;
    }

    .navigation {
        flex-direction: column;
        gap: 22px;
    }

    .navigation a {
        font-size: 1.2rem;
        padding: 14px 20px;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2rem;
    }

    .welcome-banner {
        padding: 50px 30px;
    }

    .sweet-cards {
        grid-template-columns: 1fr;
    }

    .game-area iframe {
        height: 480px;
    }

    .age-check-box {
        margin: 30px;
        padding: 40px 30px;
    }

    .age-check-actions {
        flex-direction: column;
    }

    .age-check-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-brand {
        font-size: 1.7rem;
    }

    h1 {
        font-size: 2.2rem;
    }
}
