* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.7;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.elite-header {
    background: linear-gradient(to right, #1a1a1a, #000000);
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.3rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-crown {
    font-size: 3rem;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    letter-spacing: 2px;
}

.elite-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-option {
    color: #e8e8e8;
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-option:hover,
.nav-option.selected {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    width: 27px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.primary-content {
    min-height: 50vh;
}

.prestige-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
    padding: 5rem 3rem;
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.prestige-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.prestige-statement {
    font-size: 1.3rem;
    color: #c8c8c8;
    max-width: 950px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.prestige-markers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.marker {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.suite-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.suite-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.welcome-suite {
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
}

.suite-narrative p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #c8c8c8;
    margin-bottom: 1.5rem;
}

.game-pavilion {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
}

.pavilion-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #c8c8c8;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.game-showcase {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    margin-bottom: 2rem;
}

.showcase-window {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-advisory {
    background: rgba(184, 134, 11, 0.15);
    border: 2px solid #b8860b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #daa520;
}

.excellence-markers {
    background: #0a0a0a;
}

.markers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.distinction-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2416);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.distinction-card:hover {
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
}

.card-emblem {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.card-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8b8;
}

.vital-notices {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
}

.notices-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.notice-panel {
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid;
    background: rgba(212, 175, 55, 0.05);
}

.notice-panel.gold-border {
    border-color: #d4af37;
}

.notice-panel.silver-border {
    border-color: #c0c0c0;
}

.notice-panel.bronze-border {
    border-color: #cd7f32;
}

.notice-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.notice-panel p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8b8;
}

.elite-footer {
    background: linear-gradient(to top, #000000, #1a1a1a);
    border-top: 3px solid #d4af37;
    padding: 3rem 3rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.segment-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.segment-content {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.segment-links {
    list-style: none;
}

.segment-links li {
    margin-bottom: 0.7rem;
}

.segment-links a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.segment-links a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.footer-line {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #888;
}

.gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.gate-box {
    background: linear-gradient(135deg, #1a1a1a, #2d2416);
    border: 4px solid #d4af37;
    border-radius: 20px;
    padding: 3rem;
    max-width: 580px;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.gate-emblem {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.gate-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.gate-message {
    font-size: 1.15rem;
    color: #e8e8e8;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.gate-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.btn-grant,
.btn-deny {
    padding: 1.2rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-grant {
    background: #2ecc71;
    border-color: #27ae60;
    color: #fff;
}

.btn-grant:hover {
    background: #27ae60;
    box-shadow: 0 0 25px rgba(46, 204, 113, 0.5);
    transform: scale(1.05);
}

.btn-deny {
    background: #e74c3c;
    border-color: #c0392b;
    color: #fff;
}

.btn-deny:hover {
    background: #c0392b;
    box-shadow: 0 0 25px rgba(231, 76, 60, 0.5);
    transform: scale(1.05);
}

.legal-chamber {
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    min-height: 60vh;
}

.chamber-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.chamber-date {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 3rem;
}

.chamber-document h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.chamber-document p,
.chamber-document ul {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #b8b8b8;
    margin-bottom: 1.2rem;
}

.chamber-document ul {
    margin-left: 2rem;
}

.chamber-document a {
    color: #d4af37;
    text-decoration: none;
}

.chamber-document a:hover {
    text-decoration: underline;
}

.play-introduction {
    background: linear-gradient(135deg, #1a1a1a, #2d2416);
    padding: 3.5rem 3rem;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.25rem;
    color: #c8c8c8;
    max-width: 850px;
    margin: 0 auto;
}

.play-chamber {
    background: #0a0a0a;
}

.chamber-guide {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.guide-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.chamber-guide p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 1rem;
}

.chamber-display {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.display-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .elite-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a, #2d2416);
        padding: 2rem;
        gap: 0.5rem;
        transition: left 0.4s ease;
        border-top: 3px solid #d4af37;
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
    }

    .elite-nav.active {
        left: 0;
    }

    .header-content {
        padding: 1rem 1.5rem;
    }

    .prestige-headline {
        font-size: 2.3rem;
    }

    .prestige-statement {
        font-size: 1.1rem;
    }

    .prestige-markers {
        flex-direction: column;
        gap: 1rem;
    }

    .suite-container {
        padding: 3rem 1.5rem;
    }

    .markers-grid {
        grid-template-columns: 1fr;
    }

    .showcase-window {
        height: 450px;
    }

    .display-frame {
        height: 550px;
    }

    .gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .gate-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-grant,
    .btn-deny {
        width: 100%;
    }
}
