* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1520 0%, #2d1f35 50%, #3d2545 100%);
    color: #f5f0e8;
    line-height: 1.8;
    min-height: 100vh;
}

.wrap {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Verification Modal */
.verification-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.verification-modal.active {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #2d1f35 0%, #3d2545 100%);
    padding: 55px 45px;
    border-radius: 25px;
    border: 3px solid #d4af37;
    box-shadow: 0 0 70px rgba(212, 175, 55, 0.5);
    text-align: center;
    max-width: 520px;
    width: 100%;
}

.verify-icon {
    font-size: 4.5em;
    margin-bottom: 25px;
}

.verification-box h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.verification-box p {
    font-size: 1.15em;
    margin-bottom: 12px;
}

.verify-q {
    font-weight: 600;
    margin-top: 20px;
}

.verify-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.accept-btn, .reject-btn {
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.accept-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4cf67 100%);
    color: #1a1520;
}

.accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.reject-btn {
    background: #3a3a3a;
    color: white;
}

.reject-btn:hover {
    background: #555;
}

/* Header */
.site-header {
    background: rgba(26, 21, 32, 0.95);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 25px rgba(212, 175, 55, 0.3);
}

.header-wrap {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    color: #d4af37;
    font-weight: 700;
}

.mobile-nav-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #d4af37;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-nav-btn span {
    width: 28px;
    height: 3px;
    background: #1a1520;
    border-radius: 2px;
    transition: 0.3s;
}

.primary-nav {
    display: flex;
    gap: 25px;
}

.primary-nav a {
    color: #f5f0e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
}

.primary-nav a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Banner */
.banner, .top-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 207, 103, 0.08) 100%);
    padding: 70px 30px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    margin-bottom: 50px;
}

.banner h2, .top-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5em;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: 700;
}

.banner-text {
    font-size: 1.35em;
    line-height: 1.9;
    max-width: 950px;
    margin: 0 auto;
}

.top-banner p {
    font-size: 1.2em;
    color: #ddc89e;
}

/* Sections */
.welcome, .pillars, .mandates, .showcase, .virtues, .numbers, .covenant, 
.invitation, .guide, .gaming, .notes, .blessing {
    padding: 60px 0;
}

.welcome h3, .pillars h3, .mandates h3, .showcase h3, .virtues h3, 
.numbers h3, .covenant h3, .invitation h3, .guide h3, .gaming h3, 
.notes h3, .blessing h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6em;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.welcome p, .covenant p, .invitation p, .blessing p {
    font-size: 1.15em;
    margin-bottom: 22px;
}

/* Pillar Row */
.pillar-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    background: rgba(212, 175, 55, 0.08);
    padding: 35px;
    border-radius: 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.3);
}

.pillar-symbol {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.pillar h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 1.6em;
    margin-bottom: 15px;
}

/* Mandates */
.mandate-set {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.mandate {
    padding: 35px;
    border-radius: 18px;
    border: 3px solid;
}

.mandate.divine {
    background: rgba(220, 50, 50, 0.12);
    border-color: #dc3232;
}

.mandate.celestial {
    background: rgba(240, 150, 0, 0.12);
    border-color: #f09600;
}

.mandate.eternal {
    background: rgba(240, 190, 0, 0.12);
    border-color: #f0be00;
}

.mandate h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #d4af37;
}

/* Showcase */
.showcase-intro {
    font-size: 1.15em;
    text-align: center;
    margin-bottom: 35px;
}

.game-display, .gaming-box {
    max-width: 950px;
    margin: 0 auto 30px;
    border: 4px solid #d4af37;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.game-embed, .gaming-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.play-reminder {
    background: rgba(212, 175, 55, 0.15);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Virtue Tiles */
.virtue-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.virtue-tile {
    background: rgba(212, 175, 55, 0.08);
    padding: 30px;
    border-radius: 18px;
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.virtue-tile h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Number Display */
.number-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.number-item {
    background: rgba(212, 175, 55, 0.12);
    padding: 40px;
    border-radius: 18px;
    border: 3px solid #d4af37;
    text-align: center;
}

.num-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8em;
    color: #d4af37;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.num-desc {
    font-size: 1.15em;
    color: #ddc89e;
    font-weight: 600;
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.guide-box {
    background: rgba(212, 175, 55, 0.08);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    text-align: center;
}

.guide-symbol {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.guide-box h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 12px;
}

/* Notes */
.notes-container {
    background: rgba(212, 175, 55, 0.15);
    padding: 35px;
    border-radius: 18px;
    border: 3px solid #d4af37;
    max-width: 850px;
    margin: 0 auto;
}

.notes-list {
    list-style-position: inside;
    font-size: 1.1em;
}

.notes-list li {
    margin-bottom: 15px;
}

/* Legal Area */
.legal-area {
    padding: 50px 0;
}

.law-items {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.law-item {
    background: rgba(212, 175, 55, 0.08);
    padding: 35px;
    border-radius: 18px;
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.law-item h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 18px;
}

.law-item p {
    margin-bottom: 16px;
    font-size: 1.08em;
}

.law-item ul {
    margin: 18px 0;
    padding-left: 28px;
}

.law-item li {
    margin-bottom: 10px;
    font-size: 1.08em;
}

/* Footer */
.site-footer {
    background: rgba(26, 21, 32, 0.95);
    border-top: 2px solid #d4af37;
    padding: 50px 30px 25px;
    margin-top: 60px;
}

.footer-cols {
    max-width: 1250px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.foot-col h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 18px;
}

.foot-col p {
    margin-bottom: 12px;
}

.foot-col a {
    display: block;
    color: #ddc89e;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.foot-col a:hover {
    color: #d4af37;
}

.footer-end {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    color: #ddc89e;
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-nav-btn {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 21, 32, 0.98);
        width: 100%;
        padding: 30px;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 2px solid #d4af37;
    }
    
    .primary-nav.open {
        left: 0;
    }
    
    .banner h2, .top-banner h2 {
        font-size: 2.4em;
    }
    
    .banner-text {
        font-size: 1.15em;
    }
    
    .game-embed, .gaming-embed {
        height: 450px;
    }
    
    .verification-box {
        padding: 40px 25px;
    }
    
    .verify-btns {
        flex-direction: column;
    }
    
    .pillar-row, .guide-grid {
        grid-template-columns: 1fr;
    }
}
