@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
    --burgundy-dark: #4a0d0d;
    --burgundy: #6b1a1a;
    --gold: #d4af37;
    --gold-light: #f0d77e;
    --cream: #fef9e7;
    --cream-dark: #f5e6c8;
    --text-dark: #2c1810;
    --shadow-elegant: 0 10px 40px rgba(74, 13, 13, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    z-index: 1000;
    box-shadow: var(--shadow-elegant);
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--cream);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.burger-menu span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--burgundy-dark), var(--burgundy));
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.close-mobile {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 120px 2rem 60px;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--burgundy-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.elegant-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0;
    box-shadow: var(--shadow-elegant);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.elegant-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 13, 13, 0.4);
    color: var(--burgundy-dark);
}

/* Info Cards */
.info-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--gold);
}

.info-card .symbol {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Game Area */
.game-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
}

.game-area h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.game-frame {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--text-dark);
    padding: 1rem;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Features */
.features {
    padding: 5rem 2rem;
    background: var(--cream);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--burgundy-dark);
    margin-bottom: 3rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-block {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--gold);
}

.feature-block .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-block h3 {
    font-size: 1.2rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.feature-block p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Content Pages */
.page-wrapper {
    padding: 100px 2rem 4rem;
    min-height: 100vh;
    background: var(--cream);
}

.content-area {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.content-area h1 {
    font-size: 2.5rem;
    color: var(--burgundy-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.content-area h2 {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin: 2.5rem 0 1rem;
}

.content-area p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.content-area ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-dark);
}

.content-area li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Play Page */
.play-intro {
    text-align: center;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.play-intro h1 {
    border: none;
    padding: 0;
}

.game-tip {
    background: var(--cream-dark);
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--gold);
    margin: 2rem auto;
    max-width: 700px;
}

.game-tip p {
    margin: 0;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    padding: 4rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.gambling-help {
    margin-bottom: 2rem;
}

.gambling-help p {
    color: var(--cream);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gambling-help a {
    color: var(--gold-light);
    margin: 0 1.2rem;
    font-size: 0.95rem;
}

.gambling-help a:hover {
    color: var(--gold);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-copy {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.dismissed {
    display: none;
}

.age-box {
    background: white;
    max-width: 480px;
    margin: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.age-box h2 {
    font-size: 2rem;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
}

.age-box p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.85;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-actions button {
    padding: 1rem 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
}

.btn-confirm:hover {
    transform: scale(1.05);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--burgundy) !important;
    color: var(--burgundy);
}

.btn-decline:hover {
    background: var(--burgundy);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .brand {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 1rem 40px;
    }
    
    .game-frame iframe {
        height: 400px;
    }
    
    .content-area {
        padding: 2rem 1.5rem;
    }
    
    .age-box {
        padding: 2rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .gambling-help a {
        display: block;
        margin: 0.5rem 0;
    }
}
