@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --burgundy: #722f37;
    --dark-red: #4a1c20;
    --cream: #fdf6e3;
    --black: #1a1a1a;
    --charcoal: #2d2d2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.8;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26,26,26,0.98) 0%, rgba(26,26,26,0.9) 100%);
    border-bottom: 2px solid var(--gold);
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-symbol {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    border: 3px solid var(--gold-light);
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-menu a {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--cream);
    padding: 8px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu a:hover {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--burgundy) 50%, var(--charcoal) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 3rem 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L50 30H80L55 50L65 80L40 60L15 80L25 50L0 30H30L40 0Z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--cream);
    max-width: 800px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Notice Cards */
.notice-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.notice-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 1rem 1.8rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-card span:first-child {
    font-size: 1.5rem;
}

.notice-card span:last-child {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Game Display */
.game-showcase {
    padding: 5rem 3rem;
    background: var(--charcoal);
}

.game-showcase-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.game-container {
    background: linear-gradient(145deg, var(--burgundy), var(--dark-red));
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.game-embed {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 4px;
}

/* Highlights Section */
.highlights {
    padding: 6rem 3rem;
    background: var(--black);
}

.highlights-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 4rem;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.highlight-item {
    background: linear-gradient(145deg, var(--charcoal), var(--black));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
}

.highlight-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-item h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-item p {
    color: rgba(253, 246, 227, 0.75);
    line-height: 1.7;
}

/* About Panels */
.about-panels {
    padding: 5rem 3rem;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.about-panels-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.panel {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.panel h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.panel p {
    color: var(--cream);
    opacity: 0.85;
}

/* Footer */
.site-footer {
    background: var(--black);
    border-top: 2px solid var(--gold);
    padding: 4rem 3rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--cream);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: var(--gold);
}

.gambling-resources {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.gambling-resources p {
    color: rgba(253, 246, 227, 0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-links a {
    color: var(--gold);
    font-size: 0.85rem;
}

.copyright-text {
    margin-top: 2rem;
    color: rgba(253, 246, 227, 0.4);
    font-size: 0.8rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-gate-box {
    background: linear-gradient(145deg, var(--burgundy), var(--dark-red));
    border: 3px solid var(--gold);
    padding: 3.5rem;
    max-width: 520px;
    text-align: center;
    border-radius: 4px;
}

.age-gate-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.age-gate-box p {
    color: var(--cream);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.age-gate-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.btn-age {
    padding: 1rem 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-yes {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-no {
    background: transparent;
    border: 2px solid var(--cream);
    color: var(--cream);
}

.btn-no:hover {
    background: var(--cream);
    color: var(--black);
}

.hidden {
    display: none !important;
}

/* Page Content */
.page-main {
    padding: 140px 3rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
    min-height: calc(100vh - 250px);
}

.page-main h1 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.page-main h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 1rem;
}

.page-main h2 {
    color: var(--gold);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
}

.page-main p {
    color: var(--cream);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.page-main ul {
    margin: 1.2rem 0 1.2rem 2rem;
    color: var(--cream);
    opacity: 0.9;
}

.page-main li {
    margin-bottom: 0.6rem;
}

/* Play Page */
.play-page {
    padding: 140px 3rem 5rem;
    background: var(--charcoal);
    min-height: 100vh;
}

.play-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.play-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.play-title h1 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.play-title p {
    color: var(--cream);
    opacity: 0.85;
    font-size: 1.1rem;
}

.play-instructions {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 2rem;
    margin-top: 2.5rem;
    border-radius: 4px;
}

.play-instructions h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.play-instructions p {
    color: var(--cream);
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-menu {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 2px solid var(--gold);
    }

    .main-menu.open {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .notice-row {
        flex-direction: column;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 380px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .age-gate-box {
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .page-main h1 {
        font-size: 2rem;
    }

    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
}
