* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --light-gold: #c9a86a;
    --dark-red: #8b0000;
    --crimson: #c41e3a;
    --deep-black: #0d0d0d;
    --charcoal: #1a1a1a;
    --dark-gray: #2d2d2d;
    --text-gold: #e6c86a;
    --text-cream: #f5f0e8;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
    color: var(--text-cream);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.page-header {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 2px solid var(--gold);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-button {
    color: var(--text-cream);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-button:hover,
.nav-button.active {
    color: var(--gold);
}

.nav-button:hover::after,
.nav-button.active::after {
    width: 100%;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-trigger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-overlay {
    display: none;
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 2px solid var(--gold);
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.mobile-overlay.active {
    display: flex;
}

.mobile-overlay a {
    color: var(--text-cream);
    text-decoration: none;
    padding: 18px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-overlay a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero */
.showcase-hero {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--crimson) 100%);
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.showcase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: glow 6s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-wrapper {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hero-description {
    font-size: 24px;
    color: var(--text-cream);
    margin-bottom: 35px;
}

.hero-action {
    display: inline-block;
    padding: 16px 50px;
    background: var(--gold);
    color: var(--deep-black);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
    background: var(--text-gold);
}

/* Sections */
.introduction, .pillars, .showcase-game, .advantages, .responsibility,
.play-intro-section, .play-instructions, .play-stage,
.document-hero, .document-section {
    padding: 70px 0;
}

.intro-panel {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--charcoal) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.intro-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
}

.intro-panel p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Section Heading */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    color: var(--gold);
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Pillars */
.pillars-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-box {
    background: var(--dark-gray);
    border: 2px solid;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.box-red { border-color: var(--crimson); }
.box-gold { border-color: var(--gold); }
.box-dark { border-color: var(--charcoal); }

.pillar-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.3);
}

.pillar-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.pillar-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.pillar-box p {
    font-size: 16px;
    line-height: 1.7;
}

/* Game Showcase */
.game-presentation {
    text-align: center;
    margin-bottom: 40px;
}

.game-presentation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 15px;
}

.game-presentation p {
    font-size: 18px;
}

.game-viewer {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    border: 3px solid var(--gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.3);
}

.game-viewer iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-action {
    text-align: center;
    margin-top: 30px;
}

.action-link {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: var(--text-gold);
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: var(--dark-gray);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
}

.advantage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* Responsibility */
.responsibility-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--charcoal) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.responsibility-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 25px;
}

.responsibility-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Play Page */
.play-intro-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--crimson) 100%);
    text-align: center;
    padding: 60px 30px;
    border-bottom: 3px solid var(--gold);
}

.play-intro-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: white;
    margin-bottom: 15px;
}

.play-lead {
    font-size: 22px;
    color: var(--text-cream);
}

.instructions-panel {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.instructions-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.instructions-list {
    margin-bottom: 25px;
}

.instruction-row {
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
}

.instruction-row strong {
    color: var(--gold);
}

.instructions-note {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.play-stage {
    background: var(--deep-black);
}

.game-stage {
    max-width: 100%;
    background: #000;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.3);
}

.game-stage iframe {
    width: 100%;
    height: 750px;
    display: block;
}

/* Document Pages */
.document-hero {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--crimson) 100%);
    text-align: center;
    padding: 60px 30px;
    border-bottom: 3px solid var(--gold);
}

.alert-style {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
}

.document-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: white;
    margin-bottom: 15px;
}

.document-date {
    font-size: 16px;
    color: var(--text-cream);
}

.document-text {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.document-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.document-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--light-gold);
    margin-top: 25px;
    margin-bottom: 15px;
}

.document-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.document-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.document-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Critical Notices */
.critical-notice {
    background: rgba(139, 0, 0, 0.2);
    border: 3px solid var(--crimson);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.critical-notice h2 {
    color: #ff4444 !important;
    border-bottom-color: var(--crimson) !important;
}

.summary-panel {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 30px;
    margin: 25px 0;
}

.summary-panel ul {
    list-style: none;
}

.summary-panel li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-panel li:last-child {
    border-bottom: none;
}

/* Verification Modal */
.verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verification-modal.active {
    display: flex;
}

.verification-content {
    background: linear-gradient(135deg, var(--charcoal), var(--deep-black));
    border: 3px solid var(--gold);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.verification-seal {
    font-size: 64px;
    margin-bottom: 20px;
}

.verification-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 25px;
}

.verification-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.verification-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-grant, .btn-deny {
    flex: 1;
    padding: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-grant {
    background: var(--gold);
    color: var(--deep-black);
    border-color: var(--gold);
}

.btn-grant:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-deny {
    background: transparent;
    color: var(--text-cream);
    border-color: var(--dark-gray);
}

.btn-deny:hover {
    background: var(--dark-gray);
    border-color: var(--text-cream);
}

/* Footer */
.page-footer {
    background: var(--deep-black);
    border-top: 3px solid var(--gold);
    padding: 50px 0 25px;
    margin-top: 70px;
}

.footer-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-segment h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-segment p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-segment a {
    display: block;
    color: var(--text-cream);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-segment a:hover {
    color: var(--gold);
}

.footer-base {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-base p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .header-nav {
        display: none;
    }

    .menu-trigger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .pillars-row, .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container, .container-wide {
        padding: 0 20px;
    }

    .showcase-hero {
        padding: 70px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-panel, .responsibility-card, .instructions-panel, .document-text {
        padding: 30px;
    }

    .game-viewer iframe {
        height: 400px;
    }

    .game-stage iframe {
        height: 500px;
    }

    .footer-structure {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .verification-buttons {
        flex-direction: column;
    }
}
