@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;700;900&family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --violet: #7c3aed;
    --purple: #a855f7;
    --deep-purple: #581c87;
    --lavender: #e9d5ff;
    --light-bg: #faf5ff;
    --dark-text: #2e1065;
    --gold: #fbbf24;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

/* Top navigation bar */
.navbar {
    background: linear-gradient(90deg, var(--violet), var(--purple));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-symbol {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu div {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* Main content grid */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
    color: var(--deep-purple);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--violet), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: linear-gradient(135deg, var(--violet), var(--purple));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.3);
}

.info-card h3 {
    color: var(--gold);
    margin-top: 0;
}

.game-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.game-section iframe {
    border: none;
    border-radius: 12px;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-block {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.content-block p {
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.content-block ul, .content-block ol {
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.content-block li {
    margin: 0.6rem 0;
}

.highlight-box {
    background: var(--lavender);
    border-left: 5px solid var(--violet);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

footer {
    background: var(--deep-purple);
    color: white;
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    font-family: 'Raleway', sans-serif;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--lavender);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--lavender);
}

/* Age Gate Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(88, 28, 135, 0.95);
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    max-width: 550px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-box h2 {
    color: var(--violet);
    margin-bottom: 1rem;
}

.modal-box p {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-confirm {
    background: linear-gradient(135deg, var(--violet), var(--purple));
    color: white;
}

.btn-decline {
    background: #ef4444;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-purple);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu a {
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-card, .content-block, .game-section {
        padding: 2rem 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
