@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --deep-brown: #1a1410;
    --rich-brown: #2d231a;
    --warm-brown: #3d2e1f;
    --gold-primary: #d4a853;
    --gold-light: #f5d590;
    --gold-pale: #ffefc7;
    --cream: #f8f4e8;
    --text-light: #e8dcc8;
    --text-muted: #a69880;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--deep-brown);
    color: var(--text-light);
    line-height: 1.75;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-light);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, var(--deep-brown), transparent);
    padding: 1.25rem 2rem;
    z-index: 800;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
}

.primary-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.primary-nav a:hover,
.primary-nav a.selected {
    color: var(--gold-primary);
}

.burger-menu {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu div {
    width: 26px;
    height: 2px;
    background: var(--gold-primary);
    margin: 6px 0;
    transition: 0.3s;
}

.slide-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 20, 16, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 799;
}

.slide-nav.visible {
    right: 0;
}

.slide-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--cream);
}

/* Page Content */
.page-content {
    padding-top: 80px;
}

/* Banner Section */
.banner-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: 
        linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(212, 168, 83, 0.03) 0%, transparent 50%),
        var(--deep-brown);
    text-align: center;
}

.banner-content {
    max-width: 900px;
}

.banner-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-content h1 span {
    color: var(--gold-primary);
}

.banner-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.golden-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--deep-brown);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.golden-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 83, 0.45);
    color: var(--deep-brown);
}

/* Highlights */
.highlights-row {
    padding: 5rem 2rem;
    background: var(--rich-brown);
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--warm-brown);
    border-radius: 8px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.highlight-item .symbol {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Display */
.game-display {
    padding: 5rem 2rem;
    background: var(--deep-brown);
}

.game-display-inner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.game-display h2 {
    font-size: 2.25rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.slot-frame {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    background: var(--rich-brown);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.slot-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Article Content */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.article-content h1 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 3rem;
}

.article-content h2 {
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin: 2.5rem 0 1rem;
}

.article-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.article-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.article-content li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    color: var(--text-muted);
    position: relative;
}

.article-content li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.75rem;
}

/* Footer */
.page-footer {
    background: var(--rich-brown);
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.support-links {
    margin-bottom: 2rem;
}

.support-links h5 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
}

.support-links a {
    margin: 0 1.25rem;
    font-size: 0.9rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-notice {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Age Overlay */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-overlay.closed {
    display: none;
}

.age-dialog {
    background: var(--warm-brown);
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    padding: 3rem;
    max-width: 460px;
    margin: 1rem;
    text-align: center;
}

.age-dialog h2 {
    font-size: 1.75rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.age-dialog p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-actions button {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--deep-brown);
}

.btn-decline {
    background: transparent;
    border: 1px solid var(--text-muted) !important;
    color: var(--text-muted);
}

.btn-accept:hover {
    transform: scale(1.05);
}

.btn-decline:hover {
    border-color: #c44 !important;
    color: #c44;
}

/* Responsive */
@media (max-width: 900px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .primary-nav {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .slot-frame {
        aspect-ratio: 4/3;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .support-links a {
        display: block;
        margin: 0.5rem 0;
    }
}
