@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4ba;
    --gold-dark: #9a7b2c;
    --bg-dark: #1a1612;
    --bg-darker: #0f0d0a;
    --card-bg: #252118;
    --text-cream: #f5f0e6;
    --text-muted: #a09080;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--bg-dark);
    color: var(--text-cream);
    line-height: 1.8;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-darker), transparent);
    padding: 1.2rem 0;
}

.main-header.scrolled {
    background: rgba(15, 13, 10, 0.98);
    border-bottom: 1px solid var(--gold-dark);
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.primary-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-cream);
}

.primary-nav a:hover {
    color: var(--gold-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

/* Banner */
.banner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(rgba(15, 13, 10, 0.7), rgba(15, 13, 10, 0.9)),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E");
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    line-height: 1.2;
}

.banner p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
}

.btn-elegant {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-elegant:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

/* Important Notices */
.important-notices {
    padding: 5rem 2rem;
    background: var(--bg-darker);
}

.notices-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.notice-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--card-bg);
}

.notice-symbol {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.notice-item h3 {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.notice-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Game Area */
.game-area {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.game-frame {
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid var(--gold-dark);
    background: var(--bg-darker);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Features */
.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.features-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 3rem;
    background: var(--card-bg);
    border-left: 3px solid var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.9;
}

.feature-card ul {
    list-style: none;
    margin-top: 1rem;
}

.feature-card li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.feature-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.7rem;
}

/* Footer */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-nav a {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-cream);
}

.gambling-help {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.gambling-help h4 {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.gambling-help a {
    margin: 0 1.2rem;
    font-size: 0.95rem;
}

.copyright-text {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 8, 5, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.age-box {
    background: var(--card-bg);
    border: 2px solid var(--gold-primary);
    padding: 4rem 3rem;
    max-width: 480px;
    text-align: center;
}

.age-box h2 {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.age-box p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.confirm {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

.age-btn.decline {
    background: transparent;
    color: var(--gold-primary);
}

.age-btn:hover {
    transform: translateY(-2px);
}

/* Page Styles */
.page-wrapper {
    min-height: 100vh;
    padding: 9rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-wrapper h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.page-wrapper h2 {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin: 2.5rem 0 1rem;
}

.page-wrapper p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.page-wrapper ul, .page-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.page-wrapper li {
    margin-bottom: 0.6rem;
}

/* Mobile */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 13, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--gold-dark);
    }

    .primary-nav.open {
        transform: translateY(0);
    }

    .header-inner {
        padding: 0 1.5rem;
    }

    .banner {
        padding: 8rem 1.5rem 4rem;
    }

    .game-frame iframe {
        height: 380px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .age-actions {
        flex-direction: column;
    }
}
