* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
}

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification-overlay.hidden {
    display: none;
}

.age-verification-card {
    background: linear-gradient(135deg, #2d1b4e 0%, #4c1d95 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 2px solid #8b5cf6;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

.age-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-verification-card h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.age-text {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 0.8rem;
}

.age-requirement {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 1.5rem 0;
}

.age-choice {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-accept,
.age-decline {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.age-accept {
    background: #8b5cf6;
    color: white;
}

.age-accept:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.age-decline {
    background: #374151;
    color: #d1d5db;
}

.age-decline:hover {
    background: #1f2937;
}

/* Navigation Bar */
.navbar {
    background: rgba(45, 27, 78, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8b5cf6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #8b5cf6;
    color: white;
}

.menu-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #8b5cf6;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.menu-hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(76, 29, 149, 0.2) 100%);
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.main-tagline {
    font-size: 1.6rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cryptic-divider {
    font-size: 2rem;
    color: #8b5cf6;
    letter-spacing: 1rem;
}

/* Page Banner */
.page-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(76, 29, 149, 0.2) 100%);
    border-radius: 25px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.banner-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.banner-content p {
    font-size: 1.2rem;
    color: #9ca3af;
}

/* Section Container */
.section-container {
    background: rgba(45, 27, 78, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 2.5rem;
}

.section-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-container p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.2rem;
}

/* Info Columns */
.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-panel {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.info-panel.dark {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.4) 0%, rgba(88, 28, 135, 0.4) 100%);
}

.info-panel.darker {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.5) 0%, rgba(88, 28, 135, 0.5) 100%);
}

.info-panel.darkest {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.6) 0%, rgba(88, 28, 135, 0.6) 100%);
}

.panel-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.info-panel h3 {
    font-size: 1.6rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.info-panel p {
    color: #d1d5db;
}

/* Game Section */
.game-intro-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #9ca3af;
}

.game-embed-area {
    margin: 2.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.game-embed-area iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-disclaimer {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
}

/* Feature Blocks */
.feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-block {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.3) 0%, rgba(88, 28, 135, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.4);
    transition: all 0.3s;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-symbol {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-block h4 {
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 0.8rem;
}

.feature-block p {
    color: #d1d5db;
}

/* Gameplay Section */
.gameplay-info {
    margin-bottom: 2.5rem;
}

.technical-info {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.8rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.technical-info h3 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.technical-info ul {
    list-style: none;
    padding-left: 0;
}

.technical-info li {
    margin-bottom: 0.6rem;
    color: #d1d5db;
}

.important-note {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 1.5rem;
    border-radius: 12px;
    color: white;
    margin: 1.5rem 0;
}

.game-window iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    border: 3px solid #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Legal Content */
.legal-content {
    max-width: 950px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    color: #fbbf24;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #a78bfa;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    color: #d1d5db;
}

.terms-conclusion,
.privacy-summary-box,
.critical-notice,
.final-acknowledgment {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 2px solid #a78bfa;
}

.critical-notice h2,
.final-acknowledgment h3 {
    color: white;
    text-align: center;
    margin-top: 0;
}

.final-acknowledgment ul {
    color: white;
}

.final-acknowledgment li {
    color: white;
}

/* Footer */
.site-footer {
    background: rgba(17, 10, 35, 0.95);
    border-top: 2px solid #8b5cf6;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-block h5 {
    font-family: 'Cinzel', serif;
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-block p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-block ul {
    list-style: none;
}

.footer-block li {
    margin-bottom: 0.6rem;
}

.footer-block a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    color: #6b7280;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: 2rem;
        background: rgba(45, 27, 78, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 15px;
        border: 2px solid #8b5cf6;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        transform: translateX(20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        margin-bottom: 0.5rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .main-tagline {
        font-size: 1.2rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .section-container {
        padding: 1.8rem;
    }

    .section-container h2 {
        font-size: 2rem;
    }

    .game-embed-area iframe {
        height: 450px;
    }

    .game-window iframe {
        height: 500px;
    }

    .info-columns,
    .feature-blocks {
        grid-template-columns: 1fr;
    }
}
