@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg-rich: #0f0f0a;
    --bg-elegant: #1a1a12;
    --bg-panel: #252518;
    --gold: #fbbf24;
    --gold-light: #fde68a;
    --gold-dark: #d97706;
    --ivory: #fffbeb;
    --gray: #a8a897;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-rich);
    color: var(--ivory);
    line-height: 1.8;
    min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-weight: 600; }

a { color: var(--gold); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold-light); }

/* Header */
.lux-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-dark);
}

.header-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand { display: flex; align-items: center; gap: 12px; }
.logo-brand svg { width: 46px; height: 46px; }
.logo-brand span { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--gold); font-weight: 600; letter-spacing: 2px; }

.nav-luxury { display: flex; gap: 2.5rem; }
.nav-luxury a { color: var(--gray); font-weight: 500; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }
.nav-luxury a:hover { color: var(--gold); }

.menu-icon { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; }
.menu-icon span { width: 28px; height: 2px; background: var(--gold); transition: 0.3s; }
.menu-icon.open span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.menu-icon.open span:nth-child(2) { opacity: 0; }
.menu-icon.open span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.nav-mobile { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-elegant); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 1.1rem 2rem; color: var(--gray); border-bottom: 1px solid var(--bg-panel); font-size: 0.9rem; }

main { padding-top: 82px; }

/* Hero */
.grand-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-elegant) 0%, var(--bg-rich) 100%);
    position: relative;
}

.grand-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-text { max-width: 900px; position: relative; }
.hero-text h1 { font-size: 4.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-text p { font-size: 1.15rem; color: var(--gray); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.gold-btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-rich);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s;
}
.gold-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3); color: var(--bg-rich); }

/* Pillars */
.pillar-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 5rem 2rem;
    background: var(--bg-elegant);
}

.pillar {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-elegant));
    border: 1px solid var(--gold-dark);
    padding: 2.5rem 2rem;
    text-align: center;
}

.pillar .symbol { font-size: 3rem; margin-bottom: 1.5rem; }
.pillar h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.pillar p { color: var(--gray); font-size: 0.95rem; }

/* Game */
.game-chamber { padding: 5rem 2rem; }
.game-chamber h2 { text-align: center; font-size: 2.8rem; margin-bottom: 2.5rem; }

.game-showcase {
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid var(--gold);
    background: #000;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.15);
}
.game-showcase iframe { width: 100%; height: 620px; border: none; display: block; }

/* Luxuries */
.luxuries { padding: 5rem 2rem; background: var(--bg-elegant); }
.luxuries h2 { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; }
.lux-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.lux-item { text-align: center; padding: 2rem; border: 1px solid var(--bg-panel); }
.lux-item .ico { font-size: 2.5rem; margin-bottom: 1rem; }
.lux-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.lux-item p { color: var(--gray); font-size: 0.9rem; }

/* Play Page */
.play-intro { padding: 4rem 2rem 2rem; text-align: center; background: var(--bg-elegant); }
.play-intro h1 { font-size: 3rem; margin-bottom: 1rem; }
.play-intro p { color: var(--gray); max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

.play-chamber { padding: 2rem; }
.play-chamber .game-showcase { max-width: 1300px; }
.play-chamber .game-showcase iframe { height: 700px; }

.instructions { max-width: 850px; margin: 2.5rem auto 0; background: var(--bg-panel); padding: 2.5rem; border: 1px solid var(--gold-dark); }
.instructions h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.instructions p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0.6rem; }

/* Text Pages */
.content-area { padding: 5rem 2rem; max-width: 950px; margin: 0 auto; }
.content-area h1 { font-size: 3rem; text-align: center; margin-bottom: 2.5rem; }
.content-area h2 { font-size: 1.6rem; margin-top: 3rem; margin-bottom: 1rem; }
.content-area p { color: var(--gray); margin-bottom: 1.5rem; font-size: 1rem; }
.content-area ul { list-style: none; margin: 1.5rem 0; }
.content-area ul li { padding: 0.75rem 0 0.75rem 2rem; color: var(--gray); position: relative; }
.content-area ul li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }

/* Footer */
.royal-footer { background: var(--bg-elegant); border-top: 1px solid var(--gold-dark); padding: 4rem 2rem; margin-top: 5rem; }
.footer-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-content h4 { font-size: 1.2rem; margin-bottom: 2rem; color: var(--gray); }
.support-btns { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.support-btns a { padding: 0.75rem 1.5rem; border: 1px solid var(--gold); color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.support-btns a:hover { background: var(--gold); color: var(--bg-rich); }
.copyright { color: var(--gray); font-size: 0.85rem; padding-top: 2rem; border-top: 1px solid var(--bg-panel); }

/* Age Modal */
.age-gate { position: fixed; inset: 0; background: rgba(0,0,0,0.97); display: flex; align-items: center; justify-content: center; z-index: 99999; }
.age-gate.hidden { display: none; }
.age-dialog { background: linear-gradient(180deg, var(--bg-panel), var(--bg-elegant)); border: 2px solid var(--gold); padding: 3rem; max-width: 480px; text-align: center; }
.age-dialog h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.age-dialog p { color: var(--gray); margin-bottom: 2.5rem; font-size: 1rem; }
.age-actions { display: flex; gap: 1.5rem; justify-content: center; }
.age-actions button { padding: 1rem 2.5rem; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-accept { background: var(--gold); color: var(--bg-rich); border: none; }
.btn-accept:hover { background: var(--gold-light); }
.btn-decline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }

@media (max-width: 900px) { .lux-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .nav-luxury { display: none; }
    .menu-icon { display: flex; }
    .grand-hero h1 { font-size: 2.8rem; }
    .game-showcase iframe { height: 420px; }
    .play-chamber .game-showcase iframe { height: 500px; }
    .pillar-section { flex-direction: column; align-items: center; }
    .pillar { max-width: 100%; }
    .age-dialog { margin: 1rem; padding: 2rem; }
    .age-actions { flex-direction: column; }
    .support-btns { flex-direction: column; align-items: center; }
}
