@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Work+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --magenta: #e91e63;
    --pink: #f48fb1;
    --fuchsia: #c2185b;
    --dark: #1a0a12;
    --darker: #0f050a;
    --white: #ffffff;
    --silver: #b0b0b0;
    --gold: #ffd54f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--darker);
    color: var(--white);
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Marcellus', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 10, 18, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.4);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-shape {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--magenta), var(--fuchsia));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Marcellus', serif;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.logo-text {
    font-family: 'Marcellus', serif;
    font-size: 1.7rem;
    color: var(--magenta);
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
}

.menu a:hover {
    color: var(--magenta);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--magenta);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(233, 30, 99, 0.1), transparent 60%),
                linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    padding: 130px 2rem 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-inner h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-inner h1 span {
    color: var(--magenta);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--silver);
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

/* Notices */
.notices {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.notice {
    background: rgba(233, 30, 99, 0.12);
    border: 1px solid var(--magenta);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.notice-icon {
    font-size: 1.2rem;
}

/* Game Area */
.game-area {
    max-width: 1150px;
    margin: 0 auto;
    width: 100%;
}

.game-box {
    background: linear-gradient(145deg, rgba(233, 30, 99, 0.1), rgba(194, 24, 91, 0.05));
    border: 2px solid rgba(233, 30, 99, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(233, 30, 99, 0.1);
}

.game-frame {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 12px;
}

/* Features */
.features {
    padding: 6rem 2rem;
    background: var(--dark);
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 4rem;
    color: var(--white);
}

.features-title span {
    color: var(--magenta);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background: rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
}

.feature:hover {
    border-color: var(--magenta);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature h3 {
    color: var(--magenta);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature p {
    color: var(--silver);
    line-height: 1.7;
}

/* About */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--darker), var(--dark));
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    background: rgba(233, 30, 99, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--magenta);
}

.about-block h3 {
    color: var(--magenta);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-block p {
    color: var(--silver);
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(233, 30, 99, 0.3);
    padding: 3.5rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-menu a {
    color: var(--white);
    font-weight: 500;
}

.footer-menu a:hover {
    color: var(--magenta);
}

.support {
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.support p {
    color: var(--silver);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-links a {
    color: var(--gold);
    font-size: 0.9rem;
}

.copy {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Age Verify */
.age-verify {
    position: fixed;
    inset: 0;
    background: rgba(15, 5, 10, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.verify-box {
    background: linear-gradient(145deg, var(--dark), var(--darker));
    border: 2px solid var(--magenta);
    border-radius: 20px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 0 60px rgba(233, 30, 99, 0.25);
}

.verify-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.verify-box h2 {
    font-size: 1.9rem;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.verify-box p {
    color: var(--silver);
    margin-bottom: 2rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2.5rem;
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-yes {
    background: linear-gradient(135deg, var(--magenta), var(--fuchsia));
    color: var(--white);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.btn-no {
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
}

.btn-no:hover {
    background: var(--silver);
    color: var(--darker);
}

.hidden {
    display: none !important;
}

/* Pages */
.page {
    padding: 130px 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.page h1 {
    font-size: 2.6rem;
    color: var(--magenta);
    margin-bottom: 2rem;
}

.page h2 {
    font-size: 1.5rem;
    color: var(--magenta);
    margin: 2.5rem 0 1rem;
}

.page p {
    color: var(--silver);
    margin-bottom: 1rem;
}

.page ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--silver);
}

.page li {
    margin-bottom: 0.5rem;
}

/* Play Page */
.play-page {
    padding: 130px 2rem 5rem;
    background: var(--dark);
    min-height: 100vh;
}

.play-inner {
    max-width: 1250px;
    margin: 0 auto;
}

.play-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.play-header h1 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.play-header h1 span {
    color: var(--magenta);
}

.play-header p {
    color: var(--silver);
    font-size: 1.1rem;
}

.play-guide {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid var(--magenta);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.play-guide h3 {
    color: var(--magenta);
    margin-bottom: 1rem;
}

.play-guide p {
    color: var(--silver);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s;
        border-bottom: 1px solid rgba(233, 30, 99, 0.4);
    }

    .menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-inner h1 {
        font-size: 2rem;
    }

    .notices {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .verify-btns {
        flex-direction: column;
    }

    .verify-box {
        padding: 2rem;
    }

    .page h1 {
        font-size: 2rem;
    }
}
