@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-purple: #663399;
    --imperial-gold: #FFD700;
    --rich-purple: #4B0082;
    --soft-gold: #F0E68C;
    --dark-bg: #1a0a2e;
    --card-bg: #2a1a4e;
    --text-light: #ffffff;
    --text-muted: #d4c5f9;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom right, #1a0a2e, #2a1a4e, #1a0a2e);
    color: var(--text-light);
    line-height: 1.7;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--rich-purple), var(--royal-purple));
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--imperial-gold);
}

/* Header */
header {
    background: rgba(26, 10, 46, 0.95);
    padding: 2rem 0;
    border-bottom: 3px solid var(--imperial-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.site-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--imperial-gold);
    text-decoration: none;
    letter-spacing: 8px;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-crown {
    font-size: 3rem;
    display: block;
}

nav {
    background: rgba(102, 51, 153, 0.3);
    border-radius: 50px;
    padding: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 3rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--imperial-gold);
}

.mobile-menu-btn {
    display: none;
    background: var(--royal-purple);
    border: 2px solid var(--imperial-gold);
    color: var(--imperial-gold);
    padding: 0.8rem 1.5rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    margin: 1rem auto;
}

/* Main Content */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.banner-section {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.4), rgba(75, 0, 130, 0.4));
    border: 3px solid var(--imperial-gold);
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.banner-section h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    color: var(--imperial-gold);
    margin-bottom: 1rem;
    letter-spacing: 6px;
    position: relative;
    z-index: 1;
}

.banner-tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

/* Magazine Style Sections */
.magazine-section {
    background: var(--card-bg);
    border-left: 5px solid var(--imperial-gold);
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(102, 51, 153, 0.3);
}

.magazine-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--imperial-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    border-bottom: 2px solid var(--royal-purple);
    padding-bottom: 0.5rem;
}

.magazine-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--soft-gold);
    margin: 2rem 0 1rem;
    letter-spacing: 3px;
}

.magazine-section p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    text-align: justify;
}

.magazine-section ul {
    list-style: none;
    padding: 0;
}

.magazine-section li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
}

.magazine-section li:before {
    content: "👑";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.5), rgba(75, 0, 130, 0.5));
    border: 2px solid var(--imperial-gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.game-section {
    background: #000;
    border: 5px solid var(--imperial-gold);
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 15px 60px rgba(255, 215, 0, 0.3);
}

.game-section iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--rich-purple), var(--dark-bg));
    border-top: 3px solid var(--imperial-gold);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--imperial-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--imperial-gold);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Age Verification Overlay */
.age-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.98), rgba(42, 26, 78, 0.98));
    backdrop-filter: blur(20px);
}

.age-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-dialog {
    background: linear-gradient(135deg, var(--card-bg), var(--rich-purple));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    border: 4px solid var(--imperial-gold);
    box-shadow: 0 0 100px rgba(255, 215, 0, 0.5);
}

.age-dialog h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--imperial-gold);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.age-dialog .crown-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-dialog p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.age-button-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-button {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-button-confirm {
    background: linear-gradient(135deg, var(--royal-purple), var(--imperial-gold));
    color: var(--dark-bg);
    font-weight: bold;
}

.age-button-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.age-button-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 2px solid var(--text-muted);
}

.age-button-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .site-logo {
        font-size: 2.5rem;
    }

    .logo-crown {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    nav ul.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .banner-section {
        padding: 2rem;
    }

    .banner-section h1 {
        font-size: 2.5rem;
    }

    .banner-tagline {
        font-size: 1.1rem;
    }

    .magazine-section {
        padding: 2rem;
    }

    .magazine-section h2 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    .game-section iframe {
        height: 500px;
    }

    .age-dialog {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-dialog h2 {
        font-size: 2.5rem;
    }

    .age-button-group {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}
