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

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

:root {
    --midnight-blue: #0d1b2a;
    --ocean-deep: #1b3a4b;
    --teal-wave: #2d6a7c;
    --golden-sand: #d4a84f;
    --warm-cream: #faf3e0;
    --coral-accent: #e07a5f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--midnight-blue);
    color: var(--warm-cream);
    min-height: 100vh;
    line-height: 1.8;
}

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

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

a:hover {
    color: var(--coral-accent);
}

/* Top Navigation Bar */
.top-bar {
    background: linear-gradient(90deg, var(--ocean-deep), var(--midnight-blue));
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand svg {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--golden-sand);
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--golden-sand);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.open span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warm-cream);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--golden-sand);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--golden-sand);
}

/* Landing Banner */
.landing-banner {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--midnight-blue) 0%, var(--ocean-deep) 40%, var(--teal-wave) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 50px;
    position: relative;
}

.landing-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--midnight-blue), transparent);
}

.banner-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.banner-content h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--warm-cream);
    line-height: 1.2;
}

.banner-content h1 span {
    color: var(--golden-sand);
}

.banner-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(250, 243, 224, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.banner-btn {
    display: inline-block;
    background: var(--golden-sand);
    color: var(--midnight-blue);
    padding: 1.1rem 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: var(--coral-accent);
    color: var(--warm-cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 79, 0.3);
}

/* Information Strips */
.info-strips {
    background: var(--midnight-blue);
    padding: 5rem 2rem;
}

.strips-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-strip {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ocean-deep), rgba(45, 106, 124, 0.3));
    border-left: 5px solid var(--golden-sand);
    padding: 2rem 2.5rem;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.info-strip:hover {
    transform: translateX(10px);
}

.strip-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.strip-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--golden-sand);
}

.strip-content p {
    color: rgba(250, 243, 224, 0.8);
    font-size: 1rem;
}

/* Roulette Experience */
.roulette-area {
    background: linear-gradient(180deg, var(--midnight-blue), var(--ocean-deep));
    padding: 5rem 2rem;
}

.roulette-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.area-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.area-heading h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--warm-cream);
    margin-bottom: 1rem;
}

.area-heading p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 1.1rem;
}

.roulette-frame {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--golden-sand);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

/* Welcome Text */
.welcome-section {
    background: var(--midnight-blue);
    padding: 6rem 2rem;
}

.welcome-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.welcome-box h2 {
    font-size: 2.5rem;
    color: var(--golden-sand);
    margin-bottom: 2rem;
}

.welcome-box p {
    font-size: 1.15rem;
    color: rgba(250, 243, 224, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Bottom Footer */
.bottom-footer {
    background: linear-gradient(90deg, var(--ocean-deep), var(--midnight-blue));
    border-top: 1px solid rgba(212, 168, 79, 0.3);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.gambling-help {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 79, 0.2);
}

.gambling-help p {
    font-size: 0.9rem;
    color: rgba(250, 243, 224, 0.7);
    margin-bottom: 1rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-links a {
    font-size: 0.85rem;
}

.copyright-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(250, 243, 224, 0.5);
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

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

.age-box {
    background: linear-gradient(145deg, var(--ocean-deep), var(--midnight-blue));
    border: 2px solid var(--golden-sand);
    border-radius: 16px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
}

.age-box h2 {
    font-size: 2rem;
    color: var(--golden-sand);
    margin-bottom: 1.5rem;
}

.age-box p {
    color: var(--warm-cream);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.age-confirm, .age-deny {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 6px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-confirm {
    background: var(--golden-sand);
    color: var(--midnight-blue);
}

.age-confirm:hover {
    background: var(--coral-accent);
    color: var(--warm-cream);
}

.age-deny {
    background: transparent;
    color: var(--warm-cream);
    border: 2px solid var(--teal-wave);
}

.age-deny:hover {
    background: var(--teal-wave);
}

/* Page Layouts */
.page-wrapper {
    padding: 100px 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: calc(100vh - 250px);
}

.page-wrapper h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--golden-sand);
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-wrapper h2 {
    font-size: 1.6rem;
    color: var(--warm-cream);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 168, 79, 0.3);
}

.page-wrapper p {
    color: rgba(250, 243, 224, 0.9);
    margin-bottom: 1.2rem;
}

.page-wrapper ul {
    margin: 1rem 0 1.5rem 2rem;
    color: rgba(250, 243, 224, 0.85);
}

.page-wrapper li {
    margin-bottom: 0.6rem;
}

/* Play Page */
.play-area {
    padding: 100px 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.play-area h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--golden-sand);
    margin-bottom: 1rem;
}

.play-note {
    text-align: center;
    color: rgba(250, 243, 224, 0.7);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--midnight-blue);
        transition: right 0.4s ease;
        padding: 90px 2rem 2rem;
        border-left: 1px solid var(--teal-wave);
    }

    .nav-menu.visible {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .landing-banner {
        padding: 90px 1.5rem 40px;
    }

    .info-strip {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .info-strip:hover {
        transform: translateY(-5px);
    }

    .roulette-frame iframe {
        height: 480px;
    }

    .age-actions {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.4rem;
    }

    .roulette-frame iframe {
        height: 380px;
    }
}
