* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom right, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
    color: #e0e7ff;
    line-height: 1.8;
    min-height: 100vh;
}

.content-area {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Entry Gate */
.entry-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.98) 0%, rgba(30, 58, 138, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.entry-gate.hidden {
    display: none;
}

.gate-panel {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 3.5rem 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #fbbf24;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

.gate-emblem {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8)); }
}

.gate-panel h2 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

.gate-panel p {
    color: #c7d2fe;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gate-notice {
    font-size: 0.95rem;
    color: #a5b4fc;
    font-style: italic;
}

.gate-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.gate-button {
    padding: 1.1rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
}

.gate-button.primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e1b4b;
    border: 2px solid #fbbf24;
}

.gate-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
}

.gate-button.secondary {
    background: transparent;
    color: #c7d2fe;
    border: 2px solid #4b5563;
}

.gate-button.secondary:hover {
    background: #374151;
    border-color: #6b7280;
}

/* Navigation */
.site-nav {
    background: rgba(30, 27, 75, 0.97);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #fbbf24;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 2px;
}

.nav-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-trigger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fbbf24;
    transition: all 0.3s;
}

.nav-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-trigger.active span:nth-child(2) {
    opacity: 0;
}

.nav-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-menu {
    display: flex;
    gap: 2.5rem;
}

.main-menu a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.main-menu a:hover {
    color: #fbbf24;
}

/* Hero Showcase */
.hero-showcase {
    position: relative;
    padding: 7rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.hero-description {
    font-size: 1.6rem;
    color: #c7d2fe;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-markers {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.marker {
    background: rgba(30, 27, 75, 0.8);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #fbbf24;
}

/* Introduction */
.introduction {
    padding: 5rem 2rem;
    background: rgba(30, 58, 138, 0.2);
}

.introduction h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Essential Information */
.essential-information {
    padding: 5rem 2rem;
}

.essential-information h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
}

.info-panel {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.7) 0%, rgba(49, 46, 129, 0.7) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.gold-border {
    border: 2px solid #fbbf24;
}

.panel-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-panel h3 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-panel p {
    line-height: 1.8;
}

/* Featured Entertainment */
.featured-entertainment {
    padding: 5rem 2rem;
    background: rgba(30, 58, 138, 0.2);
}

.featured-entertainment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.feature-subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #c7d2fe;
}

.game-display-area {
    max-width: 1150px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #fbbf24;
    box-shadow: 0 10px 50px rgba(251, 191, 36, 0.3);
}

.game-window {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

/* Distinctive Features */
.distinctive-features {
    padding: 5rem 2rem;
}

.distinctive-features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.feature-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.showcase-item {
    text-align: center;
    padding: 2rem;
}

.showcase-symbol {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.showcase-item h3 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.showcase-item p {
    line-height: 1.8;
}

/* Philosophy */
.philosophy {
    padding: 5rem 2rem;
    background: rgba(30, 58, 138, 0.2);
}

.philosophy-box {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.7) 0%, rgba(49, 46, 129, 0.7) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.philosophy-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
}

.philosophy-box p {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 2rem;
}

.commitment-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.commitment-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.commitment-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.7) 0%, rgba(49, 46, 129, 0.7) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
    text-align: center;
}

.commitment-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.commitment-card p {
    line-height: 1.8;
}

/* Statistics Display */
.statistics-display {
    padding: 4rem 2rem;
    background: rgba(30, 58, 138, 0.2);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fbbf24;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.15rem;
    color: #c7d2fe;
}

/* Play Page */
.page-intro {
    padding: 4.5rem 2rem;
    text-align: center;
    background: rgba(30, 58, 138, 0.2);
}

.page-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 900;
}

.pre-game-info {
    padding: 3.5rem 2rem;
}

.game-instructions {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.7) 0%, rgba(49, 46, 129, 0.7) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.game-instructions h2 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-list {
    list-style: none;
    margin: 1.5rem 0;
}

.tech-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.play-notice {
    background: rgba(30, 58, 138, 0.4);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    margin-top: 1.5rem;
}

.gameplay-area {
    padding: 2.5rem 2rem 5rem;
}

.game-presentation {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #fbbf24;
    box-shadow: 0 10px 50px rgba(251, 191, 36, 0.3);
}

.primary-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.responsible-play {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.responsible-play h2 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Document Pages */
.document-header {
    padding: 4.5rem 2rem;
    text-align: center;
    background: rgba(30, 58, 138, 0.2);
}

.document-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 900;
}

.doc-date {
    color: #a5b4fc;
    font-size: 1.1rem;
}

.document-content {
    padding: 4rem 2rem;
}

.legal-prose {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.7) 0%, rgba(49, 46, 129, 0.7) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.legal-prose h2 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.legal-prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-prose ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-prose li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 4rem 2rem 2.5rem;
    border-top: 3px solid #fbbf24;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-block p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-links, .footer-menu {
    list-style: none;
}

.support-links li, .footer-menu li {
    margin-bottom: 0.75rem;
}

.support-links a, .footer-menu a {
    color: #c7d2fe;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover, .footer-menu a:hover {
    color: #fbbf24;
}

.copyright-text {
    color: #a5b4fc;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 75px);
        background: rgba(30, 27, 75, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        gap: 1.5rem;
    }

    .main-menu.active {
        right: 0;
    }

    .hero-text h1, .page-intro h1, .document-header h1 {
        font-size: 2.75rem;
    }

    .game-window {
        height: 450px;
    }

    .primary-game-frame {
        height: 550px;
    }

    .info-panels, .feature-showcase, .commitment-layout {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1, .page-intro h1, .document-header h1 {
        font-size: 2.25rem;
    }

    .gate-panel {
        padding: 2.5rem 1.75rem;
    }

    .gate-actions {
        flex-direction: column;
    }

    .game-window {
        height: 350px;
    }

    .primary-game-frame {
        height: 450px;
    }

    .legal-prose {
        padding: 2rem;
    }
}
