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

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

:root {
    --rose-deep: #1a0a14;
    --rose-mid: #3d1f32;
    --rose-main: #e11d74;
    --rose-light: #ff6ba3;
    --cream: #fff5f8;
    --soft-pink: #ffd6e7;
    --dark-bg: #120810;
    --text-main: #fff;
    --text-dim: #c9a5b5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--dark-bg);
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.7;
}

.navbar {
    background: rgba(26, 10, 20, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.9rem 1.5rem;
}

.navbar-content {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.logo-link svg {
    width: 44px;
    height: 44px;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose-main), var(--rose-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--rose-light);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
    background: rgba(225, 29, 116, 0.2);
}

.intro-section {
    padding: 10rem 2rem 5rem;
    background: radial-gradient(ellipse at top, var(--rose-mid) 0%, var(--dark-bg) 70%);
    text-align: center;
}

.intro-wrap {
    max-width: 850px;
    margin: 0 auto;
}

.intro-section h1 {
    font-size: 2.9rem;
    font-weight: 900;
    margin-bottom: 1.3rem;
    color: var(--cream);
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.notice-pills {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.notice-pill {
    background: linear-gradient(135deg, rgba(225, 29, 116, 0.2), rgba(255, 107, 163, 0.1));
    border: 1px solid var(--rose-main);
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--rose-light);
}

.game-zone {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.zone-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--soft-pink);
    margin-bottom: 1.5rem;
}

.game-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--rose-deep), var(--rose-mid));
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 20px 50px rgba(225, 29, 116, 0.25);
}

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

.highlights {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--dark-bg), var(--rose-deep));
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: rgba(61, 31, 50, 0.5);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid rgba(225, 29, 116, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(225, 29, 116, 0.2);
}

.highlight-card .emoji {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
}

.highlight-card h3 {
    color: var(--rose-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.story-section {
    padding: 4rem 2rem;
    background: var(--rose-mid);
}

.story-wrap {
    max-width: 950px;
    margin: 0 auto;
}

.story-wrap h2 {
    font-size: 1.9rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.story-wrap p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.info-banner {
    background: rgba(255, 214, 231, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--rose-main);
}

.info-banner h3 {
    color: var(--rose-light);
    margin-bottom: 0.5rem;
}

.info-banner p {
    color: var(--cream);
    margin: 0;
}

.text-page {
    padding: 7rem 2rem 4rem;
    min-height: 80vh;
    background: linear-gradient(180deg, var(--dark-bg), var(--rose-deep));
}

.text-container {
    max-width: 880px;
    margin: 0 auto;
}

.text-container h1 {
    font-size: 2.3rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.text-container h2 {
    font-size: 1.35rem;
    color: var(--rose-light);
    margin: 1.8rem 0 0.8rem;
    font-weight: 700;
}

.text-container p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.text-container ul {
    list-style: none;
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.text-container ul li {
    color: var(--text-dim);
    margin-bottom: 0.4rem;
    position: relative;
}

.text-container ul li::before {
    content: '♦';
    position: absolute;
    left: -1.2rem;
    color: var(--rose-main);
    font-size: 0.8rem;
}

.footer-area {
    background: var(--dark-bg);
    border-top: 1px solid var(--rose-mid);
    padding: 2.5rem 2rem;
    text-align: center;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.resource-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.resource-links a:hover {
    color: var(--rose-light);
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 8, 16, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.verify-modal.gone {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, var(--rose-deep), var(--rose-mid));
    border: 2px solid var(--rose-main);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.verify-box .icon {
    font-size: 3.8rem;
    margin-bottom: 1rem;
}

.verify-box h2 {
    color: var(--cream);
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.verify-box p {
    color: var(--text-dim);
    margin-bottom: 1.8rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btns button {
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.verify-yes {
    background: linear-gradient(135deg, var(--rose-main), var(--rose-light));
    color: var(--dark-bg);
}

.verify-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 29, 116, 0.4);
}

.verify-no {
    background: transparent;
    border: 2px solid var(--text-dim);
    color: var(--text-dim);
}

.verify-no:hover {
    border-color: #ef4444;
    color: #ef4444;
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--rose-deep);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 1rem;
        transition: right 0.3s;
    }

    .nav-links.show {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .intro-section {
        padding: 7rem 1.5rem 4rem;
    }

    .intro-section h1 {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .game-box iframe {
        height: 420px;
    }

    .zone-title {
        font-size: 1.4rem;
    }

    .notice-pill {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

    .resource-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .verify-box {
        padding: 1.8rem 1.2rem;
    }

    .verify-btns {
        flex-direction: column;
    }

    .verify-btns button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.7rem 1rem;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .intro-section h1 {
        font-size: 1.65rem;
    }

    .text-container h1 {
        font-size: 1.7rem;
    }
}
