
/* ------------------------------------------------
    RACK & ROLL BILLIARD - MAIN STYLES
    Modern, premium billiard hall template
    Organized by sections with responsive breakpoints
------------------------------------------------ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #c9a03d;
    --primary-dark: #a07e2e;
    --primary-light: #e0b853;
    --secondary: #2c3e2f;
    --dark: #0f1417;
    --darker: #0a0d10;
    --light: #f5f5f0;
    --gray: #8a8d91;
    --glass-bg: rgba(15, 20, 23, 0.7);
    --glass-border: rgba(201, 160, 61, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Responsive breakpoints */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0d10 0%, #141a1f 100%);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ============================================
   2. CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============================================
   3. DECORATIVE ELEMENTS & ANIMATIONS
   ============================================ */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatBlob 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: 10%;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #5a3e1b;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}

.floating-sticker {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatSticker 15s infinite linear;
    filter: drop-shadow(0 0 10px rgba(201, 160, 61, 0.3));
}

.sticker-1 {
    top: 15%;
    left: 85%;
    animation-duration: 12s;
}

.sticker-2 {
    top: 70%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: -3s;
}

.sticker-3 {
    top: 40%;
    left: 90%;
    animation-duration: 14s;
    animation-delay: -7s;
}

@keyframes floatSticker {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Wave Background */
.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   4. NAVBAR & NAVIGATION
   ============================================ */
.navbar {
    background: transparent;
    backdrop-filter: none;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 160, 61, 0.2);
}

/* Navbar brand styling */
.navbar-brand {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light) !important;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    font-size: 1.6rem;
}

.brand-icon {
    margin-right: 8px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    opacity: 0.9;
}

.navbar.scrolled .nav-link {
    color: var(--gray) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    opacity: 1;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
}

/* Underline effect for nav links */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Navbar toggler button styling */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(201, 160, 61, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 160, 61, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 0;
        background: rgba(10, 13, 16, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(201, 160, 61, 0.2);
    }

    .navbar .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        color: var(--gray) !important;
        padding: 10px 0;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
}

/* Glass Dropdown - improved styling */
.glass-dropdown {
    background: rgba(10, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    margin-top: 10px;
}

.navbar.scrolled .glass-dropdown {
    background: rgba(10, 13, 16, 0.98);
}

.dropdown-item {
    color: var(--light);
    transition: var(--transition);
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: rgba(201, 160, 61, 0.2);
    color: var(--primary);
    transform: translateX(5px);
}

/* Dropdown toggle caret styling */
.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.5rem !important;
    vertical-align: middle !important;
    content: "" !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
    font-size: 0.9rem;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ============================================
   5. GLOBAL SECTION STYLES
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(201, 160, 61, 0.15);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(201, 160, 61, 0.3);
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(201, 160, 61, 0.3);
    z-index: -1;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Global Responsive */
@media (max-width: 992px) {
    .dropdown-toggle::after {
        border-top-color: var(--primary) !important;
        border-top-width: 0.35em !important;
        margin-left: 8px !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .navbar-nav .dropdown-toggle {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item.dropdown {
        width: 100%;
    }

    .navbar-nav .dropdown-toggle {
        padding-right: 40px !important;
    }

    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .dropdown-toggle::after {
        border-top-color: var(--primary) !important;
        opacity: 1 !important;
        border-top-width: 0.4em !important;
        border-right-width: 0.4em !important;
        border-left-width: 0.4em !important;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-badge {
        font-size: 0.75rem;
    }
}

/* ============================================
   6. HERO SECTION with Background Image
   ============================================ */
.hero-billiard {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* Background image setup */
    background-image: url('../images/hero/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
}

/* Dark overlay for better text readability */
.hero-billiard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

/* Optional: Gradient overlay from bottom for smooth transition */
.hero-billiard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 160, 61, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid var(--primary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 8px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: var(--darker);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 160, 61, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--light);
    background: transparent;
    color: var(--light);
}

.btn-outline-light:hover {
    background: var(--light);
    color: var(--darker);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 20px;
    border: 1px solid rgba(201, 160, 61, 0.3);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-item span:not(.stat-number) {
    color: var(--light);
    font-size: 0.9rem;
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .hero-billiard {
        background-attachment: scroll;
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item {
        padding: 12px 20px;
        min-width: 130px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Tablet Portrait & Mobile Landscape */
@media (max-width: 768px) {
    .hero-billiard {
        min-height: auto;
        padding: 100px 0 60px;
        background-attachment: scroll;
        background-position: 70% center;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
        justify-content: center;
    }

    .stat-item {
        padding: 10px 18px;
        min-width: 110px;
        flex: 0 1 auto;
    }

    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-item span:not(.stat-number) {
        font-size: 0.85rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 10px 24px;
        margin: 5px;
        font-size: 0.95rem;
    }
}

/* Mobile Small */
@media (max-width: 580px) {
    .hero-billiard {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 0.9rem;
        padding: 0 5px;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 12px;
        margin-top: 35px;
    }

    .stat-item {
        padding: 8px 15px;
        min-width: 95px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-item span:not(.stat-number) {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 10px 20px;
        width: 100%;
        max-width: 220px;
        margin: 0;
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-item {
        padding: 6px 12px;
        min-width: 85px;
    }

    .stat-item span:not(.stat-number) {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        gap: 10px;
    }
}

/* ============================================
   7. ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.about-card h4 {
    margin-bottom: 10px;
}

.about-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-media {
    background: linear-gradient(135deg, rgba(201, 160, 61, 0.1), rgba(44, 62, 47, 0.1));
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floating-image {
    font-size: 8rem;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.media-quote {
    font-style: italic;
    margin-top: 20px;
    color: var(--gray);
}

/* About Responsive */
@media (max-width: 992px) {
    .about-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        margin-top: 30px;
        padding: 30px;
    }

    .floating-image {
        font-size: 5rem;
    }
}

/* ============================================
   8. TABLES CAROUSEL SECTION
   ============================================ */
.tables-carousel .table-item {
    text-align: center;
    margin: 15px;
}

.table-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
}

.owl-nav button {
    background: rgba(201, 160, 61, 0.2) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    color: var(--primary) !important;
    font-size: 1.5rem !important;
}

.owl-dot span {
    background: var(--gray) !important;
}

.owl-dot.active span {
    background: var(--primary) !important;
}

/* Tables Carousel Responsive */
@media (max-width: 768px) {
    .tables-carousel .table-item {
        margin: 10px;
    }

    .table-icon {
        font-size: 2.5rem;
    }

    .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 1rem !important;
    }
}

/* ============================================
   9. EVENTS SECTION
   ============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.event-card {
    text-align: center;
}

.event-date {
    background: rgba(201, 160, 61, 0.2);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.event-date strong {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 5px;
}

.event-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 15px;
}

.event-link:hover {
    transform: translateX(5px);
    color: var(--primary-light);
}

/* Events Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        padding: 20px;
    }
}

/* ============================================
   10. GALLERY SWIPER SECTION
   ============================================ */
.gallery-section {
    overflow: hidden;
    position: relative;
}

.gallery-swiper {
    padding: 20px 0 50px;
    position: relative;
}

.gallery-item {
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Gallery Image styling */
.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    z-index: 0;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Dark overlay on gallery items */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* Gallery overlay content */
.gallery-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
    transform: translateY(30px);
    transition: var(--transition);
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    border-radius: 0 0 20px 20px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    padding-bottom: 40px;
}

.gallery-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
    opacity: 0.9;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--light);
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    background: rgba(201, 160, 61, 0.2);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    color: var(--darker);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Bounce animation for gallery icon */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-item {
        height: 350px;
    }

    .gallery-overlay h3 {
        font-size: 1.3rem;
    }

    .gallery-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        height: 300px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 1rem;
    }
}

@media (max-width: 580px) {
    .gallery-item {
        height: 280px;
    }

    .gallery-overlay {
        padding: 18px;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
    }

    .gallery-icon {
        font-size: 1.6rem;
    }

    .gallery-overlay p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 250px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay h3 {
        font-size: 0.95rem;
    }

    .gallery-icon {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 0.7rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* ============================================
   11. MEMBERSHIP / PRICING SECTION
   ============================================ */
.price-card {
    text-align: center;
    position: relative;
}

.price-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--darker);
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.price-value span {
    font-size: 0.9rem;
    color: var(--gray);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-features li {
    padding: 8px 0;
    color: var(--gray);
}

/* Membership Responsive */
@media (max-width: 992px) {
    .price-card.premium {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .price-value {
        font-size: 2rem;
    }

    .price-header {
        font-size: 1.1rem;
    }

    .price-features li {
        font-size: 0.9rem;
    }
}

/* ============================================
   12. TESTIMONIALS SECTION (CAROUSEL)
   ============================================ */
.testimonials-section {
    position: relative;
    z-index: 2;
}

.testimonial-carousel-container {
    position: relative;
    padding: 20px 40px;
}

.testimonial-swiper {
    overflow: hidden;
    padding: 20px 0 50px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin: 10px;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.05);
    border-color: var(--primary-light);
}

.quote-icon {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Swiper Navigation for Testimonials */
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    background: rgba(201, 160, 61, 0.2);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.testimonial-swiper .swiper-button-prev:hover,
.testimonial-swiper .swiper-button-next:hover {
    background: var(--primary);
    color: var(--darker);
    transform: scale(1.05);
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    transition: var(--transition);
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonial-carousel-container {
        padding: 20px 20px;
    }

    .testimonial-swiper .swiper-button-prev,
    .testimonial-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .testimonial-swiper .swiper-button-prev::after,
    .testimonial-swiper .swiper-button-next::after {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonial-carousel-container {
        padding: 20px 10px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 15px;
    }

    .testimonial-avatar img {
        width: 50px;
        height: 50px;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .testimonial-swiper .swiper-button-prev,
    .testimonial-swiper .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }

    .testimonial-swiper {
        padding: 20px 0 40px;
    }
}

/* ============================================
   13. PARTNERS SECTION - SWIPER VERSION
   ============================================ */
.partners-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(201, 160, 61, 0.05), transparent);
}

.partners-swiper {
    width: 100%;
    padding: 30px 0 50px;
    overflow: hidden;
    position: relative;
}

.partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.partner-item {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: var(--transition);
    border: 1px solid rgba(201, 160, 61, 0.15);
    margin: 0 auto;
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Original image colors - NO FILTERS */
.partner-item img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.partners-swiper .swiper-button-prev,
.partners-swiper .swiper-button-next {
    background: rgba(201, 160, 61, 0.2);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.partners-swiper .swiper-button-prev:hover,
.partners-swiper .swiper-button-next:hover {
    background: var(--primary);
    color: var(--darker);
}

.partners-swiper .swiper-button-prev::after,
.partners-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: bold;
}

.partners-swiper .swiper-button-prev {
    left: 0;
}

.partners-swiper .swiper-button-next {
    right: 0;
}

/* Swiper Pagination */
.partners-swiper .swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    transition: var(--transition);
}

.partners-swiper .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* Partners Responsive */
@media (max-width: 992px) {
    .partner-item {
        width: 120px;
        height: 70px;
    }

    .partner-item img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .partners-swiper {
        padding: 20px 0 40px;
    }

    .partner-item {
        width: 100px;
        height: 60px;
        padding: 10px;
    }

    .partner-item img {
        max-height: 35px;
    }

    .partners-swiper .swiper-button-prev,
    .partners-swiper .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .partner-item {
        width: 85px;
        height: 55px;
        padding: 8px;
    }

    .partner-item img {
        max-height: 30px;
    }
}

/* ============================================
   14. CONTACT SECTION 
   ============================================ */
.contact {
    position: relative;
    background-image: url('../images/contact/contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Dark overlay for better readability */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 0;
}

/* Ensure all content is above overlay */
.contact .container {
    position: relative;
    z-index: 2;
}

/* Optional: Gradient overlay from bottom for smooth transition */
.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 0;
}

.contact-header-compact {
    text-align: center;
    margin-bottom: 50px;
}

.contact-badge {
    display: inline-block;
    background: rgba(201, 160, 61, 0.15);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--gray);
}

/* Contact & Map Grid */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Contact Info Card */
.contact-info-compact {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
}

.quick-contact-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.quick-icon {
    font-size: 1.8rem;
}

.quick-detail h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 5px;
}

.quick-detail p {
    margin: 0;
    font-weight: 500;
}

.mini-copy {
    background: rgba(201, 160, 61, 0.2);
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.mini-copy:hover {
    background: var(--primary);
}

.social-links-compact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.social-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transition: var(--transition);
}

.social-compact:hover {
    background: var(--primary);
    color: var(--darker);
}

.response-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(201, 160, 61, 0.1);
    border-radius: 12px;
    font-size: 0.85rem;
}

/* Map Card */
.map-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    overflow: hidden;
}

.map-header {
    text-align: center;
    margin-bottom: 20px;
}

.map-badge {
    display: inline-block;
    background: rgba(201, 160, 61, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.map-header h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.google-map {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.map-directions {
    text-align: center;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 160, 61, 0.15);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(201, 160, 61, 0.3);
    margin-bottom: 15px;
}

.directions-btn:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-2px);
}

.map-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.map-address i {
    color: var(--primary);
}

/* Booking Form Full Width */
.booking-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-badge {
    display: inline-block;
    background: rgba(201, 160, 61, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.booking-header h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.booking-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-compact input,
.form-group-compact select,
.form-group-compact textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    transition: var(--transition);
}

.form-group-compact select {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a03d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group-compact select option {
    background: #0a0d10;
    color: #ffffff;
    padding: 10px;
}

.form-group-compact select option:checked {
    background: var(--primary);
    color: var(--darker);
}

.form-group-compact select option:hover {
    background: rgba(201, 160, 61, 0.3);
}

/* Select focus state */
.form-group-compact select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.8);
}

/* Select disabled state */
.form-group-compact select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.form-group-compact input:focus,
.form-group-compact select:focus,
.form-group-compact textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 300px;
    max-width: 400px;
    background: rgba(15, 20, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--light);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.toast-success .toast-icon {
    color: #4caf50;
}

.toast-error .toast-icon {
    color: #f44336;
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-map {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 1.5rem;
    }

    .form-row-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-contact-row {
        gap: 15px;
    }

    .quick-contact-item {
        flex-wrap: wrap;
    }

    .social-links-compact {
        justify-content: center;
    }

    .booking-form-wrapper {
        padding: 20px;
    }

    .booking-header h4 {
        font-size: 1.2rem;
    }

    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .quick-icon {
        font-size: 1.5rem;
    }

    .quick-detail h4 {
        font-size: 0.75rem;
    }

    .quick-detail p {
        font-size: 0.85rem;
    }

    .social-compact span {
        display: none;
    }

    .social-compact {
        padding: 8px 12px;
    }

    .google-map {
        height: 200px;
    }

    .map-address {
        font-size: 0.7rem;
    }
}

/* ============================================
   15. FOOTER SECTION
   ============================================ */
.footer {
    background: var(--darker);
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(201, 160, 61, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
}

.brand-dot {
    color: var(--primary);
}

.footer-tagline {
    color: var(--gray);
    margin-top: 10px;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--light);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
}

/* Compact Newsletter Form */
.footer-newsletter {
    margin-top: 5px;
}

.footer-newsletter .newsletter-label {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: var(--gray);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 250px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--darker);
}

.newsletter-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-form button:hover:not(:disabled) {
    background: var(--primary-light);
    transform: translateX(2px);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group li {
    margin-bottom: 8px;
}

.link-group a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-left {
    display: flex;
    gap: 10px;
    color: var(--gray);
    font-size: 0.8rem;
}

.back-to-top {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 0.85rem;
}

.back-to-top:hover {
    color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bottom-left {
        flex-direction: column;
        gap: 5px;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 100%;
    }

    .newsletter-form button {
        width: 38px;
        height: 38px;
    }

    .bottom-left {
        align-items: center;
    }
}

/* ============================================
   16. GLOBAL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   17. UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.mt-0 {
    margin-top: 0;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

/* Brand logo */
.brand-logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .brand-logo {
    height: 46px;
}

/* Navbar CTA button */
.btn-nav-cta {
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(201, 160, 61, 0.22);
}

/* Better spacing for desktop nav */
.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .brand-logo {
        height: 42px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-cta {
        margin-top: 14px;
    }

    .btn-nav-cta {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

@media (max-width: 580px) {
    .brand-logo {
        height: 38px;
    }
}

/* ============================================
   TOP GAMES SECTION
   ============================================ */
.top-games-section {
    position: relative;
    z-index: 2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(15, 20, 23, 0.8);
    border: 1px solid rgba(201, 160, 61, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
    aspect-ratio: 0.72 / 1;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 160, 61, 0.5);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.game-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.game-card:hover .game-card-img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(
        180deg,
        rgba(10, 13, 16, 0.08) 0%,
        rgba(10, 13, 16, 0.45) 45%,
        rgba(10, 13, 16, 0.82) 100%
    );
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
    visibility: visible;
}

.game-card-btn {
    min-width: 150px;
    text-align: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(201, 160, 61, 0.28);
    transform: translateY(10px);
    transition: var(--transition);
}

.game-card:hover .game-card-btn {
    transform: translateY(0);
}

/* Large tablets */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .game-card {
        border-radius: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .game-card {
        border-radius: 18px;
    }

    .game-card-overlay {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(
            180deg,
            rgba(10, 13, 16, 0.02) 0%,
            rgba(10, 13, 16, 0.25) 45%,
            rgba(10, 13, 16, 0.72) 100%
        );
    }

    .game-card-btn {
        min-width: 128px;
        padding: 10px 18px;
        font-size: 0.92rem;
        transform: none;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .game-card {
        border-radius: 16px;
    }

    .game-card-btn {
        min-width: 116px;
        padding: 9px 14px;
        font-size: 0.88rem;
    }
}

/* ============================================
   ABOUT SHORELINES
   ============================================ */
.about-shorelines {
    position: relative;
    z-index: 2;
}

.about-intro {
    margin-top: 40px;
    padding: 28px 32px;
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 28px;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 50px;
}

/* CARD */
.about-card {
    padding: 28px 26px;
    border-radius: 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(201, 160, 61, 0.08),
        transparent
    );
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.about-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--light);
}

/* ONLINE BLOCK */
.about-online {
    margin-top: 60px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.about-online::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(201, 160, 61, 0.18),
        transparent 60%
    );
    pointer-events: none;
}

.about-online-content {
    max-width: 640px;
}

.about-online h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--primary);
}

.about-online p {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.65;
}

.about-online-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.about-online-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-online-media img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* subtle glow */
.about-online-media::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(
        circle,
        rgba(201,160,61,0.25),
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
}
/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-online {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 22px 18px;
    }

    .about-card {
        padding: 22px 18px;
    }

    .about-online h3 {
        font-size: 1.35rem;
    }
}

/* ============================================
   ADVANTAGES SHORELINES
   ============================================ */
.advantages-shorelines {
    position: relative;
    z-index: 2;
}

.advantages-intro {
    margin-top: 40px;
    border-radius: 30px;
    padding: 34px;
}

.advantages-intro-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.advantages-intro-content h3,
.advantages-bottom-content h3 {
    font-size: 1.55rem;
    margin-bottom: 18px;
    color: var(--light);
}

.advantages-intro-content p {
    margin-bottom: 16px;
    color: var(--light);
    line-height: 1.7;
}

.advantages-intro-aside {
    border-radius: 24px;
    padding: 24px;
    background: rgba(201, 160, 61, 0.08);
    border: 1px solid rgba(201, 160, 61, 0.22);
}

.mini-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
    border: 1px solid rgba(201, 160, 61, 0.25);
    margin-bottom: 18px;
}

.advantages-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.advantages-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--light);
    line-height: 1.55;
}

.advantages-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(201, 160, 61, 0.45);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.advantage-card {
    border-radius: 26px;
    padding: 28px 24px;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        140deg,
        rgba(201, 160, 61, 0.06),
        transparent 45%,
        transparent
    );
    pointer-events: none;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
    border: 1px solid rgba(201, 160, 61, 0.22);
    font-size: 1.35rem;
}

.advantage-card h3 {
    font-size: 1.18rem;
    margin-bottom: 14px;
    color: var(--light);
}

.advantage-card p {
    color: var(--light);
    opacity: 0.92;
    line-height: 1.65;
    margin: 0;
}

.advantages-bottom {
    margin-top: 42px;
    border-radius: 30px;
    padding: 30px 32px;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 24px;
    align-items: center;
}

.advantages-bottom-content p {
    margin: 0;
    color: var(--light);
    line-height: 1.7;
}

.advantages-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .advantages-intro-grid,
    .advantages-bottom {
        grid-template-columns: 1fr;
    }

    .advantages-bottom-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .advantages-intro {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .advantage-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .advantages-bottom {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .advantages-intro-content h3,
    .advantages-bottom-content h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   BONUSES BANNER SECTION
   ============================================ */
.bonuses-banner-section {
    position: relative;
    z-index: 2;
}

.bonuses-banner {
    border-radius: 32px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.bonuses-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 160, 61, 0.16), transparent 38%),
        linear-gradient(135deg, rgba(201, 160, 61, 0.04), transparent 45%);
    pointer-events: none;
}

.bonuses-banner-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bonuses-banner-content h2 {
    margin-bottom: 18px;
}

.bonuses-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--light);
    margin-bottom: 16px;
}

.bonuses-banner-content p {
    color: var(--light);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 640px;
}

.bonuses-banner-actions {
    margin-top: 28px;
}

.bonuses-banner-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonuses-banner-media::after {
    content: "";
    position: absolute;
    width: 72%;
    height: 72%;
    background: radial-gradient(circle, rgba(201, 160, 61, 0.24), transparent 70%);
    filter: blur(44px);
    z-index: -1;
}

.bonuses-banner-media img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.32));
}

/* Responsive */
@media (max-width: 992px) {
    .bonuses-banner {
        padding: 30px 24px;
        border-radius: 26px;
    }

    .bonuses-banner-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bonuses-banner-media {
        order: -1;
    }

    .bonuses-banner-content,
    .bonuses-banner-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bonuses-banner {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .bonuses-lead {
        font-size: 1rem;
    }

    .bonuses-banner-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ============================================
   BONUSES EXTENDED
   ============================================ */
.bonus-block {
    margin-top: 40px;
    padding: 28px 30px;
    border-radius: 28px;
}

.bonus-list {
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
}

.bonus-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
}

.bonus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

/* MAIN BONUS */
.bonus-highlight-main {
    margin-top: 40px;
    padding: 32px;
    border-radius: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(201,160,61,0.08), rgba(0,0,0,0.3));
}

.bonus-main-box {
    margin: 18px 0;
    padding: 16px;
    border-radius: 18px;
    font-size: 1.2rem;
    color: var(--primary);
    border: 1px solid rgba(201,160,61,0.35);
}

/* PROMO GRID */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.promo-card {
    padding: 22px;
    border-radius: 24px;
    position: relative;
}

.promo-card h4 {
    margin-bottom: 10px;
}

.promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201,160,61,0.2);
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

.providers-subtext {
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--light);
    opacity: 0.92;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.providers-content {
    margin-top: 40px;
    padding: 30px 32px;
    border-radius: 28px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.providers-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 160, 61, 0.12), transparent 40%);
    pointer-events: none;
}

.providers-content h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.providers-content p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.providers-list {
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.providers-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: var(--light);
    line-height: 1.6;
}

.providers-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(201, 160, 61, 0.4);
}

.providers-bottom {
    margin-top: 16px;
    opacity: 0.96;
}

@media (max-width: 768px) {
    .providers-subtext {
        font-size: 0.92rem;
    }

    .providers-content {
        margin-top: 28px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .providers-content h3 {
        font-size: 1.2rem;
    }

    .providers-content p,
    .providers-list li {
        font-size: 0.95rem;
    }
}

/* ============================================
   GAMING EXPERIENCE
   ============================================ */
.gaming-block {
    margin-top: 40px;
    padding: 30px;
    border-radius: 28px;
}

.gaming-block h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--primary);
}

/* GRID */
.gaming-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.online-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* CARD */
.gaming-card {
    background: rgba(255,255,255,0.02);
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(201,160,61,0.15);
}

.gaming-card h4 {
    margin-bottom: 12px;
    color: var(--light);
}

.small-title {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.gaming-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gaming-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.gaming-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* BOTTOM */
.gaming-bottom {
    margin-top: 40px;
    padding: 24px 28px;
    border-radius: 24px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .online-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gaming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gaming-grid,
    .online-grid {
        grid-template-columns: 1fr;
    }

    .gaming-block {
        padding: 22px 18px;
    }
}

/* ============================================
   SLOTS SHOWCASE SECTION
   ============================================ */
.slots-showcase-section {
    position: relative;
    z-index: 2;
}

.slots-intro {
    margin-top: 40px;
    padding: 34px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.slots-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 160, 61, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(201, 160, 61, 0.04), transparent 45%);
    pointer-events: none;
}

.slots-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.slots-intro-content h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--light);
}

.slots-intro-content p {
    margin-bottom: 14px;
    line-height: 1.72;
    color: var(--light);
}

.slots-highlight {
    padding: 24px;
    border-radius: 24px;
    background: rgba(201, 160, 61, 0.08);
    border: 1px solid rgba(201, 160, 61, 0.22);
}

.slots-highlight-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.slots-highlight-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.55;
    color: var(--light);
}

.slots-highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(201, 160, 61, 0.4);
}

.slot-badge,
.mini-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
    border: 1px solid rgba(201, 160, 61, 0.25);
}

.slots-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.slot-category-card {
    padding: 28px 24px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.slot-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(201, 160, 61, 0.06),
        transparent 45%,
        transparent
    );
    pointer-events: none;
}

.slot-category-top {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.slot-category-top h3 {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--light);
}

.slot-category-card p {
    position: relative;
    z-index: 2;
    line-height: 1.68;
    color: var(--light);
    margin-bottom: 16px;
}

.slot-titles-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slot-titles-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 11px;
    color: var(--light);
    line-height: 1.55;
}

.slot-titles-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(201, 160, 61, 0.35);
}

.slots-bottom-banner {
    margin-top: 42px;
    padding: 30px 32px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slots-bottom-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 160, 61, 0.16), transparent 40%);
    pointer-events: none;
}

.slots-bottom-content,
.slots-bottom-actions {
    position: relative;
    z-index: 2;
}

.slots-bottom-content h3 {
    margin: 14px 0 14px;
    font-size: 1.45rem;
    color: var(--light);
}

.slots-bottom-content p {
    margin: 0;
    line-height: 1.72;
    color: var(--light);
}

.slots-bottom-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .slots-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .slots-intro-grid,
    .slots-bottom-banner {
        grid-template-columns: 1fr;
    }

    .slots-bottom-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .slots-intro {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .slots-categories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .slot-category-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .slots-bottom-banner {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .slots-intro-content h3,
    .slots-bottom-content h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   TABLE & LIVE CASINO
   ============================================ */
.table-intro {
    margin-top: 40px;
    padding: 32px;
    border-radius: 30px;
}

.table-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

.table-highlight {
    padding: 22px;
    border-radius: 22px;
    background: rgba(201,160,61,0.08);
    border: 1px solid rgba(201,160,61,0.2);
}

.table-highlight ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.table-highlight li {
    padding-left: 18px;
    margin-bottom: 10px;
    position: relative;
}

.table-highlight li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* GRID */
.table-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.table-card {
    padding: 26px;
    border-radius: 26px;
}

.table-card h3 {
    margin: 12px 0;
}

.table-card ul {
    list-style: none;
    padding: 0;
}

.table-card li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

.table-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* LIVE */
.live-block {
    margin-top: 40px;
    padding: 32px;
    border-radius: 30px;
}

.live-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.live-list {
    margin-top: 16px;
    list-style: none;
    padding: 0;
}

.live-list li {
    padding-left: 18px;
    margin-bottom: 10px;
    position: relative;
}

.live-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.live-cta {
    padding: 24px;
    border-radius: 24px;
    background: rgba(201,160,61,0.08);
    border: 1px solid rgba(201,160,61,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .table-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-intro-grid,
    .live-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .table-grid {
        grid-template-columns: 1fr;
    }
}

.visitor-card {
    padding: 28px 30px;
    border-radius: 28px;
}

.visitor-card-inner {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: start;
}

.visitor-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.icon-box {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.16),
        rgba(201, 160, 61, 0.05)
    );
    border: 1px solid rgba(201, 160, 61, 0.32);
    box-shadow:
        0 0 24px rgba(201, 160, 61, 0.12),
        inset 0 0 12px rgba(201, 160, 61, 0.08);
    transition: var(--transition);
}

.icon-box i {
    font-size: 2.1rem;
    color: #d4af37;
    line-height: 1;
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
}

.visitor-text h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: var(--light);
}

.visitor-text p {
    margin: 0;
    line-height: 1.72;
    color: var(--light);
}

.visitor-card:hover .icon-box {
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.24),
        rgba(201, 160, 61, 0.08)
    );
    box-shadow:
        0 12px 30px rgba(201, 160, 61, 0.15),
        inset 0 0 14px rgba(201, 160, 61, 0.12);
}

@media (max-width: 768px) {
    .visitor-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .visitor-card-inner {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .icon-box {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .icon-box i {
        font-size: 1.6rem;
    }

    .visitor-text h3 {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }

    .visitor-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.login-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.login-card {
    padding: 28px;
    border-radius: 24px;
}

.login-card h3 {
    margin-bottom: 14px;
}

.login-card p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.login-list {
    margin-top: 12px;
    padding-left: 18px;
}

.login-list li {
    margin-bottom: 6px;
}

.login-intro {
    padding: 28px;
    margin-top: 30px;
}

.login-bottom {
    margin-top: 40px;
    padding: 28px;
}

@media (max-width: 992px) {
    .login-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ONLINE CASINO APP SECTION
   ============================================ */
.casino-app-section {
    position: relative;
    z-index: 2;
}

.casino-app-wrapper {
    margin-top: 40px;
    padding: 34px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.casino-app-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 160, 61, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(201, 160, 61, 0.04), transparent 45%);
    pointer-events: none;
}

.casino-app-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.casino-app-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.casino-app-media {
    padding: 22px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.casino-app-media img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.casino-app-text-block,
.casino-app-features {
    padding: 26px 24px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}

.casino-app-text-block::before,
.casino-app-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(201, 160, 61, 0.05),
        transparent 40%,
        transparent
    );
    pointer-events: none;
}

.casino-app-text-block > *,
.casino-app-features > * {
    position: relative;
    z-index: 2;
}

.casino-app-text-block h3,
.casino-app-features h3 {
    margin: 14px 0 14px;
    font-size: 1.4rem;
    color: var(--light);
}

.casino-app-text-block p,
.casino-app-features p {
    margin: 0 0 14px;
    line-height: 1.72;
    color: var(--light);
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.app-feature-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 16px;
    align-items: start;
}

.app-feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.18),
        rgba(201, 160, 61, 0.05)
    );
    border: 1px solid rgba(201, 160, 61, 0.32);
    box-shadow:
        0 0 18px rgba(201, 160, 61, 0.12),
        inset 0 0 12px rgba(201, 160, 61, 0.08);
    flex-shrink: 0;
}

.app-feature-icon i {
    font-size: 1.55rem;
    color: #d4af37;
    line-height: 1;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.28);
}

.app-feature-text h4,
.app-install-card h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--light);
}

.app-feature-text p,
.app-install-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--light);
}

.app-install-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0 22px;
}

.app-install-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 61, 0.16);
}

.app-install-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.18),
        rgba(201, 160, 61, 0.05)
    );
    border: 1px solid rgba(201, 160, 61, 0.28);
}

.app-install-icon i {
    font-size: 1.45rem;
    color: #d4af37;
    line-height: 1;
}

.app-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 61, 0.18);
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 160, 61, 0.35);
    box-shadow: 0 10px 22px rgba(201, 160, 61, 0.08);
}

.store-btn img {
    display: block;
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .casino-app-grid {
        grid-template-columns: 1fr;
    }

    .casino-app-media {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .casino-app-wrapper {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .casino-app-col {
        gap: 18px;
    }

    .casino-app-media,
    .casino-app-text-block,
    .casino-app-features {
        border-radius: 22px;
    }

    .casino-app-media {
        min-height: 280px;
        padding: 18px;
    }

    .casino-app-text-block h3,
    .casino-app-features h3 {
        font-size: 1.2rem;
    }

    .app-feature-item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .app-feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .app-feature-icon i {
        font-size: 1.3rem;
    }

    .app-install-grid {
        grid-template-columns: 1fr;
    }

    .store-btn {
        width: 100%;
        min-width: 0;
    }
}

.banner-small-image img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}

/* ============================================
   PAYMENT METHODS SECTION
   ============================================ */
.payments-section {
    position: relative;
    z-index: 2;
}

.payments-intro {
    margin-top: 40px;
    padding: 32px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.payments-intro::before,
.payments-table-wrap::before,
.payments-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 160, 61, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(201, 160, 61, 0.04), transparent 45%);
    pointer-events: none;
}

.payments-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.payments-intro-content h3,
.payments-bottom h3 {
    margin: 14px 0 16px;
    font-size: 1.45rem;
    color: var(--light);
}

.payments-intro-content p,
.payments-bottom p {
    margin-bottom: 14px;
    line-height: 1.72;
    color: var(--light);
}

.payments-summary {
    padding: 24px;
    border-radius: 24px;
    background: rgba(201, 160, 61, 0.08);
    border: 1px solid rgba(201, 160, 61, 0.22);
}

.payments-summary-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.payments-summary-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--light);
    line-height: 1.55;
}

.payments-summary-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(201, 160, 61, 0.4);
}

/* Centered dark table */
.payments-table-wrap {
    margin: 42px auto 0;
    max-width: 980px;
    width: 100%;
    padding: 22px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(16, 29, 48, 0.92), rgba(17, 39, 63, 0.92));
    border: 1px solid rgba(201, 160, 61, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.payments-table-header,
.payments-panel {
    position: relative;
    z-index: 2;
}

.payments-table-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.payments-meta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 61, 0.16);
    border-radius: 14px;
    padding: 12px 14px;
}

.payments-meta-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--light);
    opacity: 0.75;
    margin-bottom: 6px;
}

.payments-meta-value {
    color: var(--light);
    font-weight: 600;
}

.payments-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.payments-tab {
    min-width: 128px;
    padding: 11px 20px;
    border-radius: 14px;
    border: 1px solid rgba(201, 160, 61, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--transition);
}

.payments-tab.is-active {
    color: #fff;
    border-color: rgba(201, 160, 61, 0.34);
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.18),
        rgba(201, 160, 61, 0.04)
    );
    box-shadow: 0 10px 24px rgba(201, 160, 61, 0.12);
}

.payments-panel {
    display: none;
}

.payments-panel.is-active {
    display: block;
}

.payments-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 61, 0.14);
    transition: var(--transition);
}

.payment-row:hover {
    border-color: rgba(201, 160, 61, 0.28);
    background: rgba(255, 255, 255, 0.045);
}

.payment-main {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(10, 16, 26, 0.65);
    border: 1px solid rgba(201, 160, 61, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.payment-text h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--light);
}

.payment-text p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--light);
    opacity: 0.8;
}

.payment-limit {
    white-space: nowrap;
    font-weight: 700;
    color: #f0c46a;
    font-size: 0.95rem;
}

/* Info cards under table */
.payments-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.payments-info-card {
    padding: 28px 24px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}

.payments-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(201, 160, 61, 0.06),
        transparent 45%,
        transparent
    );
    pointer-events: none;
}

.payments-info-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.16),
        rgba(201, 160, 61, 0.05)
    );
    border: 1px solid rgba(201, 160, 61, 0.28);
    box-shadow:
        0 0 18px rgba(201, 160, 61, 0.12),
        inset 0 0 10px rgba(201, 160, 61, 0.08);
    position: relative;
    z-index: 2;
}

.payments-info-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.payments-info-card h3,
.payments-bottom h3 {
    position: relative;
    z-index: 2;
    color: var(--light);
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.payments-info-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    line-height: 1.68;
    color: var(--light);
}

.payments-bottom {
    margin-top: 42px;
    padding: 30px 32px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
    .payments-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .payments-intro-grid {
        grid-template-columns: 1fr;
    }

    .payments-table-wrap {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .payments-intro {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .payments-table-wrap {
        max-width: 100%;
        padding: 16px;
        border-radius: 24px;
    }

    .payments-table-meta {
        grid-template-columns: 1fr;
    }

    .payments-tabs {
        justify-content: stretch;
    }

    .payments-tab {
        flex: 1 1 0;
        min-width: 0;
    }

    .payment-row {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
    }

    .payment-limit {
        padding-left: 62px;
    }

    .payments-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .payments-info-card,
    .payments-bottom {
        padding: 22px 18px;
        border-radius: 22px;
    }
}

.payments-info-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.16),
        rgba(201, 160, 61, 0.05)
    );
    border: 1px solid rgba(201, 160, 61, 0.28);
    box-shadow:
        0 0 18px rgba(201, 160, 61, 0.12),
        inset 0 0 10px rgba(201, 160, 61, 0.08);
    position: relative;
    z-index: 2;
}

.payments-info-icon i {
    font-size: 1.8rem;
    color: #d4af37;
    line-height: 1;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.28);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.security-card {
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-6px);
}

.security-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

    background: linear-gradient(
        135deg,
        rgba(201, 160, 61, 0.18),
        rgba(201, 160, 61, 0.05)
    );
    border: 1px solid rgba(201, 160, 61, 0.3);
}

.security-icon i {
    font-size: 1.8rem;
    color: #d4af37;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.security-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.security-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.custom-accordion .accordion-item {
    background: transparent;
    border: 1px solid rgba(201, 160, 61, 0.2);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 500;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #d4af37;
}

.custom-accordion .accordion-body {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.testimonial-card.no-avatar {
    padding: 30px 28px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.no-avatar .testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card.no-avatar .quote-icon {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card.no-avatar .testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--light);
    opacity: 0.92;
    margin-bottom: 24px;
    padding-left: 18px;
    border-left: 2px solid rgba(201, 160, 61, 0.4);
    flex: 1;
}

.testimonial-card.no-avatar .testimonial-author h3 {
    font-size: 1.08rem;
    margin-bottom: 6px;
    color: var(--light);
}

.testimonial-card.no-avatar .testimonial-author span {
    font-size: 0.88rem;
    color: var(--primary);
    display: block;
}

@media (max-width: 768px) {
    .testimonial-card.no-avatar {
        min-height: auto;
        padding: 24px 20px;
    }

    .testimonial-card.no-avatar .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* ============================================
   FOOTER CASINO
   ============================================ */
.footer-casino {
    position: relative;
    z-index: 2;
    padding: 40px 0 24px;
}

.footer-top {
    padding: 34px 34px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201, 160, 61, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(201, 160, 61, 0.04), transparent 45%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Brand */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    max-width: 240px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-description {
    margin: 0;
    line-height: 1.75;
    color: var(--light);
    opacity: 0.9;
    max-width: 520px;
}

.footer-trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    opacity: 0.92;
    line-height: 1.5;
}

.footer-trust-list i {
    color: var(--primary);
    font-size: 1rem;
}

/* Links */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.link-group h4 {
    margin: 0 0 16px;
    font-size: 1rem;
    color: var(--light);
}

.link-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: var(--light);
    opacity: 0.82;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.5;
}

.link-group a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    padding-top: 20px;
}

.bottom-left {
    justify-self: start;
}

.bottom-center {
    justify-self: center;
    text-align: center;
}

.bottom-right {
    justify-self: end;
}

.copyright,
.footer-note {
    color: var(--light);
    opacity: 0.78;
    font-size: 0.92rem;
    line-height: 1.5;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    opacity: 0.85;
    text-decoration: none;
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--primary);
    opacity: 1;
}

.back-to-top i {
    color: var(--primary);
}

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

    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-casino {
        padding: 28px 0 20px;
    }

    .footer-top {
        padding: 24px 18px 22px;
        border-radius: 24px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bottom-left,
    .bottom-center,
    .bottom-right {
        justify-self: center;
    }
}

.page-background-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#wave-animation.wave-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: transparent;
    overflow: hidden;
}

#wave-animation canvas {
    display: none !important;
}
/* ============================================
   ABOUT CASINO
   ============================================ */

.about-casino-section {
    position: relative;
    overflow: hidden;
}

.about-casino-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: 120px;
    right: -260px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.07);
    filter: blur(40px);
    pointer-events: none;
}

.about-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* MAIN STORY */

.about-story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
    align-items: center;
    margin-top: 55px;
}

.about-story-media {
    position: relative;
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.about-story-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}

.about-story-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.9) 0%,
        rgba(10, 13, 16, 0.12) 55%,
        transparent 100%
    );
}

.about-image-label {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-image-year {
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-text {
    color: var(--light);
    font-size: 0.9rem;
    max-width: 240px;
    line-height: 1.4;
}

.about-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.75rem;
    font-weight: 700;
}

.about-story-content h3,
.about-feature-copy h3,
.about-details-heading h3,
.about-heritage-content h3 {
    color: var(--light);
    line-height: 1.2;
}

.about-story-content h3 {
    font-size: 2.25rem;
    margin-bottom: 25px;
}

.about-story-content p {
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 18px;
}


/* FACT CARDS */

.about-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 70px 0;
}

.about-fact-card {
    padding: 28px 24px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: rgba(15, 20, 23, 0.72);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.about-fact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 160, 61, 0.55);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.about-fact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.about-fact-icon svg {
    width: 22px;
    height: 22px;
}

.about-fact-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-fact-card h3 {
    color: var(--light);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.about-fact-card p {
    color: var(--gray);
    font-size: 0.87rem;
    line-height: 1.65;
    margin: 0;
}


/* MODERN CASINO FEATURE */

.about-feature-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
    align-items: center;
    padding: 55px;
    margin-bottom: 30px;
    border-radius: 30px;
    background:
        linear-gradient(135deg,
        rgba(201, 160, 61, 0.08),
        rgba(15, 20, 23, 0.88));
    border: 1px solid var(--glass-border);
}

.about-feature-copy h3 {
    max-width: 620px;
    font-size: 2rem;
    margin-bottom: 22px;
}

.about-feature-copy p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 17px;
}

.about-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-feature-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 50px;
    color: var(--light);
    background: rgba(201, 160, 61, 0.1);
    border: 1px solid rgba(201, 160, 61, 0.22);
    font-size: 0.8rem;
}

.about-feature-tags svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

.about-feature-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature-image {
    height: 355px;
    overflow: hidden;
    border-radius: 22px;
}

.about-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-feature-image:hover img {
    transform: scale(1.04);
}

.about-mini-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 17px;
    background: rgba(10, 13, 16, 0.7);
    border: 1px solid var(--glass-border);
}

.about-mini-card > svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--primary);
}

.about-mini-card span {
    display: block;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-mini-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.55;
}


/* OFFICIAL DETAILS */

.about-details-panel {
    padding: 50px;
    margin-top: 28px;
    border-radius: 28px;
    background: rgba(10, 13, 16, 0.72);
    border: 1px solid var(--glass-border);
}

.about-details-heading {
    max-width: 760px;
    margin-bottom: 35px;
}

.about-details-heading h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-details-heading p {
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

.about-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-detail-item {
    display: flex;
    gap: 15px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.about-detail-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.about-detail-icon svg {
    width: 19px;
    height: 19px;
}

.about-detail-title {
    display: block;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.about-detail-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.6;
}


/* HERITAGE NOTE */

.about-heritage-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
    padding: 30px 34px;
    border-radius: 22px;
    background: rgba(201, 160, 61, 0.08);
    border: 1px solid rgba(201, 160, 61, 0.25);
}

.about-heritage-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.13);
}

.about-heritage-icon svg {
    width: 24px;
    height: 24px;
}

.about-heritage-content .about-kicker {
    margin-bottom: 6px;
}

.about-heritage-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.about-heritage-content p {
    color: var(--gray);
    line-height: 1.65;
    font-size: 0.88rem;
    margin: 0;
}

.about-location-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    padding: 11px 18px;
    border-radius: 50px;
    color: var(--darker);
    background: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.about-location-link:hover {
    color: var(--darker);
    background: var(--primary-light);
    transform: translateX(3px);
}

.about-location-link svg {
    width: 16px;
    height: 16px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .about-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-story-grid,
    .about-feature-block {
        grid-template-columns: 1fr;
    }

    .about-story-media,
    .about-story-media img {
        min-height: 480px;
    }

    .about-feature-block {
        padding: 40px;
    }

    .about-feature-side {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .about-story-grid {
        gap: 35px;
        margin-top: 35px;
    }

    .about-story-media,
    .about-story-media img {
        min-height: 400px;
    }

    .about-story-content h3 {
        font-size: 1.8rem;
    }

    .about-facts-grid {
        grid-template-columns: 1fr;
        margin: 45px 0;
    }

    .about-feature-block,
    .about-details-panel {
        padding: 28px;
    }

    .about-feature-copy h3 {
        font-size: 1.6rem;
    }

    .about-heritage-note {
        grid-template-columns: auto 1fr;
        padding: 25px;
    }

    .about-location-link {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 580px) {
    .about-story-media,
    .about-story-media img {
        min-height: 330px;
    }

    .about-image-label {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .about-image-year {
        font-size: 1.7rem;
    }

    .about-feature-block,
    .about-details-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .about-feature-image {
        height: 270px;
    }

    .about-heritage-note {
        grid-template-columns: 1fr;
    }

    .about-heritage-icon {
        width: 46px;
        height: 46px;
    }
}
/* ============================================
   GAMING OVERVIEW
   ============================================ */

.gaming-overview-section {
    position: relative;
    overflow: hidden;
}

.gaming-overview-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    left: -350px;
    top: 20%;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.06);
    filter: blur(60px);
    pointer-events: none;
}

.gaming-overview-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-overview-intro {
    max-width: 790px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* TOP VISUAL */

.gaming-overview-hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
    margin-bottom: 65px;
}

.gaming-overview-image {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.gaming-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.gaming-overview-image:hover img {
    transform: scale(1.035);
}

.gaming-overview-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.94) 0%,
        rgba(10, 13, 16, 0.12) 58%,
        transparent 100%
    );
}

.gaming-overview-image-caption {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
}

.gaming-overview-image-caption span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.gaming-overview-image-caption p {
    max-width: 540px;
    margin: 0;
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.gaming-overview-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.gaming-overview-summary h3 {
    margin-bottom: 22px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.gaming-overview-summary > p {
    margin-bottom: 17px;
    color: var(--gray);
    line-height: 1.8;
}

.gaming-overview-note {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-top: 25px;
    padding: 17px 19px;
    border-radius: 16px;
    background: rgba(201, 160, 61, 0.08);
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.gaming-overview-note svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 2px;
    color: var(--primary);
}

.gaming-overview-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.83rem;
    line-height: 1.6;
}


/* GAMING MAP */

.gaming-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.gaming-map-card {
    position: relative;
    display: flex;
    gap: 19px;
    min-height: 250px;
    padding: 27px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gaming-map-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.48);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.gaming-map-card-large {
    min-height: 290px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.09),
            rgba(15, 20, 23, 0.78)
        );
}

.gaming-map-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.gaming-map-icon svg {
    width: 23px;
    height: 23px;
}

.gaming-map-card-content {
    flex: 1;
}

.gaming-map-number {
    position: absolute;
    top: 20px;
    right: 23px;
    color: rgba(201, 160, 61, 0.2);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.gaming-map-type {
    display: block;
    padding-right: 45px;
    margin-bottom: 7px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    font-weight: 700;
}

.gaming-map-card h3 {
    margin-bottom: 11px;
    color: var(--light);
    font-size: 1.25rem;
}

.gaming-map-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.86rem;
    line-height: 1.7;
}

.gaming-map-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.gaming-map-tags span {
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--gray);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.7rem;
}

.gaming-map-arrow {
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
    transition: var(--transition);
}

.gaming-map-arrow svg {
    width: 15px;
    height: 15px;
}

.gaming-map-card:hover .gaming-map-arrow {
    transform: translateY(4px);
    background: rgba(201, 160, 61, 0.16);
}


/* FIRST VISIT */

.gaming-first-visit {
    margin-top: 55px;
    padding: 40px;
    border-radius: 27px;
    background:
        linear-gradient(
            135deg,
            rgba(44, 62, 47, 0.16),
            rgba(15, 20, 23, 0.75)
        );
    border: 1px solid var(--glass-border);
}

.gaming-first-visit-heading {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 30px;
}

.gaming-first-visit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
}

.gaming-first-visit-icon svg {
    width: 23px;
    height: 23px;
}

.gaming-first-visit-heading .gaming-overview-kicker {
    margin-bottom: 3px;
}

.gaming-first-visit-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.55rem;
}

.gaming-first-visit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.13);
}

.gaming-first-step {
    display: flex;
    gap: 15px;
    padding: 23px;
    background: rgba(10, 13, 16, 0.92);
}

.gaming-first-step-number {
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.gaming-first-step h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.98rem;
}

.gaming-first-step p {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.6;
}


/* RULES */

.gaming-rules-strip {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 24px 28px;
    border-radius: 19px;
    background: rgba(10, 13, 16, 0.66);
    border: 1px solid rgba(201, 160, 61, 0.17);
}

.gaming-rules-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.gaming-rules-icon svg {
    width: 21px;
    height: 21px;
}

.gaming-rules-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
}

.gaming-rules-content p {
    max-width: 900px;
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .gaming-overview-hero {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gaming-overview-image {
        height: 460px;
    }

    .gaming-map-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {

    .gaming-overview-hero {
        margin-top: 35px;
        margin-bottom: 45px;
    }

    .gaming-overview-image {
        height: 380px;
    }

    .gaming-overview-summary h3 {
        font-size: 1.65rem;
    }

    .gaming-map {
        grid-template-columns: 1fr;
    }

    .gaming-map-card,
    .gaming-map-card-large {
        min-height: auto;
    }

    .gaming-first-visit {
        padding: 28px;
    }

    .gaming-first-visit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {

    .gaming-overview-image {
        height: 310px;
    }

    .gaming-overview-image-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .gaming-map-card {
        padding: 22px;
        padding-bottom: 55px;
    }

    .gaming-map-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .gaming-map-number {
        font-size: 1.8rem;
    }

    .gaming-first-visit {
        padding: 22px;
    }

    .gaming-rules-strip {
        align-items: flex-start;
        padding: 21px;
    }
}
/* ============================================
   TABLE GAMES
   ============================================ */

.table-games-section {
    position: relative;
    overflow: hidden;
}

.table-games-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 25%;
    right: -380px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.06);
    filter: blur(65px);
    pointer-events: none;
}

.table-games-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.table-games-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.table-games-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}


/* MAIN FEATURE */

.table-games-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
    margin-bottom: 60px;
}

.table-games-image {
    position: relative;
    min-height: 535px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.table-games-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.table-games-image:hover img {
    transform: scale(1.035);
}

.table-games-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.94),
        rgba(10, 13, 16, 0.08) 60%
    );
}

.table-games-image-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 27px;
}

.table-games-image-overlay span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.table-games-image-overlay p {
    max-width: 430px;
    margin: 0;
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.table-games-feature-content h3 {
    margin-bottom: 22px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.table-games-feature-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 17px;
}

.table-games-feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 27px;
}

.table-feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--light);
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.16);
    font-size: 0.8rem;
}

.table-feature-point svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}


/* GAME CARDS */

.table-games-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.table-game-card {
    position: relative;
    min-height: 390px;
    padding: 27px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.table-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.48);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.table-game-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.75)
        );
}

.table-game-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.table-game-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.table-game-icon svg {
    width: 22px;
    height: 22px;
}

.table-game-index {
    color: rgba(201, 160, 61, 0.25);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.table-game-category {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.67rem;
    font-weight: 700;
}

.table-game-card h3 {
    margin-bottom: 13px;
    color: var(--light);
    font-size: 1.3rem;
}

.table-game-card > p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
}

.table-game-detail,
.table-game-level {
    margin-top: 19px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 160, 61, 0.13);
}

.table-game-detail span,
.table-game-level span {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 600;
}

.table-game-detail p,
.table-game-level p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.55;
}


/* BEGINNER PANEL */

.table-beginner-panel {
    margin-top: 55px;
    padding: 40px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.07),
            rgba(10, 13, 16, 0.8)
        );
    border: 1px solid var(--glass-border);
}

.table-beginner-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.table-beginner-heading-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.table-beginner-heading-icon svg {
    width: 23px;
    height: 23px;
}

.table-beginner-heading .table-games-kicker {
    margin-bottom: 3px;
}

.table-beginner-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.55rem;
}

.table-beginner-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.14);
}

.table-beginner-step {
    display: flex;
    gap: 14px;
    padding: 23px;
    background: rgba(10, 13, 16, 0.94);
}

.table-step-number {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
}

.table-beginner-step h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.92rem;
}

.table-beginner-step p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}


/* COMPARISON */

.table-games-comparison {
    margin-top: 25px;
    padding: 38px;
    border-radius: 25px;
    background: rgba(15, 20, 23, 0.66);
    border: 1px solid var(--glass-border);
}

.table-games-comparison-heading {
    margin-bottom: 25px;
}

.table-games-comparison-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.table-comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.table-comparison-item {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 160, 61, 0.12);
}

.table-comparison-title {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.92rem;
    font-weight: 600;
}

.table-comparison-label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.table-comparison-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.55;
}


/* RULE NOTE */

.table-games-rule-note {
    display: flex;
    gap: 17px;
    align-items: center;
    margin-top: 22px;
    padding: 24px 27px;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.18);
}

.table-games-rule-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.table-games-rule-icon svg {
    width: 21px;
    height: 21px;
}

.table-games-rule-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.88rem;
    font-weight: 600;
}

.table-games-rule-note p {
    max-width: 920px;
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .table-games-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .table-games-feature {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .table-games-image {
        min-height: 460px;
    }

    .table-beginner-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .table-games-feature {
        margin-top: 35px;
        margin-bottom: 45px;
    }

    .table-games-image {
        min-height: 380px;
    }

    .table-games-feature-content h3 {
        font-size: 1.65rem;
    }

    .table-games-categories {
        grid-template-columns: 1fr;
    }

    .table-game-card {
        min-height: auto;
    }

    .table-beginner-panel {
        padding: 28px;
    }

    .table-beginner-steps {
        grid-template-columns: 1fr;
    }

    .table-comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {

    .table-games-image {
        min-height: 310px;
    }

    .table-games-image-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .table-games-feature-points {
        grid-template-columns: 1fr;
    }

    .table-game-card {
        padding: 22px;
    }

    .table-beginner-panel,
    .table-games-comparison {
        padding: 22px;
    }

    .table-games-rule-note {
        align-items: flex-start;
        padding: 21px;
    }
}
/* ============================================
   ELECTRONIC TABLE GAMES
   ============================================ */

.electronic-tables-section {
    position: relative;
    overflow: hidden;
}

.electronic-tables-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    top: 15%;
    left: -420px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.electronic-tables-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.electronic-tables-intro {
    max-width: 810px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.etg-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.71rem;
    font-weight: 700;
}


/* MAIN PANEL */

.etg-main-panel {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: center;
    margin-top: 55px;
    padding: 52px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 20, 23, 0.85),
            rgba(201, 160, 61, 0.055)
        );
    border: 1px solid var(--glass-border);
}

.etg-main-content h3 {
    max-width: 620px;
    margin-bottom: 22px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.etg-main-content p {
    margin-bottom: 17px;
    color: var(--gray);
    line-height: 1.8;
}


/* TERMINAL ILLUSTRATION */

.etg-terminal-visual {
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
}

.etg-terminal-screen {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border: 2px solid rgba(201, 160, 61, 0.35);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(10, 13, 16, 0.98),
            rgba(26, 32, 35, 0.96)
        );
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        inset 0 0 35px rgba(201, 160, 61, 0.04);
}

.etg-screen-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 160, 61, 0.13);
}

.etg-screen-top span {
    color: var(--gray);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.etg-screen-top svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.etg-screen-center {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.etg-screen-ring {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 61, 0.3);
    background: rgba(201, 160, 61, 0.07);
    box-shadow: 0 0 35px rgba(201, 160, 61, 0.07);
}

.etg-screen-ring svg {
    width: 38px;
    height: 38px;
    color: var(--primary);
}

.etg-screen-center > span {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.etg-screen-center p {
    max-width: 220px;
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.5;
}

.etg-screen-controls {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.etg-screen-controls span {
    height: 9px;
    border-radius: 50px;
    background: rgba(201, 160, 61, 0.16);
}

.etg-screen-controls span:first-child {
    background: var(--primary);
}

.etg-terminal-base {
    width: 65%;
    height: 48px;
    margin: 0 auto;
    border-left: 2px solid rgba(201, 160, 61, 0.25);
    border-right: 2px solid rgba(201, 160, 61, 0.25);
}

.etg-terminal-base div {
    position: relative;
    top: 46px;
    left: -18%;
    width: 136%;
    height: 5px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.3);
}


/* COMPARISON */

.etg-comparison {
    margin-top: 55px;
}

.etg-comparison-heading {
    max-width: 680px;
    margin-bottom: 27px;
}

.etg-comparison-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.65rem;
    line-height: 1.3;
}

.etg-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.etg-comparison-card {
    padding: 28px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.etg-comparison-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.42);
}

.etg-comparison-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.11),
            rgba(15, 20, 23, 0.76)
        );
    border-color: rgba(201, 160, 61, 0.32);
}

.etg-comparison-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.etg-comparison-icon svg {
    width: 22px;
    height: 22px;
}

.etg-comparison-type {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.etg-comparison-card h4 {
    margin-bottom: 12px;
    color: var(--light);
    font-size: 1.17rem;
}

.etg-comparison-card > p {
    color: var(--gray);
    font-size: 0.84rem;
    line-height: 1.65;
}

.etg-comparison-list {
    list-style: none;
    padding: 17px 0 0;
    margin: 18px 0 0;
    border-top: 1px solid rgba(201, 160, 61, 0.12);
}

.etg-comparison-list li {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
    color: var(--gray);
    font-size: 0.76rem;
}

.etg-comparison-list svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}


/* PROCESS */

.etg-process-panel {
    margin-top: 55px;
    padding: 38px;
    border-radius: 27px;
    background: rgba(10, 13, 16, 0.66);
    border: 1px solid var(--glass-border);
}

.etg-process-heading {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 28px;
}

.etg-process-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.etg-process-heading-icon svg {
    width: 22px;
    height: 22px;
}

.etg-process-heading .etg-kicker {
    margin-bottom: 2px;
}

.etg-process-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.5rem;
}

.etg-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.12);
}

.etg-process-step {
    position: relative;
    padding: 25px;
    background: rgba(10, 13, 16, 0.94);
}

.etg-process-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(201, 160, 61, 0.25);
    font-size: 1.3rem;
    font-weight: 700;
}

.etg-process-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.etg-process-icon svg {
    width: 18px;
    height: 18px;
}

.etg-process-step h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.92rem;
}

.etg-process-step p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.58;
}


/* FACT CARDS */

.etg-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.etg-fact-card {
    display: flex;
    gap: 16px;
    padding: 23px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.66);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.etg-fact-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.etg-fact-icon svg {
    width: 19px;
    height: 19px;
}

.etg-fact-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.87rem;
    font-weight: 600;
}

.etg-fact-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}


/* REWARDS */

.etg-rewards-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    margin-top: 24px;
    padding: 30px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.09),
            rgba(15, 20, 23, 0.74)
        );
    border: 1px solid rgba(201, 160, 61, 0.22);
}

.etg-rewards-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
}

.etg-rewards-icon svg {
    width: 25px;
    height: 25px;
}

.etg-rewards-content .etg-kicker {
    margin-bottom: 5px;
}

.etg-rewards-content h3 {
    margin-bottom: 11px;
    color: var(--light);
    font-size: 1.25rem;
}

.etg-rewards-content p {
    margin-bottom: 9px;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.65;
}

.etg-rewards-content p:last-child {
    margin-bottom: 0;
}


/* ACCURACY */

.etg-accuracy-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 19px 22px;
    border-radius: 16px;
    border: 1px solid rgba(201, 160, 61, 0.13);
    background: rgba(10, 13, 16, 0.58);
}

.etg-accuracy-note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.etg-accuracy-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .etg-main-panel {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .etg-terminal-visual {
        max-width: 360px;
    }

    .etg-comparison-grid {
        grid-template-columns: 1fr;
    }

    .etg-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .etg-main-panel {
        margin-top: 35px;
        padding: 32px;
    }

    .etg-main-content h3 {
        font-size: 1.65rem;
    }

    .etg-facts-grid {
        grid-template-columns: 1fr;
    }

    .etg-process-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .etg-main-panel {
        padding: 23px;
        border-radius: 22px;
    }

    .etg-screen-center {
        min-height: 200px;
    }

    .etg-process-grid {
        grid-template-columns: 1fr;
    }

    .etg-process-panel {
        padding: 22px;
    }

    .etg-rewards-panel {
        grid-template-columns: 1fr;
        padding: 23px;
    }
}
/* ============================================
   STAR POKER BRISBANE
   ============================================ */

.poker-section {
    position: relative;
    overflow: hidden;
}

.poker-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 18%;
    right: -390px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.poker-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.poker-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.poker-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.71rem;
    font-weight: 700;
}


/* OVERVIEW */

.poker-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
}

.poker-overview-content h3 {
    margin-bottom: 22px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.poker-overview-content p {
    margin-bottom: 17px;
    color: var(--gray);
    line-height: 1.8;
}

.poker-key-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.poker-key-card {
    padding: 24px;
    border-radius: 19px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.poker-key-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 160, 61, 0.42);
}

.poker-key-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.poker-key-icon svg {
    width: 20px;
    height: 20px;
}

.poker-key-card > span {
    display: block;
    margin-bottom: 4px;
    color: var(--gray);
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.poker-key-card h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 1.05rem;
}

.poker-key-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.55;
}


/* LIMITS */

.poker-limits-section {
    margin-top: 65px;
}

.poker-limits-heading {
    max-width: 700px;
    margin-bottom: 28px;
}

.poker-limits-heading h3 {
    margin-bottom: 10px;
    color: var(--light);
    font-size: 1.65rem;
}

.poker-limits-heading p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

.poker-limits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.poker-limit-card {
    padding: 26px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.poker-limit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.45);
}

.poker-limit-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.11),
            rgba(15, 20, 23, 0.78)
        );
    border-color: rgba(201, 160, 61, 0.3);
}

.poker-limit-top {
    padding-bottom: 20px;
    margin-bottom: 17px;
    border-bottom: 1px solid rgba(201, 160, 61, 0.14);
}

.poker-limit-label {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.66rem;
    font-weight: 700;
}

.poker-limit-stakes {
    color: var(--light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
}

.poker-limit-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.045);
}

.poker-limit-row span {
    color: var(--gray);
    font-size: 0.75rem;
}

.poker-limit-row strong {
    color: var(--light);
    font-size: 0.76rem;
    font-weight: 600;
    text-align: right;
}

.poker-limit-extra {
    display: flex;
    gap: 12px;
    margin-top: 19px;
    padding: 15px;
    border-radius: 14px;
    background: rgba(201, 160, 61, 0.08);
}

.poker-limit-extra > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--primary);
}

.poker-limit-extra span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 600;
}

.poker-limit-extra p {
    margin: 0;
    color: var(--gray);
    font-size: 0.7rem;
    line-height: 1.5;
}


/* FORMATS */

.poker-formats {
    margin-top: 55px;
}

.poker-formats-heading {
    margin-bottom: 24px;
}

.poker-formats-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.5rem;
}

.poker-formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.poker-format-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.065),
            rgba(15, 20, 23, 0.7)
        );
    border: 1px solid rgba(201, 160, 61, 0.16);
}

.poker-format-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.poker-format-icon svg {
    width: 22px;
    height: 22px;
}

.poker-format-label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.65rem;
    font-weight: 700;
}

.poker-format-card h4 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.12rem;
}

.poker-format-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.65;
}


/* FIRST VISIT */

.poker-first-visit {
    margin-top: 55px;
    padding: 39px;
    border-radius: 27px;
    background: rgba(10, 13, 16, 0.7);
    border: 1px solid var(--glass-border);
}

.poker-first-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.poker-first-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.poker-first-heading .poker-kicker {
    margin-bottom: 2px;
}

.poker-first-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.5rem;
}

.poker-first-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.13);
}

.poker-first-item {
    display: flex;
    gap: 13px;
    padding: 23px;
    background: rgba(10, 13, 16, 0.94);
}

.poker-first-number {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
}

.poker-first-item h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.9rem;
}

.poker-first-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.58;
}


/* CLARIFICATION */

.poker-clarification {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 24px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.075);
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.poker-clarification-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
}

.poker-clarification-icon svg {
    width: 21px;
    height: 21px;
}

.poker-clarification .poker-kicker {
    margin-bottom: 4px;
}

.poker-clarification h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.poker-clarification p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.62;
}


/* RULE NOTE */

.poker-rules-note {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 23px 26px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.62);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.poker-rules-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.poker-rules-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.86rem;
    font-weight: 600;
}

.poker-rules-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .poker-limits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .poker-first-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .poker-overview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .poker-overview {
        margin-top: 35px;
    }

    .poker-overview-content h3 {
        font-size: 1.65rem;
    }

    .poker-key-facts,
    .poker-limits-grid,
    .poker-formats-grid,
    .poker-first-grid {
        grid-template-columns: 1fr;
    }

    .poker-first-visit {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .poker-key-card,
    .poker-limit-card,
    .poker-format-card {
        padding: 22px;
    }

    .poker-first-visit {
        padding: 22px;
    }

    .poker-clarification {
        grid-template-columns: 1fr;
    }

    .poker-rules-note {
        align-items: flex-start;
        padding: 21px;
    }
}
/* ============================================
   NEW GAMES & JACKPOTS
   ============================================ */

.new-games-section {
    position: relative;
    overflow: hidden;
}

.new-games-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: 20%;
    left: -340px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(65px);
    pointer-events: none;
}

.new-games-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.new-games-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.new-games-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* OVERVIEW */

.new-games-overview {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
    margin-top: 50px;
}

.new-games-overview-content h3 {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.9rem;
    line-height: 1.25;
}

.new-games-overview-content p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.78;
}

.new-games-types {
    display: grid;
    gap: 14px;
}

.new-game-type-card {
    padding: 25px;
    border-radius: 20px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
}

.new-game-type-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.new-game-type-icon svg {
    width: 21px;
    height: 21px;
}

.new-game-type-card > span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.new-game-type-card h4 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.1rem;
}

.new-game-type-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.62;
}


/* CURRENT GAMES */

.new-games-current {
    margin-top: 55px;
}

.new-games-current-heading {
    max-width: 720px;
    margin-bottom: 25px;
}

.new-games-current-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.55rem;
}

.new-games-current-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.86rem;
    line-height: 1.65;
}

.new-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.new-game-card {
    padding: 24px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.07),
            rgba(15, 20, 23, 0.74)
        );
    border: 1px solid rgba(201, 160, 61, 0.17);
    transition: var(--transition);
}

.new-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.4);
}

.new-game-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.new-game-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.new-game-icon svg {
    width: 19px;
    height: 19px;
}

.new-game-zone {
    color: var(--gray);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.new-game-card h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 1.05rem;
}

.new-game-jackpot {
    display: block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.new-game-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}


/* NEW GAME ZONE */

.new-games-zone-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 30px;
    padding: 28px;
    border-radius: 21px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.new-games-zone-icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
}

.new-games-zone-icon svg {
    width: 22px;
    height: 22px;
}

.new-games-zone-panel .new-games-kicker {
    margin-bottom: 4px;
}

.new-games-zone-panel h3 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.2rem;
}

.new-games-zone-panel p {
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.62;
}

.new-games-zone-panel p:last-child {
    margin-bottom: 0;
}


/* ACCURACY NOTE */

.new-games-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 18px 21px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.new-games-note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.new-games-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .new-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .new-games-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .new-games-overview {
        margin-top: 35px;
    }

    .new-games-overview-content h3 {
        font-size: 1.6rem;
    }

    .new-games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {

    .new-game-type-card,
    .new-game-card {
        padding: 21px;
    }

    .new-games-zone-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

/* ============================================
   PREMIUM GAMING
   ============================================ */

.premium-gaming-section {
    position: relative;
    overflow: hidden;
}

.premium-gaming-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 12%;
    right: -390px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.065);
    filter: blur(70px);
    pointer-events: none;
}

.premium-gaming-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.premium-gaming-intro {
    max-width: 810px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.premium-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* INTRO */

.premium-intro-panel {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 55px;
    align-items: center;
    margin-top: 55px;
    padding: 50px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.075),
            rgba(10, 13, 16, 0.88)
        );
    border: 1px solid var(--glass-border);
}

.premium-intro-content h3 {
    margin-bottom: 22px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.premium-intro-content p {
    margin-bottom: 17px;
    color: var(--gray);
    line-height: 1.8;
}

.premium-intro-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.premium-intro-fact {
    min-height: 145px;
    padding: 21px;
    border-radius: 18px;
    background: rgba(10, 13, 16, 0.62);
    border: 1px solid rgba(201, 160, 61, 0.16);
}

.premium-intro-fact > svg {
    width: 22px;
    height: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.premium-intro-fact span {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.87rem;
    font-weight: 600;
}

.premium-intro-fact p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.5;
}


/* ROOMS */

.premium-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.premium-room-card {
    padding: 34px;
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.08),
            rgba(15, 20, 23, 0.76)
        );
    border: 1px solid rgba(201, 160, 61, 0.19);
}

.premium-room-card-sovereign {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.13),
            rgba(10, 13, 16, 0.82)
        );
    border-color: rgba(201, 160, 61, 0.3);
}

.premium-room-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

.premium-room-icon {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.premium-room-icon svg {
    width: 23px;
    height: 23px;
}

.premium-room-label {
    color: var(--primary);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.premium-room-card > h3 {
    margin-bottom: 10px;
    color: var(--light);
    font-size: 1.75rem;
}

.premium-room-lead {
    max-width: 540px;
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

.premium-room-divider {
    height: 1px;
    margin: 25px 0;
    background: rgba(201, 160, 61, 0.14);
}

.premium-room-detail {
    display: flex;
    gap: 14px;
    padding: 15px 0;
}

.premium-room-detail > svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 2px;
    color: var(--primary);
}

.premium-room-detail span {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 600;
}

.premium-room-detail p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}


/* ACCESS */

.premium-access-panel {
    margin-top: 50px;
    padding: 38px;
    border-radius: 27px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.premium-access-heading {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.premium-access-heading-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.premium-access-heading .premium-kicker {
    margin-bottom: 2px;
}

.premium-access-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.5rem;
}

.premium-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.13);
}

.premium-access-step {
    position: relative;
    padding: 24px;
    background: rgba(10, 13, 16, 0.95);
}

.premium-access-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: rgba(201, 160, 61, 0.25);
    font-size: 1.2rem;
    font-weight: 700;
}

.premium-access-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.premium-access-icon svg {
    width: 18px;
    height: 18px;
}

.premium-access-step h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.9rem;
}

.premium-access-step p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.58;
}


/* SCREENING */

.premium-screening-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 19px;
    margin-top: 24px;
    padding: 29px;
    border-radius: 21px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.19);
}

.premium-screening-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.premium-screening-icon svg {
    width: 23px;
    height: 23px;
}

.premium-screening-content .premium-kicker {
    margin-bottom: 4px;
}

.premium-screening-content h3 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.2rem;
}

.premium-screening-content p {
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.63;
}

.premium-screening-content p:last-child {
    margin-bottom: 0;
}


/* EXPERIENCE */

.premium-experience {
    margin-top: 45px;
}

.premium-experience-heading {
    margin-bottom: 23px;
}

.premium-experience-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.premium-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.premium-experience-item {
    padding: 23px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.68);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.premium-experience-item > svg {
    width: 21px;
    height: 21px;
    margin-bottom: 15px;
    color: var(--primary);
}

.premium-experience-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.86rem;
    font-weight: 600;
}

.premium-experience-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.55;
}


/* ENTRY NOTE */

.premium-entry-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 19px 22px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.premium-entry-note > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.premium-entry-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .premium-access-grid,
    .premium-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .premium-intro-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .premium-rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .premium-intro-panel {
        margin-top: 35px;
        padding: 32px;
    }

    .premium-intro-content h3 {
        font-size: 1.65rem;
    }

    .premium-access-grid,
    .premium-experience-grid {
        grid-template-columns: 1fr;
    }

    .premium-access-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .premium-intro-panel {
        padding: 23px;
    }

    .premium-intro-facts {
        grid-template-columns: 1fr;
    }

    .premium-room-card {
        padding: 23px;
    }

    .premium-access-panel {
        padding: 22px;
    }

    .premium-screening-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}
/* ============================================
   CASINO HOURS & ENTRY
   ============================================ */

.casino-entry-section {
    position: relative;
    overflow: hidden;
}

.section-anchor {
    position: absolute;
    top: 0;
}

.casino-entry-section::before {
    content: '';
    position: absolute;
    width: 580px;
    height: 580px;
    top: 15%;
    left: -370px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.casino-entry-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.casino-entry-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.casino-entry-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* HOURS */

.casino-hours-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    margin-top: 55px;
}

.casino-hours-main {
    padding: 38px;
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.12),
            rgba(15, 20, 23, 0.82)
        );
    border: 1px solid rgba(201, 160, 61, 0.25);
}

.casino-hours-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
}

.casino-hours-icon svg {
    width: 24px;
    height: 24px;
}

.casino-hours-value {
    margin: 10px 0 7px;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.casino-hours-main h3 {
    margin-bottom: 15px;
    color: var(--light);
    font-size: 1.3rem;
}

.casino-hours-main p {
    margin: 0;
    color: var(--gray);
    font-size: 0.86rem;
    line-height: 1.7;
}


/* HOLIDAYS */

.casino-holiday-hours {
    padding: 34px;
    border-radius: 26px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
}

.casino-holiday-heading {
    margin-bottom: 22px;
}

.casino-holiday-heading h3 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 1.35rem;
}

.casino-holiday-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.6;
}

.casino-holiday-list {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.casino-holiday-item {
    display: grid;
    grid-template-columns: 1fr 0.55fr 0.55fr;
    gap: 15px;
    align-items: center;
    padding: 19px 21px;
    background: rgba(10, 13, 16, 0.72);
    border-bottom: 1px solid rgba(201, 160, 61, 0.11);
}

.casino-holiday-item:last-child {
    border-bottom: none;
}

.casino-holiday-name {
    display: block;
    margin-bottom: 3px;
    color: var(--light);
    font-size: 0.91rem;
    font-weight: 600;
}

.casino-holiday-status {
    color: var(--primary);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.casino-holiday-time span {
    display: block;
    margin-bottom: 3px;
    color: var(--gray);
    font-size: 0.67rem;
    text-transform: uppercase;
}

.casino-holiday-time strong {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
}


/* OTHER VENUES */

.casino-venue-hours-note {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 21px 24px;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.06);
    border: 1px solid rgba(201, 160, 61, 0.16);
}

.casino-venue-hours-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-venue-hours-icon svg {
    width: 20px;
    height: 20px;
}

.casino-venue-hours-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.87rem;
    font-weight: 600;
}

.casino-venue-hours-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}


/* ENTRY OVERVIEW */

.casino-entry-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 60px;
}

.casino-entry-copy h3 {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.9rem;
    line-height: 1.25;
}

.casino-entry-copy p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.78;
}

.casino-entry-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.casino-entry-card {
    min-height: 205px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.7);
    border: 1px solid var(--glass-border);
}

.casino-entry-card-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-entry-card-icon svg {
    width: 20px;
    height: 20px;
}

.casino-entry-card-label {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.casino-entry-card h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.95rem;
}

.casino-entry-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.58;
}


/* SECURITY */

.casino-security-panel {
    margin-top: 55px;
    padding: 38px;
    border-radius: 27px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.casino-security-heading {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 27px;
}

.casino-security-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-security-heading .casino-entry-kicker {
    margin-bottom: 2px;
}

.casino-security-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.casino-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.casino-security-item {
    padding: 22px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 160, 61, 0.12);
}

.casino-security-icon {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.casino-security-icon svg {
    width: 19px;
    height: 19px;
}

.casino-security-item h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.9rem;
}

.casino-security-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* ACCESS COMPARISON */

.casino-access-comparison {
    margin-top: 50px;
}

.casino-access-heading {
    margin-bottom: 23px;
}

.casino-access-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.casino-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.casino-access-card {
    padding: 30px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
}

.casino-access-card-premium {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.78)
        );
    border-color: rgba(201, 160, 61, 0.25);
}

.casino-access-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--primary);
}

.casino-access-top svg {
    width: 20px;
    height: 20px;
}

.casino-access-top span {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.casino-access-card h4 {
    margin-bottom: 18px;
    color: var(--light);
    font-size: 1.2rem;
}

.casino-access-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-access-card li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.045);
}

.casino-access-card li:last-child {
    border-bottom: none;
}

.casino-access-card li svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-top: 2px;
    color: var(--primary);
}


/* SUMMARY */

.casino-entry-summary {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 21px 24px;
    border-radius: 17px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.17);
}

.casino-entry-summary-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-entry-summary-icon svg {
    width: 19px;
    height: 19px;
}

.casino-entry-summary span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.87rem;
    font-weight: 600;
}

.casino-entry-summary p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .casino-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .casino-hours-panel,
    .casino-entry-overview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .casino-hours-panel {
        margin-top: 35px;
    }

    .casino-hours-value {
        font-size: 3.2rem;
    }

    .casino-holiday-item {
        grid-template-columns: 1fr 1fr;
    }

    .casino-holiday-item > div:first-child {
        grid-column: 1 / -1;
    }

    .casino-entry-requirements,
    .casino-security-grid,
    .casino-access-grid {
        grid-template-columns: 1fr;
    }

    .casino-security-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .casino-hours-main,
    .casino-holiday-hours {
        padding: 23px;
    }

    .casino-entry-card {
        min-height: auto;
    }

    .casino-security-panel {
        padding: 22px;
    }

    .casino-access-card {
        padding: 22px;
    }

    .casino-entry-summary,
    .casino-venue-hours-note {
        align-items: flex-start;
    }
}

/* ============================================
   CASINO HOURS & ENTRY
   ============================================ */

.casino-entry-section {
    position: relative;
    overflow: hidden;
}

.section-anchor {
    position: absolute;
    top: 0;
}

.casino-entry-section::before {
    content: '';
    position: absolute;
    width: 580px;
    height: 580px;
    top: 15%;
    left: -370px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.casino-entry-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.casino-entry-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.casino-entry-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* HOURS */

.casino-hours-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    margin-top: 55px;
}

.casino-hours-main {
    padding: 38px;
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.12),
            rgba(15, 20, 23, 0.82)
        );
    border: 1px solid rgba(201, 160, 61, 0.25);
}

.casino-hours-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.12);
}

.casino-hours-icon svg {
    width: 24px;
    height: 24px;
}

.casino-hours-value {
    margin: 10px 0 7px;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.casino-hours-main h3 {
    margin-bottom: 15px;
    color: var(--light);
    font-size: 1.3rem;
}

.casino-hours-main p {
    margin: 0;
    color: var(--gray);
    font-size: 0.86rem;
    line-height: 1.7;
}


/* HOLIDAYS */

.casino-holiday-hours {
    padding: 34px;
    border-radius: 26px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
}

.casino-holiday-heading {
    margin-bottom: 22px;
}

.casino-holiday-heading h3 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 1.35rem;
}

.casino-holiday-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.6;
}

.casino-holiday-list {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.casino-holiday-item {
    display: grid;
    grid-template-columns: 1fr 0.55fr 0.55fr;
    gap: 15px;
    align-items: center;
    padding: 19px 21px;
    background: rgba(10, 13, 16, 0.72);
    border-bottom: 1px solid rgba(201, 160, 61, 0.11);
}

.casino-holiday-item:last-child {
    border-bottom: none;
}

.casino-holiday-name {
    display: block;
    margin-bottom: 3px;
    color: var(--light);
    font-size: 0.91rem;
    font-weight: 600;
}

.casino-holiday-status {
    color: var(--primary);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.casino-holiday-time span {
    display: block;
    margin-bottom: 3px;
    color: var(--gray);
    font-size: 0.67rem;
    text-transform: uppercase;
}

.casino-holiday-time strong {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
}


/* OTHER VENUES */

.casino-venue-hours-note {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 21px 24px;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.06);
    border: 1px solid rgba(201, 160, 61, 0.16);
}

.casino-venue-hours-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-venue-hours-icon svg {
    width: 20px;
    height: 20px;
}

.casino-venue-hours-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.87rem;
    font-weight: 600;
}

.casino-venue-hours-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}


/* ENTRY OVERVIEW */

.casino-entry-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 60px;
}

.casino-entry-copy h3 {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.9rem;
    line-height: 1.25;
}

.casino-entry-copy p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.78;
}

.casino-entry-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.casino-entry-card {
    min-height: 205px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.7);
    border: 1px solid var(--glass-border);
}

.casino-entry-card-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-entry-card-icon svg {
    width: 20px;
    height: 20px;
}

.casino-entry-card-label {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.casino-entry-card h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.95rem;
}

.casino-entry-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.58;
}


/* SECURITY */

.casino-security-panel {
    margin-top: 55px;
    padding: 38px;
    border-radius: 27px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.casino-security-heading {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 27px;
}

.casino-security-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-security-heading .casino-entry-kicker {
    margin-bottom: 2px;
}

.casino-security-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.casino-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.casino-security-item {
    padding: 22px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 160, 61, 0.12);
}

.casino-security-icon {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.casino-security-icon svg {
    width: 19px;
    height: 19px;
}

.casino-security-item h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.9rem;
}

.casino-security-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* ACCESS COMPARISON */

.casino-access-comparison {
    margin-top: 50px;
}

.casino-access-heading {
    margin-bottom: 23px;
}

.casino-access-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.casino-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.casino-access-card {
    padding: 30px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
}

.casino-access-card-premium {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.78)
        );
    border-color: rgba(201, 160, 61, 0.25);
}

.casino-access-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--primary);
}

.casino-access-top svg {
    width: 20px;
    height: 20px;
}

.casino-access-top span {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.casino-access-card h4 {
    margin-bottom: 18px;
    color: var(--light);
    font-size: 1.2rem;
}

.casino-access-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-access-card li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.045);
}

.casino-access-card li:last-child {
    border-bottom: none;
}

.casino-access-card li svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-top: 2px;
    color: var(--primary);
}


/* SUMMARY */

.casino-entry-summary {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 21px 24px;
    border-radius: 17px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.17);
}

.casino-entry-summary-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-entry-summary-icon svg {
    width: 19px;
    height: 19px;
}

.casino-entry-summary span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.87rem;
    font-weight: 600;
}

.casino-entry-summary p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .casino-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .casino-hours-panel,
    .casino-entry-overview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .casino-hours-panel {
        margin-top: 35px;
    }

    .casino-hours-value {
        font-size: 3.2rem;
    }

    .casino-holiday-item {
        grid-template-columns: 1fr 1fr;
    }

    .casino-holiday-item > div:first-child {
        grid-column: 1 / -1;
    }

    .casino-entry-requirements,
    .casino-security-grid,
    .casino-access-grid {
        grid-template-columns: 1fr;
    }

    .casino-security-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .casino-hours-main,
    .casino-holiday-hours {
        padding: 23px;
    }

    .casino-entry-card {
        min-height: auto;
    }

    .casino-security-panel {
        padding: 22px;
    }

    .casino-access-card {
        padding: 22px;
    }

    .casino-entry-summary,
    .casino-venue-hours-note {
        align-items: flex-start;
    }
}
/* ============================================
   DRESS CODE & CASINO RULES
   ============================================ */

.dress-code-section {
    position: relative;
    overflow: hidden;
}

.dress-code-section::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    top: 18%;
    right: -360px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.dress-code-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.dress-code-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.dress-code-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* OVERVIEW */

.dress-code-overview {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    margin-top: 55px;
}

.dress-code-main-card {
    padding: 38px;
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.8)
        );
    border: 1px solid rgba(201, 160, 61, 0.23);
}

.dress-code-main-icon {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
}

.dress-code-main-icon svg {
    width: 23px;
    height: 23px;
}

.dress-code-main-card h3 {
    margin-bottom: 15px;
    color: var(--light);
    font-size: 1.55rem;
}

.dress-code-main-card p {
    margin-bottom: 14px;
    color: var(--gray);
    line-height: 1.72;
}

.dress-code-main-card p:last-child {
    margin-bottom: 0;
}

.dress-code-quick-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.dress-code-quick-card {
    padding: 26px;
    border-radius: 20px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
}

.dress-code-quick-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.dress-code-quick-icon svg {
    width: 19px;
    height: 19px;
}

.dress-code-quick-card > span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.dress-code-quick-card h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1rem;
}

.dress-code-quick-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}


/* CLOTHING RULES */

.dress-rules-panel {
    margin-top: 55px;
}

.dress-rules-heading {
    max-width: 700px;
    margin-bottom: 25px;
}

.dress-rules-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.5rem;
}

.dress-rules-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.65;
}

.dress-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dress-rule-card {
    padding: 24px;
    border-radius: 19px;
    background: rgba(15, 20, 23, 0.7);
    border: 1px solid rgba(201, 160, 61, 0.14);
    transition: var(--transition);
}

.dress-rule-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 160, 61, 0.4);
}

.dress-rule-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.dress-rule-icon svg {
    width: 19px;
    height: 19px;
}

.dress-rule-card h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.95rem;
}

.dress-rule-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.58;
}


/* BAGS */

.casino-items-panel {
    margin-top: 50px;
    padding: 36px;
    border-radius: 26px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.casino-items-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.casino-items-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-items-heading .dress-code-kicker {
    margin-bottom: 2px;
}

.casino-items-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.4rem;
}

.casino-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 17px;
    background: rgba(201, 160, 61, 0.12);
}

.casino-item-rule {
    padding: 23px;
    background: rgba(10, 13, 16, 0.94);
}

.casino-item-status {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.casino-item-rule h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.9rem;
}

.casino-item-rule p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.57;
}


/* DEVICES */

.casino-device-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    margin-top: 55px;
}

.casino-device-copy h3 {
    margin-bottom: 16px;
    color: var(--light);
    font-size: 1.7rem;
}

.casino-device-copy p {
    margin-bottom: 14px;
    color: var(--gray);
    line-height: 1.72;
}

.casino-device-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.casino-device-card {
    display: flex;
    gap: 13px;
    padding: 21px;
    border-radius: 17px;
    background: rgba(15, 20, 23, 0.7);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.casino-device-card > svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
    color: var(--primary);
}

.casino-device-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.83rem;
    font-weight: 600;
}

.casino-device-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* BEHAVIOUR */

.casino-behaviour-panel {
    margin-top: 50px;
}

.casino-behaviour-heading {
    max-width: 700px;
    margin-bottom: 23px;
}

.casino-behaviour-heading h3 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 1.4rem;
}

.casino-behaviour-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.83rem;
    line-height: 1.62;
}

.casino-behaviour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.casino-behaviour-item {
    display: flex;
    gap: 15px;
    padding: 23px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.68);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.casino-behaviour-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.casino-behaviour-icon svg {
    width: 19px;
    height: 19px;
}

.casino-behaviour-item h4 {
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.88rem;
}

.casino-behaviour-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.56;
}


/* FIRST VISIT */

.dress-first-visit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 24px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.075);
    border: 1px solid rgba(201, 160, 61, 0.19);
}

.dress-first-visit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.dress-first-visit-icon svg {
    width: 21px;
    height: 21px;
}

.dress-first-visit .dress-code-kicker {
    margin-bottom: 4px;
}

.dress-first-visit h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.dress-first-visit p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.63;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .casino-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .dress-code-overview,
    .casino-device-panel {
        grid-template-columns: 1fr;
    }

    .dress-rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .dress-code-overview {
        margin-top: 35px;
    }

    .dress-rules-grid,
    .casino-items-grid,
    .casino-device-grid,
    .casino-behaviour-grid {
        grid-template-columns: 1fr;
    }

    .casino-items-panel {
        padding: 27px;
    }
}

@media (max-width: 580px) {

    .dress-code-main-card {
        padding: 24px;
    }

    .dress-rule-card,
    .dress-code-quick-card {
        padding: 21px;
    }

    .casino-items-panel {
        padding: 22px;
    }

    .dress-first-visit {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}
/* ============================================
   THE STAR CLUB
   ============================================ */

.membership-section {
    position: relative;
    overflow: hidden;
}

.membership-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 16%;
    left: -390px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.06);
    filter: blur(70px);
    pointer-events: none;
}

.membership-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.membership-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.membership-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* MAIN FEATURE */

.membership-feature {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
    margin-top: 55px;
}

.membership-image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.membership-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.membership-image:hover img {
    transform: scale(1.035);
}

.membership-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.94),
        rgba(10, 13, 16, 0.08) 60%
    );
}

.membership-image-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 27px;
}

.membership-image-overlay span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.membership-image-overlay p {
    max-width: 430px;
    margin: 0;
    color: var(--light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.membership-feature-content h3 {
    margin-bottom: 21px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.membership-feature-content > p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.membership-feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.membership-feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--light);
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.16);
    font-size: 0.8rem;
}

.membership-feature-point svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}


/* JOIN PANEL */

.membership-join-panel {
    margin-top: 60px;
    padding: 38px;
    border-radius: 27px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.membership-join-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.membership-join-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.membership-join-icon svg {
    width: 22px;
    height: 22px;
}

.membership-join-heading .membership-kicker {
    margin-bottom: 2px;
}

.membership-join-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.membership-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.13);
}

.membership-join-item {
    position: relative;
    padding: 24px;
    background: rgba(10, 13, 16, 0.94);
}

.membership-join-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: rgba(201, 160, 61, 0.23);
    font-size: 1.2rem;
    font-weight: 700;
}

.membership-join-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.membership-join-item-icon svg {
    width: 18px;
    height: 18px;
}

.membership-join-item h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.9rem;
}

.membership-join-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.58;
}


/* BENEFITS */

.membership-benefits {
    margin-top: 55px;
}

.membership-benefits-heading {
    max-width: 740px;
    margin-bottom: 26px;
}

.membership-benefits-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.55rem;
}

.membership-benefits-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.65;
}

.membership-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.membership-benefit-card {
    padding: 25px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.065),
            rgba(15, 20, 23, 0.73)
        );
    border: 1px solid rgba(201, 160, 61, 0.15);
    transition: var(--transition);
}

.membership-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.4);
}

.membership-benefit-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.membership-benefit-icon svg {
    width: 20px;
    height: 20px;
}

.membership-benefit-label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.membership-benefit-card h4 {
    margin-bottom: 10px;
    color: var(--light);
    font-size: 1rem;
}

.membership-benefit-card > p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.62;
}

.membership-benefit-note {
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 160, 61, 0.13);
    color: var(--gray);
    font-size: 0.72rem;
    line-height: 1.5;
}


/* EXISTING MEMBER */

.membership-recognition-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 19px;
    margin-top: 30px;
    padding: 29px;
    border-radius: 21px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.19);
}

.membership-recognition-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.membership-recognition-icon svg {
    width: 22px;
    height: 22px;
}

.membership-recognition-content .membership-kicker {
    margin-bottom: 4px;
}

.membership-recognition-content h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.2rem;
}

.membership-recognition-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.63;
}


/* CURRENT OFFER */

.membership-current-offer {
    margin-top: 22px;
    padding: 30px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.11),
            rgba(15, 20, 23, 0.76)
        );
    border: 1px solid rgba(201, 160, 61, 0.24);
}

.membership-current-offer-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 17px;
}

.membership-current-offer-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.11);
}

.membership-current-offer-icon svg {
    width: 22px;
    height: 22px;
}

.membership-current-offer-top .membership-kicker {
    margin-bottom: 2px;
}

.membership-current-offer-top h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.3rem;
}

.membership-current-offer-content {
    max-width: 950px;
}

.membership-current-offer-content p {
    margin-bottom: 9px;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.65;
}

.membership-current-offer-content p:last-child {
    margin-bottom: 0;
}


/* DIGITAL */

.membership-digital-panel {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.membership-digital-copy h3 {
    margin-bottom: 14px;
    color: var(--light);
    font-size: 1.5rem;
}

.membership-digital-copy p {
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.7;
}

.membership-digital-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.membership-digital-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 19px;
    border-radius: 16px;
    color: var(--light);
    background: rgba(15, 20, 23, 0.7);
    border: 1px solid rgba(201, 160, 61, 0.13);
    font-size: 0.8rem;
}

.membership-digital-item svg {
    width: 19px;
    height: 19px;
    color: var(--primary);
}


/* NOTE */

.membership-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 22px;
    padding: 19px 22px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.membership-note > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.membership-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .membership-join-grid,
    .membership-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .membership-feature,
    .membership-digital-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .membership-image {
        min-height: 480px;
    }
}

@media (max-width: 768px) {

    .membership-feature {
        margin-top: 35px;
    }

    .membership-image {
        min-height: 390px;
    }

    .membership-feature-content h3 {
        font-size: 1.65rem;
    }

    .membership-join-grid,
    .membership-benefits-grid {
        grid-template-columns: 1fr;
    }

    .membership-join-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .membership-image {
        min-height: 320px;
    }

    .membership-feature-points,
    .membership-digital-facts {
        grid-template-columns: 1fr;
    }

    .membership-join-panel {
        padding: 22px;
    }

    .membership-recognition-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .membership-current-offer {
        padding: 22px;
    }
}
/* ============================================
   CASINO DINING
   ============================================ */

.casino-dining-section {
    position: relative;
    overflow: hidden;
}

.casino-dining-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 20%;
    right: -390px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.casino-dining-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.casino-dining-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.casino-dining-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* OVERVIEW */

.casino-dining-overview {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
}

.casino-dining-copy h3 {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.9rem;
    line-height: 1.25;
}

.casino-dining-copy p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.78;
}

.casino-dining-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.casino-dining-summary-item {
    min-height: 145px;
    padding: 21px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.casino-dining-summary-item > svg {
    width: 21px;
    height: 21px;
    margin-bottom: 15px;
    color: var(--primary);
}

.casino-dining-summary-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.86rem;
    font-weight: 600;
}

.casino-dining-summary-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.5;
}


/* MAIN VENUES */

.casino-dining-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 55px;
}

.casino-dining-card {
    padding: 28px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.casino-dining-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.42);
}

.casino-dining-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.11),
            rgba(15, 20, 23, 0.78)
        );
    border-color: rgba(201, 160, 61, 0.27);
}

.casino-dining-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 21px;
}

.casino-dining-card-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-dining-card-icon svg {
    width: 21px;
    height: 21px;
}

.casino-dining-card-type {
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.casino-dining-card h3 {
    margin-bottom: 10px;
    color: var(--light);
    font-size: 1.3rem;
}

.casino-dining-card-lead {
    margin: 0;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.65;
}

.casino-dining-card-divider {
    height: 1px;
    margin: 21px 0;
    background: rgba(201, 160, 61, 0.13);
}

.casino-dining-detail {
    padding: 10px 0;
}

.casino-dining-detail span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 600;
}

.casino-dining-detail p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* BARS */

.casino-dining-bars {
    margin-top: 50px;
}

.casino-dining-bars-heading {
    max-width: 720px;
    margin-bottom: 23px;
}

.casino-dining-bars-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.45rem;
}

.casino-dining-bars-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.83rem;
    line-height: 1.62;
}

.casino-dining-bars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.casino-dining-bar-card {
    display: flex;
    gap: 17px;
    padding: 27px;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.065),
            rgba(15, 20, 23, 0.72)
        );
    border: 1px solid rgba(201, 160, 61, 0.15);
}

.casino-dining-bar-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-dining-bar-icon svg {
    width: 21px;
    height: 21px;
}

.casino-dining-bar-card h4 {
    margin: 5px 0 8px;
    color: var(--light);
    font-size: 1.05rem;
}

.casino-dining-bar-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}

.casino-dining-bar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.casino-dining-bar-meta span {
    padding: 5px 9px;
    border-radius: 50px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.13);
    color: var(--gray);
    font-size: 0.68rem;
}


/* HOURS */

.casino-dining-hours-panel {
    margin-top: 50px;
    padding: 36px;
    border-radius: 26px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.casino-dining-hours-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.casino-dining-hours-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-dining-hours-heading .casino-dining-kicker {
    margin-bottom: 2px;
}

.casino-dining-hours-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.4rem;
}

.casino-dining-hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 17px;
    background: rgba(201, 160, 61, 0.12);
}

.casino-dining-hours-item {
    padding: 22px;
    background: rgba(10, 13, 16, 0.94);
}

.casino-dining-hours-item > span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.77rem;
    font-weight: 700;
}

.casino-dining-hours-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gray);
    font-size: 0.74rem;
    font-weight: 500;
}


/* GUIDE */

.casino-dining-guide {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 24px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.075);
    border: 1px solid rgba(201, 160, 61, 0.18);
}

.casino-dining-guide-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.casino-dining-guide-icon svg {
    width: 21px;
    height: 21px;
}

.casino-dining-guide .casino-dining-kicker {
    margin-bottom: 4px;
}

.casino-dining-guide h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.casino-dining-guide p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.63;
}


/* NOTE */

.casino-dining-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 19px 22px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.casino-dining-note > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.casino-dining-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .casino-dining-main {
        grid-template-columns: 1fr 1fr;
    }

    .casino-dining-card:last-child {
        grid-column: 1 / -1;
    }

    .casino-dining-hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .casino-dining-overview {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .casino-dining-overview {
        margin-top: 35px;
    }

    .casino-dining-summary,
    .casino-dining-main,
    .casino-dining-bars-grid,
    .casino-dining-hours-grid {
        grid-template-columns: 1fr;
    }

    .casino-dining-card:last-child {
        grid-column: auto;
    }

    .casino-dining-hours-panel {
        padding: 27px;
    }
}

@media (max-width: 580px) {
    .casino-dining-card,
    .casino-dining-bar-card {
        padding: 22px;
    }

    .casino-dining-hours-panel {
        padding: 22px;
    }

    .casino-dining-guide {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}
/* ============================================
   RESTAURANTS & DINING
   ============================================ */

.resort-dining-section {
    position: relative;
    overflow: hidden;
}

.resort-dining-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 15%;
    left: -390px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.resort-dining-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.resort-dining-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.dining-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* DINING MAP */

.dining-map-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
    padding: 45px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.07),
            rgba(15, 20, 23, 0.8)
        );
    border: 1px solid var(--glass-border);
}

.dining-map-copy h3 {
    margin-bottom: 19px;
    color: var(--light);
    font-size: 1.85rem;
    line-height: 1.25;
}

.dining-map-copy p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.75;
}

.dining-map-grid {
    display: grid;
    gap: 12px;
}

.dining-map-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    padding: 20px;
    border-radius: 17px;
    background: rgba(10, 13, 16, 0.62);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.dining-map-icon {
    grid-row: 1 / 4;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.dining-map-icon svg {
    width: 19px;
    height: 19px;
}

.dining-map-item > span {
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dining-map-item h4 {
    margin: 3px 0 5px;
    color: var(--light);
    font-size: 0.95rem;
}

.dining-map-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.5;
}


/* CATEGORY */

.dining-category {
    margin-top: 60px;
}

.dining-category-heading {
    max-width: 760px;
    margin-bottom: 27px;
}

.dining-category-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.55rem;
}

.dining-category-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.84rem;
    line-height: 1.65;
}


/* RESTAURANT CARDS */

.signature-dining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.restaurant-card {
    padding: 27px;
    border-radius: 21px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.restaurant-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.4);
}

.restaurant-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.77)
        );
    border-color: rgba(201, 160, 61, 0.25);
}

.restaurant-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 19px;
}

.restaurant-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.restaurant-icon svg {
    width: 20px;
    height: 20px;
}

.restaurant-category {
    color: var(--primary);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: right;
}

.restaurant-card > h3 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.2rem;
}

.restaurant-tagline {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.6;
}

.restaurant-card-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(201, 160, 61, 0.13);
}

.restaurant-detail {
    padding: 8px 0;
}

.restaurant-detail > span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.76rem;
    font-weight: 600;
}

.restaurant-detail p {
    margin: 0;
    color: var(--gray);
    font-size: 0.74rem;
    line-height: 1.55;
}


/* ROOFTOP */

.rooftop-dining-panel {
    margin-top: 55px;
    padding: 38px;
    border-radius: 27px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.085),
            rgba(10, 13, 16, 0.8)
        );
    border: 1px solid rgba(201, 160, 61, 0.2);
}

.rooftop-dining-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.rooftop-dining-heading-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.rooftop-dining-heading .dining-kicker {
    margin-bottom: 2px;
}

.rooftop-dining-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.rooftop-dining-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rooftop-dining-item {
    padding: 27px;
    border-radius: 19px;
    background: rgba(10, 13, 16, 0.7);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.rooftop-level {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.rooftop-dining-item h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.1rem;
}

.rooftop-dining-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.6;
}

.rooftop-dining-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.rooftop-dining-meta span {
    padding: 5px 9px;
    border-radius: 50px;
    color: var(--gray);
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.13);
    font-size: 0.66rem;
}

.rooftop-weather-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 17px 19px;
    border-radius: 15px;
    background: rgba(10, 13, 16, 0.55);
}

.rooftop-weather-note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--primary);
}

.rooftop-weather-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* STYLE GUIDE */

.dining-style-guide {
    margin-top: 50px;
}

.dining-style-heading {
    margin-bottom: 22px;
}

.dining-style-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.4rem;
}

.dining-style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.dining-style-item {
    padding: 22px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.68);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.dining-style-item > svg {
    width: 20px;
    height: 20px;
    margin-bottom: 14px;
    color: var(--primary);
}

.dining-style-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.84rem;
    font-weight: 600;
}

.dining-style-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* RESERVATIONS */

.dining-reservations-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 24px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.18);
}

.dining-reservations-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.dining-reservations-icon svg {
    width: 21px;
    height: 21px;
}

.dining-reservations-panel .dining-kicker {
    margin-bottom: 4px;
}

.dining-reservations-panel h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.dining-reservations-panel p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.62;
}


/* NOTE */

.dining-general-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 19px 22px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.dining-general-note > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.dining-general-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .signature-dining-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dining-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dining-map-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .dining-map-panel {
        margin-top: 35px;
        padding: 30px;
    }

    .signature-dining-grid,
    .rooftop-dining-grid,
    .dining-style-grid {
        grid-template-columns: 1fr;
    }

    .rooftop-dining-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {
    .dining-map-panel,
    .restaurant-card,
    .rooftop-dining-panel {
        padding: 22px;
    }

    .dining-reservations-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}
/* ============================================
   BARS & NIGHTLIFE
   ============================================ */

.bars-section {
    position: relative;
    overflow: hidden;
}

.bars-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 15%;
    right: -400px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.bars-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.bars-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.bars-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}


/* OVERVIEW */

.bars-overview {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
}

.bars-overview-copy h3 {
    margin-bottom: 19px;
    color: var(--light);
    font-size: 1.9rem;
    line-height: 1.25;
}

.bars-overview-copy p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.77;
}

.bars-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.bars-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 17px;
    border-radius: 16px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.bars-quick-item > svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    color: var(--primary);
}

.bars-quick-item span {
    display: block;
    margin-bottom: 3px;
    color: var(--gray);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.bars-quick-item p {
    margin: 0;
    color: var(--light);
    font-size: 0.82rem;
    font-weight: 600;
}


/* SIX CARDS */

.bars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 60px;
}

.bar-card {
    padding: 27px;
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.bar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.42);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.bar-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.78)
        );
    border-color: rgba(201, 160, 61, 0.25);
}

.bar-card-sky {
    background:
        linear-gradient(
            145deg,
            rgba(44, 62, 47, 0.16),
            rgba(201, 160, 61, 0.08),
            rgba(15, 20, 23, 0.78)
        );
}

.bar-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.bar-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
    border: 1px solid rgba(201, 160, 61, 0.12);
}

.bar-icon svg {
    width: 21px;
    height: 21px;
}

.bar-number {
    color: rgba(201, 160, 61, 0.24);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.bar-type {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.bar-card > h3 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.25rem;
}

.bar-lead {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.62;
}

.bar-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(201, 160, 61, 0.13);
}

.bar-detail {
    padding: 8px 0;
}

.bar-detail > span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.76rem;
    font-weight: 600;
}

.bar-detail p {
    margin: 0;
    color: var(--gray);
    font-size: 0.74rem;
    line-height: 1.55;
}


/* CHOICE PANEL */

.bars-choice-panel {
    margin-top: 55px;
    padding: 38px;
    border-radius: 27px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.07),
            rgba(10, 13, 16, 0.8)
        );
    border: 1px solid var(--glass-border);
}

.bars-choice-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.bars-choice-heading-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.bars-choice-heading-icon svg {
    width: 22px;
    height: 22px;
}

.bars-choice-heading .bars-kicker {
    margin-bottom: 2px;
}

.bars-choice-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.bars-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.13);
}

.bars-choice-item {
    padding: 23px;
    background: rgba(10, 13, 16, 0.94);
}

.bars-choice-number {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
}

.bars-choice-item h4 {
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.95rem;
}

.bars-choice-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
}

.bars-choice-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* HOURS */

.bars-hours-panel {
    margin-top: 25px;
    padding: 36px;
    border-radius: 25px;
    background: rgba(10, 13, 16, 0.67);
    border: 1px solid var(--glass-border);
}

.bars-hours-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.bars-hours-heading-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.bars-hours-heading-icon svg {
    width: 21px;
    height: 21px;
}

.bars-hours-heading .bars-kicker {
    margin-bottom: 2px;
}

.bars-hours-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.35rem;
}

.bars-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 17px;
    background: rgba(201, 160, 61, 0.12);
}

.bars-hours-item {
    min-height: 105px;
    padding: 21px;
    background: rgba(10, 13, 16, 0.94);
}

.bars-hours-item > span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 700;
}

.bars-hours-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 600;
}

.bars-hours-item small {
    display: block;
    color: var(--gray);
    font-size: 0.69rem;
}


/* LOCATION */

.bars-location-panel {
    margin-top: 50px;
}

.bars-location-heading {
    margin-bottom: 22px;
}

.bars-location-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.4rem;
}

.bars-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.bars-location-item {
    display: flex;
    gap: 14px;
    padding: 23px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.68);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.bars-location-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.bars-location-icon svg {
    width: 19px;
    height: 19px;
}

.bars-location-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.bars-location-item h4 {
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.9rem;
}

.bars-location-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* WEATHER */

.bars-weather-note {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 22px;
    padding: 21px 24px;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.17);
}

.bars-weather-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.bars-weather-icon svg {
    width: 20px;
    height: 20px;
}

.bars-weather-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.86rem;
    font-weight: 600;
}

.bars-weather-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}


/* FINAL NOTE */

.bars-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 19px 22px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.bars-note > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.bars-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .bars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bars-choice-grid,
    .bars-hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bars-location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {

    .bars-overview {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {

    .bars-overview {
        margin-top: 35px;
    }

    .bars-grid,
    .bars-choice-grid,
    .bars-hours-grid {
        grid-template-columns: 1fr;
    }

    .bars-choice-panel,
    .bars-hours-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {

    .bars-quick-grid {
        grid-template-columns: 1fr;
    }

    .bar-card {
        padding: 22px;
    }

    .bars-choice-panel,
    .bars-hours-panel {
        padding: 22px;
    }

    .bars-weather-note {
        align-items: flex-start;
    }
}
/* ============================================
   SKY DECK
   ============================================ */

.sky-deck-section {
    position: relative;
    overflow: hidden;
}

.sky-deck-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    top: 12%;
    left: -410px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(75px);
    pointer-events: none;
}

.sky-deck-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.sky-deck-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.sky-deck-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
}


/* MAIN FEATURE */

.sky-deck-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    margin-top: 55px;
}

.sky-deck-image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
}

.sky-deck-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sky-deck-image:hover img {
    transform: scale(1.035);
}

.sky-deck-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.92),
        rgba(10, 13, 16, 0.05) 62%
    );
}

.sky-deck-image-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 27px;
}

.sky-deck-image-overlay span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.sky-deck-image-overlay p {
    max-width: 420px;
    margin: 0;
    color: var(--light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.sky-deck-feature-content h3 {
    margin-bottom: 21px;
    color: var(--light);
    font-size: 2rem;
    line-height: 1.25;
}

.sky-deck-feature-content > p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.sky-deck-feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.sky-deck-feature-point {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--light);
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.15);
    font-size: 0.79rem;
}

.sky-deck-feature-point svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}


/* VIEW */

.sky-deck-view-panel {
    margin-top: 55px;
    padding: 37px;
    border-radius: 27px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.07),
            rgba(10, 13, 16, 0.78)
        );
    border: 1px solid var(--glass-border);
}

.sky-deck-view-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.sky-deck-view-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.sky-deck-view-heading .sky-deck-kicker {
    margin-bottom: 2px;
}

.sky-deck-view-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.45rem;
}

.sky-deck-view-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sky-deck-view-item {
    padding: 22px;
    border-radius: 18px;
    background: rgba(10, 13, 16, 0.7);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.sky-deck-view-item > svg {
    width: 21px;
    height: 21px;
    margin-bottom: 14px;
    color: var(--primary);
}

.sky-deck-view-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 600;
}

.sky-deck-view-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* VENUES */

.sky-deck-venues {
    margin-top: 55px;
}

.sky-deck-venues-heading {
    max-width: 740px;
    margin-bottom: 26px;
}

.sky-deck-venues-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.5rem;
}

.sky-deck-venues-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.84rem;
    line-height: 1.65;
}

.sky-deck-venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sky-deck-venue-card {
    padding: 27px;
    border-radius: 21px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.sky-deck-venue-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 160, 61, 0.4);
}

.sky-deck-venue-featured {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.1),
            rgba(15, 20, 23, 0.77)
        );
    border-color: rgba(201, 160, 61, 0.25);
}

.sky-deck-venue-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 19px;
}

.sky-deck-venue-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.sky-deck-venue-icon svg {
    width: 21px;
    height: 21px;
}

.sky-deck-venue-type {
    color: var(--primary);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: right;
}

.sky-deck-venue-card > h3 {
    margin-bottom: 9px;
    color: var(--light);
    font-size: 1.2rem;
}

.sky-deck-venue-card > p {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.62;
}

.sky-deck-venue-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(201, 160, 61, 0.13);
}

.sky-deck-venue-detail {
    padding: 8px 0;
}

.sky-deck-venue-detail span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.76rem;
    font-weight: 600;
}

.sky-deck-venue-detail p {
    margin: 0;
    color: var(--gray);
    font-size: 0.74rem;
    line-height: 1.55;
}


/* REASONS */

.sky-deck-reasons-panel {
    margin-top: 50px;
}

.sky-deck-reasons-heading {
    margin-bottom: 23px;
}

.sky-deck-reasons-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.4rem;
}

.sky-deck-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.13);
}

.sky-deck-reason {
    padding: 23px;
    background: rgba(10, 13, 16, 0.94);
}

.sky-deck-reason-number {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
}

.sky-deck-reason h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.9rem;
}

.sky-deck-reason p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* HOURS */

.sky-deck-hours-panel {
    margin-top: 25px;
    padding: 34px;
    border-radius: 24px;
    background: rgba(10, 13, 16, 0.67);
    border: 1px solid var(--glass-border);
}

.sky-deck-hours-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.sky-deck-hours-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.sky-deck-hours-main .sky-deck-kicker {
    margin-bottom: 2px;
}

.sky-deck-hours-main h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.35rem;
}

.sky-deck-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 17px;
    background: rgba(201, 160, 61, 0.12);
}

.sky-deck-hours-item {
    padding: 22px;
    background: rgba(10, 13, 16, 0.94);
}

.sky-deck-hours-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--gray);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.sky-deck-hours-item strong {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
}


/* WEATHER */

.sky-deck-weather-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 22px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.075);
    border: 1px solid rgba(201, 160, 61, 0.18);
}

.sky-deck-weather-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.sky-deck-weather-icon svg {
    width: 21px;
    height: 21px;
}

.sky-deck-weather-panel .sky-deck-kicker {
    margin-bottom: 4px;
}

.sky-deck-weather-panel h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.sky-deck-weather-panel p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.62;
}


/* FINAL NOTE */

.sky-deck-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 19px 22px;
    border-radius: 16px;
    background: rgba(10, 13, 16, 0.58);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.sky-deck-note > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.sky-deck-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.77rem;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .sky-deck-view-grid,
    .sky-deck-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sky-deck-feature {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sky-deck-image {
        min-height: 480px;
    }

    .sky-deck-venues-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sky-deck-feature {
        margin-top: 35px;
    }

    .sky-deck-image {
        min-height: 390px;
    }

    .sky-deck-feature-content h3 {
        font-size: 1.65rem;
    }

    .sky-deck-view-grid,
    .sky-deck-reasons-grid,
    .sky-deck-hours-grid {
        grid-template-columns: 1fr;
    }

    .sky-deck-view-panel {
        padding: 28px;
    }
}

@media (max-width: 580px) {
    .sky-deck-image {
        min-height: 320px;
    }

    .sky-deck-feature-points {
        grid-template-columns: 1fr;
    }

    .sky-deck-view-panel,
    .sky-deck-hours-panel {
        padding: 22px;
    }

    .sky-deck-venue-card {
        padding: 22px;
    }

    .sky-deck-weather-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}
/* ============================================
   LOCATION & PARKING
   ============================================ */

.location-section {
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    top: 12%;
    right: -400px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.location-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.location-intro {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.location-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}


/* CURRENT ADDRESS */

.location-main-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    margin-top: 55px;
}

.location-address-block,
.location-warning-block {
    padding: 38px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.location-address-block {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.11),
            rgba(15, 20, 23, 0.8)
        );
}

.location-warning-block {
    background: rgba(15, 20, 23, 0.72);
}

.location-address-icon,
.location-warning-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.location-address-icon svg,
.location-warning-icon svg {
    width: 23px;
    height: 23px;
}

.location-address-block h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 2rem;
}

.location-address-large {
    margin-bottom: 20px !important;
    color: var(--primary) !important;
    font-size: 1rem;
    line-height: 1.55 !important;
}

.location-address-block p,
.location-warning-block p {
    margin-bottom: 13px;
    color: var(--gray);
    line-height: 1.7;
}

.location-warning-block h3 {
    margin-bottom: 14px;
    color: var(--light);
    font-size: 1.45rem;
}


/* GETTING THERE */

.getting-there-panel {
    margin-top: 55px;
}

.getting-there-heading {
    max-width: 760px;
    margin-bottom: 25px;
}

.getting-there-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.5rem;
}

.getting-there-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.84rem;
    line-height: 1.65;
}

.getting-there-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.transport-card {
    padding: 24px;
    border-radius: 19px;
    background: rgba(15, 20, 23, 0.7);
    border: 1px solid rgba(201, 160, 61, 0.14);
    transition: var(--transition);
}

.transport-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 160, 61, 0.38);
}

.transport-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.transport-icon svg {
    width: 20px;
    height: 20px;
}

.transport-type {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.transport-card h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.95rem;
}

.transport-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.58;
}


/* BRIDGE */

.location-bridge-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 25px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.18);
}

.location-bridge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.location-bridge-panel .location-kicker {
    margin-bottom: 4px;
}

.location-bridge-panel h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.location-bridge-panel p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.62;
}


/* PARKING */

.parking-section-block {
    margin-top: 65px;
}

.parking-heading {
    max-width: 760px;
    margin-bottom: 27px;
}

.parking-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.55rem;
}

.parking-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.84rem;
    line-height: 1.65;
}


/* ENTRANCES */

.parking-entrances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.parking-entrance-card {
    position: relative;
    padding: 25px;
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.08),
            rgba(15, 20, 23, 0.72)
        );
    border: 1px solid rgba(201, 160, 61, 0.17);
}

.parking-entrance-card > svg {
    width: 21px;
    height: 21px;
    margin-bottom: 16px;
    color: var(--primary);
}

.parking-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(201, 160, 61, 0.25);
    font-size: 1.35rem;
    font-weight: 700;
}

.parking-entrance-card h4 {
    margin-bottom: 6px;
    color: var(--light);
    font-size: 0.95rem;
}

.parking-entrance-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.75rem;
}


/* FACTS */

.parking-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    margin-top: 18px;
}

.parking-fact-card {
    padding: 22px;
    border-radius: 17px;
    background: rgba(15, 20, 23, 0.68);
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.parking-fact-card > svg {
    width: 20px;
    height: 20px;
    margin-bottom: 14px;
    color: var(--primary);
}

.parking-fact-card > span {
    display: block;
    margin-bottom: 4px;
    color: var(--gray);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.parking-fact-card h4 {
    margin-bottom: 7px;
    color: var(--light);
    font-size: 0.95rem;
}

.parking-fact-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.73rem;
    line-height: 1.52;
}


/* CASUAL RATES */

.parking-rates-panel {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 35px;
    margin-top: 25px;
    padding: 34px;
    border-radius: 24px;
    background: rgba(10, 13, 16, 0.68);
    border: 1px solid var(--glass-border);
}

.parking-rates-heading h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.35rem;
}

.parking-rates-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
}

.parking-rates-table {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 160, 61, 0.13);
}

.parking-rate-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 17px;
    background: rgba(15, 20, 23, 0.72);
    border-bottom: 1px solid rgba(201, 160, 61, 0.1);
}

.parking-rate-row:last-child {
    border-bottom: none;
}

.parking-rate-row span {
    color: var(--gray);
    font-size: 0.78rem;
}

.parking-rate-row strong {
    color: var(--light);
    font-size: 0.8rem;
    font-weight: 600;
}


/* SPECIAL RATES */

.parking-special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.parking-special-card {
    padding: 23px;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.68);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.parking-special-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.09);
}

.parking-special-icon svg {
    width: 19px;
    height: 19px;
}

.parking-special-label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.parking-special-card h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 0.93rem;
}

.parking-special-card p {
    margin-bottom: 11px;
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.55;
}

.parking-special-card small {
    color: var(--gray);
    font-size: 0.67rem;
    line-height: 1.45;
}


/* MEMBERS */

.member-parking-panel {
    margin-top: 25px;
    padding: 35px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(201, 160, 61, 0.075),
            rgba(10, 13, 16, 0.78)
        );
    border: 1px solid rgba(201, 160, 61, 0.19);
}

.member-parking-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.member-parking-heading-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.member-parking-heading .location-kicker {
    margin-bottom: 2px;
}

.member-parking-heading h3 {
    margin: 0;
    color: var(--light);
    font-size: 1.35rem;
}

.member-parking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.member-parking-card {
    padding: 26px;
    border-radius: 19px;
    background: rgba(10, 13, 16, 0.72);
    border: 1px solid rgba(201, 160, 61, 0.14);
}

.member-parking-card-gold {
    border-color: rgba(201, 160, 61, 0.28);
}

.member-parking-tier {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.member-parking-card h4 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1rem;
}

.member-parking-card > p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}

.member-parking-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 160, 61, 0.13);
    color: var(--gray);
    font-size: 0.72rem;
    line-height: 1.5;
}


/* CAPACITY */

.parking-capacity-note {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 21px 24px;
    border-radius: 18px;
    background: rgba(201, 160, 61, 0.07);
    border: 1px solid rgba(201, 160, 61, 0.17);
}

.parking-capacity-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.parking-capacity-icon svg {
    width: 20px;
    height: 20px;
}

.parking-capacity-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--light);
    font-size: 0.86rem;
    font-weight: 600;
}

.parking-capacity-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.6;
}


/* SUMMARY */

.location-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 25px;
    padding: 27px;
    border-radius: 20px;
    background: rgba(201, 160, 61, 0.075);
    border: 1px solid rgba(201, 160, 61, 0.18);
}

.location-summary-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(201, 160, 61, 0.1);
}

.location-summary .location-kicker {
    margin-bottom: 4px;
}

.location-summary h3 {
    margin-bottom: 8px;
    color: var(--light);
    font-size: 1.15rem;
}

.location-summary p {
    margin: 0;
    color: var(--gray);
    font-size: 0.81rem;
    line-height: 1.62;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .parking-facts-grid,
    .parking-special-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .location-main-panel,
    .parking-rates-panel {
        grid-template-columns: 1fr;
    }

    .getting-there-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .location-main-panel {
        margin-top: 35px;
    }

    .getting-there-grid,
    .parking-entrances-grid,
    .parking-facts-grid,
    .parking-special-grid,
    .member-parking-grid {
        grid-template-columns: 1fr;
    }

    .parking-rates-panel,
    .member-parking-panel {
        padding: 27px;
    }
}

@media (max-width: 580px) {

    .location-address-block,
    .location-warning-block {
        padding: 23px;
    }

    .location-bridge-panel,
    .location-summary {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .parking-rates-panel,
    .member-parking-panel {
        padding: 22px;
    }

    .parking-capacity-note {
        align-items: flex-start;
    }
}
/* ============================================
   FAQ
   ============================================ */

.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    top: 10%;
    left: -370px;
    border-radius: 50%;
    background: rgba(201, 160, 61, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.faq-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* FAQ GRID */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: start;
    margin-top: 55px;
}

.faq-item {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(15, 20, 23, 0.72);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 160, 61, 0.32);
}

.faq-item.active {
    background:
        linear-gradient(
            145deg,
            rgba(201, 160, 61, 0.07),
            rgba(15, 20, 23, 0.76)
        );
    border-color: rgba(201, 160, 61, 0.27);
}


/* QUESTION */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 22px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--light);
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 0.91rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 21px;
    color: var(--gray);
    font-size: 0.79rem;
    line-height: 1.65;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 160, 61, 0.3);
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .faq-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }
}

@media (max-width: 580px) {

    .faq-question {
        padding: 19px;
    }

    .faq-question span {
        font-size: 0.86rem;
    }

    .faq-answer p {
        padding: 0 19px 19px;
    }
}

/* ============================================
   LEGAL / POLICY PAGES
   ============================================ */
.legal-page {
    min-height: 100vh;
    padding-top: 122px;
    position: relative;
    z-index: 2;
}

.legal-hero {
    padding: 78px 0 34px;
}

.legal-hero-inner {
    max-width: 980px;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(201, 160, 61, 0.28);
    border-radius: 999px;
    background: rgba(201, 160, 61, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 5vw, 4.3rem);
    line-height: 1.08;
}

.legal-lead {
    max-width: 900px;
    margin: 0;
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.82;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    color: var(--gray);
    font-size: 0.82rem;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-meta i { color: var(--primary); }

.legal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 28px 0 90px;
}

.legal-toc {
    position: sticky;
    top: 105px;
    padding: 24px;
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.78);
    backdrop-filter: blur(12px);
}

.legal-toc h2 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.legal-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-toc li + li { margin-top: 7px; }

.legal-toc a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.78rem;
    line-height: 1.45;
    transition: var(--transition);
}

.legal-toc a:hover {
    color: var(--primary);
    background: rgba(201, 160, 61, 0.08);
}

.legal-content {
    min-width: 0;
}

.legal-card {
    padding: 30px;
    margin-bottom: 18px;
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    background: rgba(15, 20, 23, 0.68);
}

.legal-card h2 {
    margin: 0 0 14px;
    color: var(--light);
    font-size: 1.45rem;
}

.legal-card h3 {
    margin: 22px 0 10px;
    color: var(--light);
    font-size: 1.02rem;
}

.legal-card p,
.legal-card li {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.78;
}

.legal-card p:last-child { margin-bottom: 0; }

.legal-card ul,
.legal-card ol {
    margin: 12px 0 0;
    padding-left: 22px;
}

.legal-card li + li { margin-top: 8px; }

.legal-card a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 160, 61, 0.35);
}

.legal-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(201, 160, 61, 0.22);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(201, 160, 61, 0.1), rgba(15, 20, 23, 0.76));
}

.legal-callout i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(201, 160, 61, 0.1);
    color: var(--primary);
}

.legal-callout h2,
.legal-callout h3 {
    margin: 0 0 7px;
    font-size: 1.05rem;
}

.legal-callout p {
    margin: 0;
    color: var(--gray);
    font-size: 0.84rem;
    line-height: 1.68;
}

.legal-definition-grid,
.rg-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.legal-definition,
.rg-tool {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201, 160, 61, 0.11);
}

.legal-definition strong,
.rg-tool strong {
    display: block;
    margin-bottom: 5px;
    color: var(--light);
    font-size: 0.82rem;
}

.legal-definition p,
.rg-tool p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.6;
}

.legal-contact-box {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(201, 160, 61, 0.18);
    background: rgba(201, 160, 61, 0.06);
}

.legal-contact-box p { margin-bottom: 7px; }

.legal-page .navbar {
    background: rgba(10, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 160, 61, 0.2);
}

.legal-page .footer-casino { padding-top: 10px; }

@media (max-width: 992px) {
    .legal-page { padding-top: 88px; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
}

@media (max-width: 768px) {
    .legal-hero { padding-top: 52px; }
    .legal-layout { padding-bottom: 60px; }
    .legal-card { padding: 22px; }
    .legal-definition-grid,
    .rg-tools-grid { grid-template-columns: 1fr; }
    .legal-callout { grid-template-columns: 1fr; }
}
