:root {
    --bg: #0a0a0a;
    --bg-soft: #141414;
    --gold: #d4af37;
    --gold-fade: rgba(212, 175, 55, 0.3);
    --crimson: #8b0000;
    --text: #e7e2d2;
    --muted: #b5ac91;
    --glass: rgba(18, 18, 18, 0.5);
    --border: rgba(212, 175, 55, 0.25);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
            radial-gradient(circle at 10% 10%, rgba(139, 0, 0, 0.18), transparent 30%),
            radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.12), transparent 35%),
            linear-gradient(180deg, #050505 0%, #0a0a0a 45%, #111 100%);
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.5rem;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: 0.4px;
}

p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold-fade);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.18);
    font-family: "Playfair Display", Georgia, serif;
}

.brand-text {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1rem;
    color: #f0e5bf;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-size: 0.92rem;
    color: var(--muted);
    transition: color 250ms ease;
}

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

.reserve-btn,
.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 0.62rem 1.2rem;
    border: 1px solid transparent;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.reserve-btn,
.btn-primary {
    background: linear-gradient(135deg, #9f7e1f, var(--gold));
    color: #1f1600;
    font-weight: 700;
}

.reserve-btn:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(20, 20, 20, 0.6);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.45);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    place-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    isolation: isolate;
    overflow: clip;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            repeating-linear-gradient(
                    120deg,
                    transparent 0 20px,
                    rgba(212, 175, 55, 0.03) 20px 24px
            ),
            linear-gradient(120deg, rgba(139, 0, 0, 0.2), rgba(10, 10, 10, 0.86));
    animation: moodShift 12s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 3rem);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero h1 span {
    color: #f5d771;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.hero-description {
    max-width: 64ch;
    margin: 0 auto 1.7rem;
    color: #dbd3bc;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.particle-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    --size: 18px;
    position: absolute;
    width: var(--size);
    aspect-ratio: 1;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
    transform: rotate(45deg);
    animation: drift 11s linear infinite;
}

.p1 { left: 10%; top: 72%; animation-delay: -2s; }
.p2 { left: 26%; top: 82%; --size: 12px; animation-duration: 9s; }
.p3 { left: 48%; top: 76%; --size: 22px; animation-duration: 12s; }
.p4 { left: 64%; top: 84%; animation-delay: -5s; }
.p5 { left: 77%; top: 79%; --size: 14px; animation-duration: 10s; }
.p6 { left: 89%; top: 86%; --size: 16px; animation-delay: -1s; }

.section {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(139, 0, 0, 0.1));
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.section-heading {
    margin-bottom: 1.7rem;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 4vw, 2.7rem);
}

.suite-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.suite-card,
.casino-tile,
.status-widget {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
}

.suite-card {
    padding: 1.4rem;
    min-height: 220px;
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
    position: relative;
}

.suite-card::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.suite-card:hover,
.casino-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.12);
}

.suite-card p,
.casino-tile p {
    color: #d6cfb8;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.casino-tile {
    padding: 1.3rem;
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.status-widget {
    padding: 1.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.status-item {
    background: rgba(10, 10, 10, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.status-label {
    color: var(--muted);
    font-size: 0.86rem;
    display: block;
}

.jackpot-value,
.table-value {
    margin: 0.4rem 0 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #f0d57c;
    font-family: "Playfair Display", Georgia, serif;
}

.status-note {
    grid-column: 1 / -1;
    margin: 0.3rem 0 0;
    color: #c9c0a8;
}

.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    background: #090909;
    padding: 2.5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.footer-grid h3,
.footer-grid h4 {
    color: #efd889;
}

.footer-grid p {
    color: #c6bfa8;
}

.luxury-cursor,
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 120;
    transform: translate(-50%, -50%);
}

.luxury-cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.18);
}

.cursor-glow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
}

@keyframes moodShift {
    from { filter: hue-rotate(0deg) saturate(100%); }
    to { filter: hue-rotate(13deg) saturate(125%); }
}

@keyframes drift {
    0% { transform: translateY(0) rotate(45deg); opacity: 0.35; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-88vh) rotate(315deg); opacity: 0; }
}

@media (max-width: 980px) {
    .suite-gallery,
    .casino-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.97);
        border-bottom: 1px solid var(--border);
        display: none;
        padding: 1rem 4%;
        flex-direction: column;
        gap: 0.6rem;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }
}

@media (max-width: 680px) {
    .brand-text {
        display: none;
    }

    .reserve-btn {
        display: none;
    }

    .suite-gallery,
    .casino-grid,
    .status-widget,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-content {
        border-radius: 18px;
    }
}
