@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #ec4899;
    --magenta: #db2777;
    --fuchsia: #d946ef;
    --dark-purple: #1a0a1f;
    --mid-purple: #2a1232;
    --light-pink: #fdf2f8;
    --text-white: #ffffff;
    --text-gray: #d4d4d8;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--dark-purple);
    color: var(--text-white);
    line-height: 1.7;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--dark-purple) 0%, rgba(26, 10, 31, 0.9) 100%);
    z-index: 1000;
    padding: 0.875rem 1.5rem;
    border-bottom: 2px solid rgba(236, 72, 153, 0.3);
}

.header-wrap {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-badge {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--pink), var(--fuchsia));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.brand-label {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pink);
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--pink);
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.menu-icon span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--pink);
    margin: 5px 0;
    border-radius: 2px;
}

.slide-menu {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--mid-purple);
    padding: 1rem;
}

.slide-menu.open {
    display: block;
}

.slide-menu a {
    display: block;
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.page-body {
    padding-top: 85px;
}

.welcome-section {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--pink) 50%, var(--fuchsia) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.welcome-inner {
    max-width: 1050px;
    margin: 0 auto;
}

.welcome-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.welcome-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.label-strip {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.label-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.65rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.content-area {
    padding: 4rem 2rem;
}

.area-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.game-panel {
    background: var(--mid-purple);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.15);
}

.game-screen {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 14px;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: var(--mid-purple);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.feature-box:hover {
    border-color: var(--pink);
}

.box-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--fuchsia);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 800;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.highlight-panel {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.15), rgba(217, 70, 239, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-panel h2 {
    color: var(--pink);
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight-panel p {
    color: var(--text-gray);
}

.quick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.quick-item {
    background: var(--mid-purple);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-icon {
    font-size: 1.5rem;
}

footer {
    background: var(--mid-purple);
    padding: 3rem 2rem;
    border-top: 3px solid var(--pink);
}

.footer-inner {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-note {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verify-box {
    background: var(--mid-purple);
    border: 3px solid var(--pink);
    border-radius: 24px;
    padding: 3rem;
    max-width: 460px;
    margin: 1rem;
    text-align: center;
}

.verify-emoji {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.verify-box h2 {
    color: var(--pink);
    margin-bottom: 1rem;
    font-weight: 800;
}

.verify-box p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.v-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.v-btn:hover {
    transform: scale(1.05);
}

.v-btn.confirm {
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    color: white;
}

.v-btn.reject {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
}

.title-banner {
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    padding: 4rem 2rem;
    text-align: center;
}

.title-banner h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

.text-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.text-card {
    background: var(--mid-purple);
    border-radius: 14px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.text-card h2 {
    color: var(--fuchsia);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.text-card p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.text-card ul {
    color: var(--text-gray);
    margin: 1rem 0 1rem 1.5rem;
}

.text-card li {
    margin-bottom: 0.4rem;
}

@media (max-width: 1024px) {
    .boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .boxes-grid {
        grid-template-columns: 1fr;
    }

    .quick-list {
        grid-template-columns: 1fr;
    }

    .game-screen {
        height: 400px;
    }

    .verify-btns {
        flex-direction: column;
    }
}
