@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-pink: #FFB6C1;
    --royal-gold: #FFD700;
    --soft-purple: #E6E6FA;
    --deep-rose: #C71585;
    --cream: #FFF8DC;
    --text-dark: #4A4A4A;
    --accent-gold: #DAA520;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-purple) 100%);
    line-height: 1.8;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(to right, var(--primary-pink), var(--soft-purple));
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(199, 21, 133, 0.2);
    border-bottom: 3px solid var(--royal-gold);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.crown-icon {
    width: 60px;
    height: 60px;
}

.brand h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--deep-rose), var(--royal-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
}

.main-nav ul li a:hover {
    color: var(--deep-rose);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: width 0.3s;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--deep-rose);
    border-radius: 2px;
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.royal-banner {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(199, 21, 133, 0.15);
    border: 3px solid var(--royal-gold);
    margin-bottom: 3rem;
}

.royal-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--deep-rose);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.royal-banner p {
    font-size: 1.4rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

.notice-panel {
    background: linear-gradient(135deg, #fff5f7, #fef5ff);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--primary-pink);
    margin: 3rem 0;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
}

.notice-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--deep-rose);
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-panel ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.notice-panel li {
    padding: 1rem;
    margin: 0.8rem 0;
    background: white;
    border-radius: 10px;
    border-left: 5px solid var(--royal-gold);
    font-weight: 600;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--royal-gold);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(199, 21, 133, 0.2);
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--deep-rose);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

.game-showcase {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(199, 21, 133, 0.15);
    border: 3px solid var(--primary-pink);
}

.game-showcase h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--deep-rose);
    text-align: center;
    margin-bottom: 2rem;
}

.game-wrapper {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--soft-purple), var(--primary-pink));
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 3px solid var(--royal-gold);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--deep-rose);
}

footer p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 192, 203, 0.98);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.age-gate.visible {
    display: flex;
}

.age-gate-content {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(199, 21, 133, 0.4);
    border: 4px solid var(--royal-gold);
}

.age-gate-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--deep-rose);
    margin-bottom: 2rem;
}

.age-gate-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.age-gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-gate-buttons button {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
}

.btn-accept {
    background: linear-gradient(45deg, var(--deep-rose), var(--primary-pink));
    color: white;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(199, 21, 133, 0.4);
}

.btn-reject {
    background: #888;
    color: white;
}

.btn-reject:hover {
    background: #666;
}

/* Content Pages */
.page-content {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(199, 21, 133, 0.15);
    border: 3px solid var(--primary-pink);
}

.page-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--deep-rose);
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--royal-gold);
    padding-bottom: 1rem;
}

.page-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--deep-rose);
    margin: 2.5rem 0 1.5rem 0;
}

.page-content p {
    margin-bottom: 1.3rem;
    line-height: 2;
}

.page-content ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
}

.page-content li {
    margin: 0.8rem 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-pink), var(--soft-purple));
        flex-direction: column;
        padding: 6rem 3rem;
        gap: 2rem;
        transition: right 0.4s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .main-nav ul.open {
        right: 0;
    }

    .royal-banner h2 {
        font-size: 2.5rem;
    }

    .royal-banner {
        padding: 2.5rem;
    }

    .game-wrapper {
        height: 500px;
    }

    .age-gate-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .page-content {
        padding: 2rem;
    }
}
