* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1A0A3E, #2D1B54, #1A0A3E);
    color: #E8DCC8;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container.narrow {
    max-width: 950px;
}

/* Age Verification */
.verification-screen {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 62, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.verification-screen.hidden {
    display: none;
}

.verification-panel {
    background: linear-gradient(145deg, #2D1B54, #1A0A3E);
    border: 3px solid #D4AF37;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 560px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.4);
}

.verification-emblem {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.verification-panel h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.verification-panel p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #C4B5A0;
    margin-bottom: 2rem;
}

.verification-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verification-actions button {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-yes {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A0A3E;
    border: 2px solid #D4AF37;
}

.verify-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.verify-no {
    background: #3a2a5a;
    color: #888;
    border: 2px solid #4a3a6a;
}

.verify-no:hover {
    background: #4a3a6a;
}

/* Header */
.main-header {
    background: rgba(26, 10, 62, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-option {
    color: #C4B5A0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-option:hover,
.nav-option.current {
    color: #FFD700;
    border-bottom-color: #D4AF37;
}

/* Grand Entrance */
.grand-entrance {
    padding: 5rem 0;
    background: linear-gradient(145deg, #2D1B54, #1A0A3E);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.entrance-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.grand-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.grand-subtitle {
    font-size: 1.35rem;
    color: #C4B5A0;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.prestige-markers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.marker {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.marker-symbol {
    color: #FFD700;
    font-size: 1.5rem;
}

.marker-label {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Featured Experience */
.featured-experience {
    padding: 4.5rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-heading p {
    font-size: 1.2rem;
    color: #9a8a70;
}

.experience-frame {
    background: rgba(45, 27, 84, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.experience-frame iframe {
    width: 100%;
    height: 730px;
    border: none;
    border-radius: 10px;
}

/* Distinctive Features */
.distinctive-features {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #1A0A3E, #2D1B54);
}

.feature-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.5rem;
}

.feature-element {
    background: rgba(45, 27, 84, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2.8rem;
    transition: all 0.4s ease;
}

.feature-element:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.element-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-element h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.2rem;
}

.feature-element p {
    color: #C4B5A0;
    line-height: 1.9;
}

/* Essential Notices */
.essential-notices {
    padding: 4.5rem 0;
}

.notice-panel {
    background: rgba(212, 175, 55, 0.08);
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 3.5rem;
}

.notice-panel h3 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 2.5rem;
    text-align: center;
}

.declaration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.declaration-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.declaration-item p {
    color: #C4B5A0;
    line-height: 1.9;
}

/* Invitation Banner */
.invitation-banner {
    padding: 5.5rem 0;
    background: linear-gradient(145deg, #2D1B54, #1A0A3E);
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.invitation-content h2 {
    font-size: 3.3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1.2rem;
}

.invitation-content p {
    font-size: 1.3rem;
    color: #9a8a70;
    margin-bottom: 3rem;
}

.invitation-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A0A3E;
    padding: 1.4rem 3.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #D4AF37;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.invitation-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

/* Interior Pages */
.interior-banner {
    padding: 4rem 0;
    background: linear-gradient(145deg, #2D1B54, #1A0A3E);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.interior-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.document-date {
    color: #7a6a50;
    font-size: 1rem;
}

/* Gameplay Guidance */
.gameplay-guidance {
    padding: 3.5rem 0;
}

.guidance-box {
    background: rgba(45, 27, 84, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2.8rem;
}

.guidance-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.guidance-box p {
    color: #C4B5A0;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.guidance-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.guidance-point {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.point-icon {
    font-size: 2rem;
}

.point-detail {
    font-size: 1rem;
    font-weight: 500;
}

/* Gaming Chamber */
.gaming-chamber {
    padding: 2.5rem 0 5rem 0;
}

.chamber-frame {
    background: rgba(45, 27, 84, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.chamber-frame iframe {
    width: 100%;
    height: 730px;
    border: none;
    border-radius: 10px;
}

/* Document Section */
.document-section {
    padding: 4.5rem 0;
}

.formal-document h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    margin: 2.8rem 0 1.5rem 0;
    letter-spacing: 0.5px;
}

.formal-document h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #FFA500;
    margin: 2.2rem 0 1.2rem 0;
}

.formal-document p {
    margin-bottom: 1.5rem;
    color: #C4B5A0;
    line-height: 1.95;
}

.formal-document ul {
    margin: 1.5rem 0 2rem 2.5rem;
    color: #C4B5A0;
}

.formal-document li {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.formal-document a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.formal-document a:hover {
    color: #FFA500;
    text-decoration: underline;
}

.emphasis-panel {
    background: rgba(212, 175, 55, 0.12);
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 2.3rem;
    margin-top: 3rem;
}

.emphasis-panel strong {
    color: #FFD700;
    font-size: 1.2rem;
}

.emphasis-panel.important h3 {
    font-size: 1.9rem;
    color: #FFD700;
    margin-bottom: 1.8rem;
}

.emphasis-panel.important ul {
    list-style: none;
    margin: 0;
}

.emphasis-panel.important li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.emphasis-panel.important li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Footer */
.grand-footer {
    background: rgba(26, 10, 62, 0.95);
    border-top: 2px solid rgba(212, 175, 55, 0.4);
    padding: 4.5rem 0 2rem 0;
    margin-top: 4.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-segment h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.3rem;
    letter-spacing: 0.5px;
}

.footer-segment p {
    color: #9a8a70;
    line-height: 1.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: #C4B5A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-seal {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2.5rem;
    text-align: center;
    color: #7a6a50;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 10, 62, 0.98);
        flex-direction: column;
        gap: 0;
        display: none;
        border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    }

    .primary-nav.active {
        display: flex;
    }

    .nav-option {
        padding: 1.3rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .grand-title {
        font-size: 2.5rem;
    }

    .grand-subtitle {
        font-size: 1.1rem;
    }

    .prestige-markers {
        flex-direction: column;
        align-items: center;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .experience-frame iframe,
    .chamber-frame iframe {
        height: 500px;
    }

    .feature-collection,
    .declaration-grid {
        grid-template-columns: 1fr;
    }

    .invitation-content h2,
    .interior-banner h1 {
        font-size: 2.3rem;
    }

    .verification-panel {
        padding: 2.5rem 2rem;
        margin: 1rem;
    }

    .verification-panel h2 {
        font-size: 1.9rem;
    }

    .verification-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .formal-document h2 {
        font-size: 1.8rem;
    }
}
