/* ======================
   VARIABLES 
====================== */
:root {
    --primary-color: #1e88e5;
    --secondary-color: #0d47a1;
    --accent-color: #ffc107;
    --dark-color: #0f1b26;
    --light-color: #d0d6e2;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--light-color);
    background-color: var(--dark-color);
    background-image: url('../images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


/* ====================== */
/* === BASE CARD STYLES === */
/* ====================== */
.card-transparent {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--card-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.card-transparent:hover {
    background: rgba(30, 30, 40, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--neon-shadow);
    transform: translateY(-5px);
}

.card-body {
    padding: 40px;
}

/* ====================== */
/* === TYPOGRAPHY === */
/* ====================== */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* ====================== */
/* === LAYOUT & SPACING === */
/* ====================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* ====================== */
/* === BUTTONS === */
/* ====================== */
.btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
}

.btn-primary:hover {
    background-color: #3a5aed;
    border-color: #3a5aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(3px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ====================== */
/* === BADGES === */
/* ====================== */
.badge-beach {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.badge-beach i {
    margin-right: 8px;
}

/* ====================== */
/* === SOCIAL ICONS === */
/* ====================== */
.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.contact-social {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:nth-child(1):hover {
    /* Facebook */
    background: #3b5998;
    color: white;
    border-color: #3b5998;
}

.social-icon:nth-child(2):hover {
    /* Instagram */
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
}

.social-icon:nth-child(3):hover {
    /* Twitter */
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-icon:nth-child(4):hover {
    /* Pinterest */
    background: #e60023;
    color: white;
    border-color: #e60023;
}

@keyframes socialFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.social-icon {
    animation: socialFloat 4s ease-in-out infinite;
}

.social-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.5s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.7s;
}

@media (max-width: 768px) {
    .footer-social {
        gap: 15px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-social {
        gap: 12px;
        margin-top: 20px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


/* ====================== */
/* === Pulse Animation === */
/* ====================== */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
    }
}

/* ====================== */
/* === NAVIGATION === */
/* ====================== */
.navbar {
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: rgba(15, 15, 26, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
    margin-right: auto;
    /* Pushes brand to the left */
}

.nav-link {
    font-family: 'Ubuntu Mono', monospace;
    letter-spacing: 1px;
    margin: 0 6px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(110, 69, 226, 0.1);
    text-shadow: 0 0 8px rgba(110, 69, 226, 0.5);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    margin-left: auto;
    /* Pushes toggle to the right */
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* Book Now button special style */
.nav-link.btn-primary {
    background: var(--primary-color) !important;
    margin-left: 10px;
}

.nav-link.btn-primary:hover {
    background: var(--primary-hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(110, 69, 226, 0.3);
}

/* Tablet Responsive */
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar-brand {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }

    .nav-link {
        margin: 0 4px;
        padding: 6px 8px;
        font-size: 0.9rem;
    }

    .nav-link.btn-primary {
        margin-left: 6px;
    }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .navbar {
        padding: 10px 12px;
    }

    .navbar-brand {
        font-size: 1.4rem;
        margin-right: 0;
    }

    .nav-link {
        margin: 2px 0;
        padding: 8px 12px;
    }

    .navbar-collapse {
        padding-top: 10px;
    }

    .nav-link.btn-primary {
        margin: 10px 0 0 0;
        display: block;
        text-align: center;
    }
}

/* ======================
   COMMON SECTION STYLES 
====================== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* ====================== */
/* === HERO SECTION === */
/* ====================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(25, 65, 100, 0.6) 0%,
            rgba(40, 120, 180, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
}

.hero-content {
    z-index: 2;
    margin-bottom: 20vh;
}

.badge-beach {
    background: var(--accent-color);
    color: #1a2a3a;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(90deg, #6ee3f7, #a476e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-beach {
    background-color: var(--accent-color);
    color: #1a2a3a;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 206, 84, 0.3);
}

.btn-beach:hover {
    background-color: #ffb82e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 206, 84, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse-animation {
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.mouse-animation::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        top: 6px;
    }

    50% {
        opacity: 0.5;
        top: 12px;
    }

    100% {
        opacity: 1;
        top: 6px;
    }
}


/* Tambahkan ini di bagian responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Tambahkan ini untuk tablet */
    .hero-scroll-indicator {
        position: relative;
        bottom: auto;
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
        /* Dikurangi sedikit */
    }

    .btn-beach {
        padding: 12px 24px;
    }

    .badge-beach {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Hapus atau komentari ini 
    .hero-scroll-indicator {
        bottom: 30px;
    } */
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-scroll-indicator {
        font-size: 0.8rem;
        margin-top: 30px;
        /* Sesuaikan untuk mobile */
        margin-bottom: 10px;
    }

    .mouse-animation {
        width: 20px;
        height: 30px;
    }
}

/* ====================== */
/* === PARTNERS SECTION === */
/* ====================== */
.partners-section {
    position: relative;
    padding: 80px 0 120px;
    background-color: var(--dark-color);
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.partner-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: calc(250px * 16);
    /* Double the items for seamless loop */
}

.partner-item {
    flex: 0 0 220px;
    transition: all 0.3s ease;
}

.partner-logo-container {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-logo {
    max-width: 180px;
    max-height: 60px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 7, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
    padding: 15px;
    text-align: center;
}

.partner-overlay span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.partner-item:hover .partner-logo {
    filter: none;
    opacity: 0;
}

.partner-item:hover .partner-overlay {
    opacity: 1;
    transform: translateY(0);
}

.partner-item:hover .partner-logo-container {
    background: transparent;
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 8));
        /* Move by half the width */
    }
}

/* Pause animation on hover */
.partners-carousel:hover .partner-track {
    animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .partner-track {
        gap: 30px;
    }

    .partner-item {
        flex: 0 0 180px;
    }

    .partner-logo {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0 100px;
    }

    .partner-track {
        gap: 20px;
        animation-duration: 20s;
    }

    .partner-item {
        flex: 0 0 150px;
    }

    .partner-logo {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .partner-track {
        gap: 15px;
    }

    .partner-item {
        flex: 0 0 130px;
    }

    .partner-logo {
        max-width: 100px;
    }

    .partner-overlay span {
        font-size: 0.8rem;
    }
}

/* ====================== */
/* === CAROUSEL SECTION === */
/* ====================== */
.carousel-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1b26 0%, #1a2a3a 100%);
    overflow: hidden;
}

.carousel-3d {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
    padding: 40px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.carousel-slide {
    position: absolute;
    width: 350px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 3;
}

.carousel-slide.prev {
    transform: translate(-120%, -50%) scale(0.8);
    opacity: 0.6;
    z-index: 2;
}

.carousel-slide.next {
    transform: translate(20%, -50%) scale(0.8);
    opacity: 0.6;
    z-index: 2;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
}

.slide-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    transform: translateZ(30px);
}

.slide-number {
    position: absolute;
    top: -50px;
    right: 20px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Playfair Display', serif;
}

.slide-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-description {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-container {
        height: 450px;
    }

    .carousel-slide {
        width: 300px;
        height: 400px;
    }

    .slide-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 70px 0;
    }

    .carousel-container {
        height: 400px;
    }

    .carousel-slide {
        width: 280px;
        height: 380px;
    }

    .slide-details {
        padding: 20px;
    }

    .slide-number {
        font-size: 4rem;
        top: -40px;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        height: 350px;
    }

    .carousel-slide {
        width: 250px;
        height: 330px;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-description {
        font-size: 0.85rem;
    }
}

/* ====================== */
/* === ABOUT SECTION === */
/* ====================== */
.about {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('../images/about/about-bg.avif');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 55, 90, 0.7) 0%, rgba(40, 85, 120, 0.5) 100%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    margin-right: -50px;
}

.about-image {
    position: relative;
    z-index: 2;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.about-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about .section-title {
    color: var(--light-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.about .lead {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .about {
        min-height: auto;
        padding: 80px 0;
    }

    .about-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 30px;
    }

    .about .section-title {
        font-size: 2.2rem;
    }

    .about .lead {
        font-size: 1.1rem;
    }
}

/* ====================== */
/* === ROOMS SECTION === */
/* ====================== */
.rooms {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--light-color);
}

.rooms-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.rooms-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
}

.rooms-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/room/room-bg.avif');
    background-size: cover;
    background-position: center;
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
}

.rooms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 27, 38, 0.9) 0%,
            rgba(15, 27, 38, 0.6) 70%,
            rgba(15, 27, 38, 0.3) 100%);
    z-index: 0;
}

.rooms .container {
    position: relative;
    z-index: 1;
}

.room-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.room-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-body {
    padding: 25px;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.room-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.amenities-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.amenities-list i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Add to your amenities CSS */
.feature-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 206, 84, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-box:hover::before {
    transform: scale(1);
}

.feature-icon {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .rooms {
        padding: 60px 0;
    }

    .rooms-dark-bg {
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0 40%);
    }

    .rooms-image-bg {
        clip-path: polygon(0 40%, 100% 60%, 100% 100%, 0 100%);
    }

    .room-card {
        margin-bottom: 20px;
    }
}

/* ====================== */
/* === AMENITIES SECTION === */
/* ====================== */
.amenities {
    position: relative;
    background-image: url('../images/amenities/amenities-bg.avif');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.amenities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 27, 38, 0.85) 0%, rgba(15, 27, 38, 0.75) 100%);
    z-index: 1;
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.amenities .section-header {
    margin-bottom: 50px;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--accent-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-box {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-box:hover .feature-icon i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .amenities {
        padding: 60px 0;
    }

    .amenities .section-header {
        margin-bottom: 30px;
    }
}

/* ====================== */
/* === TESTIMONIALS SECTION === */
/* ====================== */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #0a121b 100%);
}

.testimonial-card {
    padding: 40px;
    margin: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-title {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.author-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.author-rating .ti-star {
    margin-right: 2px;
}

.author-rating .filled {
    opacity: 1;
}

.author-rating .ti-star:not(.filled) {
    opacity: 0.3;
}

.testimonial-slider {
    position: relative;
    padding: 20px 0;
}

.slick-slide {
    padding: 0 8px;
    position: relative;
}

.slick-track {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.slick-prev,
.slick-next {
    display: none !important;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* ====================== */
/* === PERFECT GALLERY LAYOUT === */
/* ====================== */
.gallery {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 55, 90, 0.85) 0%, rgba(40, 85, 120, 0.6) 100%);
    z-index: 1;
}

/* Grid Layout */
.row.grid {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.row.grid>[class*="col-"] {
    padding: 12px;
}

.gallery-item-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image Container */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 0;
    padding-bottom: 75%;
    /* 4:3 aspect ratio */
    flex-grow: 1;
}

.gallery-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

/* Frame & Corners */
.gallery-frame {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    z-index: 3;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-corner:nth-child(1) {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.gallery-corner:nth-child(2) {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

/* Hover Effects */
.gallery-item {
    position: relative;
    display: block;
    height: 100%;
    transition: all 0.4s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.zoom-icon {
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.zoom-icon i {
    color: white;
    font-size: 2rem;
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(110, 69, 226, 0.4);
}

.gallery-caption {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.1s;
    text-align: center;
    padding: 0 20px;
}

.gallery-caption h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Hover States */
.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-frame {
    border-color: rgba(255, 255, 255, 0.7);
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
}

.gallery-item:hover .gallery-corner {
    opacity: 1;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-item:hover .zoom-icon,
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Filter Buttons */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-filter {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-image-container {
        padding-bottom: 80%;
    }
}

@media (max-width: 768px) {
    .row.grid {
        margin: -8px;
    }

    .row.grid>[class*="col-"] {
        padding: 8px;
    }

    .gallery-image-container {
        padding-bottom: 85%;
    }

    .gallery-caption h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 60px 0;
    }

    .row.grid {
        margin: -6px;
    }

    .row.grid>[class*="col-"] {
        padding: 6px;
    }

    .gallery-image-container {
        padding-bottom: 100%;
    }

    .zoom-icon i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .btn-filter {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* ====================== */
/* === CONTACT SECTION === */
/* ====================== */
.contact {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 100, 120, 0.5) 0%, rgba(40, 150, 170, 0.3) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-info,
.contact-form {
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

.contact-map-container {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 27, 38, 0.2) 0%, rgba(15, 27, 38, 0.1) 100%);
    pointer-events: none;
}

.contact-map {
    height: 100%;
    width: 100%;
    background-color: #e8e8e8;
    /* Fallback color */
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 2.5rem;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-address-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 27, 38, 0.9);
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-address-box h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.map-address-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-map-container {
        height: 400px;
        margin-top: 30px;
    }

    .map-address-box {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

/* ======================
   FORM STYLES 
====================== */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control option {
    background: #333;
    color: white;
}

.form-control.select-arrow {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

select.form-control {
    color: white !important;
}

select.form-control option {
    color: white;
    background-color: #444;
}

select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 white;
}

/* ====================== */
/* === BOOKING SECTION === */
/* ====================== */
.booking {
    position: relative;
    padding: 100px 0;
    color: var(--light-color);
}

.booking-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.booking-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--dark-color);
}

.booking-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/book/book-bg.avif');
    background-size: cover;
    background-position: center;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(15, 27, 38, 0.9) 0%,
            rgba(15, 27, 38, 0.6) 50%,
            rgba(15, 27, 38, 0.3) 100%);
    z-index: 0;
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking-form {
    transition: all 0.3s ease;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.booking-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 15px;
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.booking-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
}

@media (max-width: 991px) {

    .booking-dark-bg,
    .booking-image-bg {
        width: 100%;
        height: 50%;
    }

    .booking-dark-bg {
        top: 0;
        left: 0;
    }

    .booking-image-bg {
        top: 50%;
        right: 0;
    }
}

@media (max-width: 768px) {
    .booking {
        padding: 60px 0;
    }
}

/* ====================== */
/* === FOOTER SECTION === */
/* ====================== */
.footer {
    padding: 80px 0 30px;
    background: var(--darker-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 107, 255, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    max-width: 300px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lighter-color);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--lighter-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-newsletter {
    margin-top: 30px;
}

.subscribe-form {
    position: relative;
}

.subscribe-form .input-group {
    display: flex;
    align-items: stretch;
}

.subscribe-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 12px 15px;
    border-radius: 6px;
    flex-grow: 1;
    height: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.subscribe-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: none;
}

.subscribe-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-color);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.subscribe-form .input-group {
    display: flex;
    height: 46px;
}

.subscribe-form .form-control {
    flex: 1;
    height: 100%;
    padding: 0 15px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    line-height: 44px;
}

.subscribe-form .btn {
    height: 100%;
    padding: 0 20px;
    margin: 0;
    border: 1px solid var(--primary-color);
    border-left: none;
    border-radius: 0 6px 6px 0;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form .btn-text {
    line-height: 1;
}

.subscribe-form .btn .spinner-border {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-width: 2px;
}

.subscribe-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 60px 0 30px;
    }
}

/* ====================== */
/* === PRELOADER === */
/* ====================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loader-text {
    margin-top: 15px;
    color: var(--light-color);
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.loader-text::after {
    content: '...';
    display: inline-block;
    width: 50px;
    animation: blinkDots 1.5s infinite steps(1);
    color: var(--primary-color);
    font-size: 1.5rem;
    vertical-align: bottom;
    margin-left: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes blinkDots {

    0%,
    33% {
        content: '.';
    }

    34%,
    66% {
        content: '..';
    }

    67%,
    100% {
        content: '...';
    }
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}


 .games-section { background: var(--rr-bg, #0e0e10); }
  .games-section .section-title {
    letter-spacing: .03em;
    color: #fff;
    margin: 0;
  }

  .games-grid .game-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #141416;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    outline: none;
  }

 
  .games-grid .game-card img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .35s ease;
    user-select: none;
    -webkit-user-drag: none;
  }

  .games-grid .game-card:hover img { transform: scale(1.04); }

  .games-grid .game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
  }

  .games-grid .game-card:hover .game-overlay,
  .games-grid .game-card:focus .game-overlay,
  .games-grid .game-card:focus-within .game-overlay {
    opacity: 1;
  }

  
  .btn-play {
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f6c022 0%, #ffd76a 100%);
    color: #1a1a1d;
    border: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,.25), 0 8px 22px rgba(246, 192, 34, .35);
  }
  .btn-play:hover, .btn-play:focus {
    filter: brightness(1.05);
    color: #111;
  }

  
  .py-80 { padding-top: 80px; padding-bottom: 80px; }

  
  .games-section, .games-section .section-title { color: #fff; }
  
  
  /* === About River Rock (deep navy gradient) === */
.about-rr{
  position: relative;
  background: linear-gradient(180deg, #0a1320 0%, #0b1b2e 55%, #0e243a 100%);
  color:#e9edf1;
}
.about-rr__title{ color:#fff; letter-spacing:.03em; margin:0; }
.about-rr__subtitle{ color:#b7c0c8; margin:.5rem 0 0; }
.text-gradient{
  background: linear-gradient(90deg, #f6c022, #ffd76a);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}

/* Content & headings */
.about-rr__content{ position:relative; font-size:1.05rem; line-height:1.75; }
.about-rr__content::after{ content:""; display:block; clear:both; } /* clearfix для float */
.about-rr__h3{ margin-top:1.25rem; color:#fff; }

/* Figure with wrapped image */
.about-rr__figure{ margin:0; }
.about-rr__img{
  width: clamp(240px, 38vw, 420px);
  float:left;
  margin:.25rem 1.25rem 1rem 0;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
  shape-outside: inset(0 round 18px);
}

/* Benefits list */
.about-rr__list{ margin:.75rem 0 1.5rem; padding-left:1.1rem; }
.about-rr__list li{ margin-bottom:.45rem; }

/* CTAs */
.about-rr__cta{ display:flex; gap:.75rem; align-items:center; margin-top:1.25rem; }
.about-rr__btn{ padding:.7rem 1.1rem; border-radius:999px; }

/* Responsive */
@media (max-width: 991.98px){
  .about-rr__img{ width: clamp(220px, 45vw, 360px); }
}
@media (max-width: 767.98px){
  .about-rr__img{
    float:none; display:block; width:100%; max-width:520px;
    margin:0 auto 1rem auto; shape-outside:none;
  }
  .about-rr__cta{ flex-wrap:wrap; }
}

/* Utilities */
.py-80{ padding-top:80px; padding-bottom:80px; }
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); border:0;
}

/* === Gaming Opportunities Section === */
.gaming-rr{
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 100%);
  color:#e9edf1;
}
.gaming-rr .section-title{ color:#fff; letter-spacing:.02em; }
.gaming-rr .section-subtitle{ color:#b7c0c8; }

/* Feature Cards */
.game-feature{
  border-radius:14px;
  background:#141a22;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.game-feature:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
}
.game-icon{
  font-size:2.5rem;
  color:#f6c022;
}

/* Adaptive padding */
.py-80{ padding-top:80px; padding-bottom:80px; }

/* === Slots (sticky image + extended card grid) === */
.slots-rr{
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
}
.slots-rr .section-title{ color:#fff; }
.slots-rr .section-subtitle{ color:#b7c0c8; }

.slots-rr__media{ position: sticky; top: 100px; }
.slots-rr__figure{ margin:0 0 1rem 0; }
.slots-rr__img{
  width:100%; max-width:520px; border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
.slots-rr__facts{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.slots-rr__facts-title{ color:#fff; font-size:.95rem; margin:0 0 6px 0; }
.slots-rr__facts ul{ margin:0; padding-left:1.1rem; color:#c5ced6; }
.slots-rr__facts li{ margin-bottom:.25rem; }

.slot-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px;
  height:100%;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease;
}
.slot-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
}
.slot-card__icon{ font-size:1.6rem; margin-bottom:.35rem; color:#f6c022; }
.slot-card__title{ margin:0 0 .25rem 0; color:#fff; font-size:1.05rem; }
.slot-card__text{ margin:0; color:#c5ced6; }

.slots-rr__h3{ margin:1.5rem 0 .75rem; color:#fff; }
.slots-rr__list{ margin-bottom:1.25rem; }
.slots-rr__item{
  padding:12px 14px; border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:.6rem;
}
.slots-rr__meta{ display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:.2rem; }
.slots-rr__name{ font-weight:700; color:#fff; }
.slots-rr__provider{ color:#f6c022; font-size:.95rem; }
.slots-rr__desc{ margin:0; color:#c5ced6; }

.slots-rr__seo{ margin-top:.75rem; color:#cfd7df; }

/* Responsive */
@media (max-width: 991.98px){ .slots-rr__media{ position:static; } }

/* === Live Casino (sticky image on right) === */
.live-rr{
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
}
.live-rr .section-title{ color:#fff; }
.live-rr .section-subtitle{ color:#b7c0c8; }

/* Sticky media */
.live-rr__media{ position: sticky; top: 100px; }
.live-rr__figure{ margin:0 0 1rem 0; }
.live-rr__img{
  width:100%; max-width:520px; border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
.live-rr__facts{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.live-rr__facts-title{ color:#fff; font-size:.95rem; margin:0 0 6px 0; }
.live-rr__facts ul{ margin:0; padding-left:1.1rem; color:#c5ced6; }
.live-rr__facts li{ margin-bottom:.25rem; }

/* Feature cards */
.live-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px;
  height:100%;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.live-card:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.12);
}
.live-card__icon{ font-size:1.6rem; margin-bottom:.35rem; color:#f6c022; }
.live-card__title{ margin:0 0 .25rem 0; color:#fff; font-size:1.05rem; }
.live-card__text{ margin:0; color:#c5ced6; }

/* Lists & SEO text */
.live-rr__h3{ margin:1.5rem 0 .75rem; color:#fff; }
.live-rr__list{ margin-bottom:1.25rem; }
.live-rr__item{
  padding:12px 14px; border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:.6rem;
}
.live-rr__meta{
  display:flex; gap:.5rem; flex-wrap:wrap; align-items:baseline;
  margin-bottom:.2rem;
}
.live-rr__name{ font-weight:700; color:#fff; }
.live-rr__provider{ color:#f6
}

/* === Table Games (sticky image on left + 8 feature cards) === */
.table-rr{
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
}
.table-rr .section-title{ color:#fff; }
.table-rr .section-subtitle{ color:#b7c0c8; }

/* Sticky media */
.table-rr__media{ position: sticky; top: 100px; }
.table-rr__figure{ margin:0 0 1rem 0; }
.table-rr__img{
  width:100%; max-width:520px; border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
.table-rr__facts{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.table-rr__facts-title{ color:#fff; font-size:.95rem; margin:0 0 6px 0; }
.table-rr__facts ul{ margin:0; padding-left:1.1rem; color:#c5ced6; }
.table-rr__facts li{ margin-bottom:.25rem; }

/* Feature cards */
.table-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px;
  height:100%;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.table-card:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.12);
}
.table-card__icon{ font-size:1.6rem; margin-bottom:.35rem; color:#f6c022; }
.table-card__title{ margin:0 0 .25rem 0; color:#fff; font-size:1.05rem; }
.table-card__text{ margin:0; color:#c5ced6; }

/* Lists & SEO text */
.table-rr__h3{ margin:1.5rem 0 .75rem; color:#fff; }
.table-rr__list{ margin-bottom:1.25rem; }
.table-rr__item{
  padding:12px 14px; border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:.6rem;
}
.table-rr__meta{
  display:flex; gap:.5rem; flex-wrap:wrap; align-items:baseline;
  margin-bottom:.2rem;
}
.table-rr__name{ font-weight:700; color:#fff; }
.table-rr__provider{ color:#f6c022; font-size:.95rem; }
.table-rr__desc{ margin:0; color:#c5ced6; }

.table-rr__seo{ margin-top:.75rem; color:#cfd7df; }

/* Responsive */
@media (max-width: 991.98px){
  .table-rr__media{ position: static; } /* disable sticky on tablet/mobile */
}
@media (max-width: 575.98px){
  .table-card{ padding:16px; }
}

/* === Special Features (sticky image on right + 8 feature cards) === */
.features-rr .section-title{ color:#fff; }
.features-rr .section-subtitle{ color:#b7c0c8; }

/* Sticky media */
.features-rr__media{ position: sticky; top: 100px; }
.features-rr__figure{ margin:0 0 1rem 0; }
.features-rr__img{
  width:100%; max-width:520px; border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
.features-rr__facts{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.features-rr__facts-title{ color:#fff; font-size:.95rem; margin:0 0 6px 0; }
.features-rr__facts ul{ margin:0; padding-left:1.1rem; color:#c5ced6; }
.features-rr__facts li{ margin-bottom:.25rem; }

/* Feature cards */
.feat-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px;
  height:100%;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.feat-card:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.12);
}
.feat-card__icon{ font-size:1.6rem; margin-bottom:.35rem; color:#f6c022; }
.feat-card__title{ margin:0 0 .25rem 0; color:#fff; font-size:1.05rem; }
.feat-card__text{ margin:0; color:#c5ced6; }

/* Lists & SEO text */
.features-rr__h3{ margin:1.5rem 0 .75rem; color:#fff; }
.features-rr__list{ margin-bottom:1.25rem; }
.features-rr__item{
  padding:12px 14px; border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:.6rem;
}
.features-rr__meta{
  display:flex; gap:.5rem; flex-wrap:wrap; align-items:baseline;
  margin-bottom:.2rem;
}
.features-rr__name{ font-weight:700; color:#fff; }
.features-rr__provider{ color:#f6c022; font-size:.95rem; }
.features-rr__desc{ margin:0; color:#c5ced6; }
.features-rr__seo{ margin-top:.75rem; color:#cfd7df; }

/* Responsive */
@media (max-width: 991.98px){
  .features-rr__media{ position: static; } 
}
@media (max-width: 575.98px){
  .feat-card{ padding:16px; }
}

/* === Base dark-blue gradient for casino sections === */
.casino-section{
  position: relative;
  z-index: 2; /* выше hero и его волн */
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
}


.hero{ position: relative; z-index: 1; }

/* === Bonuses, Loyalty & Promotions — CLEAN === */
.bonuses-rr{
  position: relative;
  z-index: 3;
  color:#e9edf1;
  overflow:hidden;
}

.bonuses-rr:not(.casino-section){
  background: linear-gradient(180deg,#0b1b2e 0%,#0d223a 60%,#0f2946 100%);
}
.bonuses-rr::before,
.bonuses-rr::after{ content:none !important; background:none !important; }

/* Head + subtitles */
.bonuses-rr .section-title{ color:#fff; margin:.35rem 0 0; letter-spacing:.02em; }
.bonuses-rr .section-subtitle{ color:#b7c0c8; margin:.35rem 0 0; }

/* Image (right) */
.bonuses-rr__figure{ margin:0; }
.bonuses-rr__img{
  width:100%;
  max-width:560px;
  border-radius:18px;
  display:block;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}

/* Welcome offer banner (textual) */
.welcome-offer{ position: relative; }
.welcome-offer__body{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.welcome-offer__title{ margin:0 0 .25rem 0; color:#fff; font-size:1.25rem; }
.welcome-offer__subtitle{ margin:0 0 .4rem 0; color:#cfd7df; }
.welcome-offer__value{
  margin:.15rem 0 .5rem 0;
  font-size:1.1rem;
  color:#111;
  background: linear-gradient(90deg,#f6c022,#ffd76a);
  display:inline-block;
  padding:.35rem .6rem;
  border-radius:999px;
}
.welcome-offer__note{ margin:0; color:#bfc8d0; font-size:.95rem; }
.welcome-offer__cta{ margin-top:.7rem; display:flex; gap:.6rem; flex-wrap:wrap; }

/* Textual cards grid */
.text-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;
  padding:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.text-card h3{ margin:0 0 .35rem 0; color:#fff; font-size:1.1rem; letter-spacing:.01em; }
.text-card p{ margin:0 0 .4rem 0; color:#c5ced6; }
.dash-list{ margin:.25rem 0 0; padding-left:1.1rem; }
.dash-list li{ margin-bottom:.3rem; color:#d3dbe2; list-style:disc; }

/* Tiers (textual steps) */
.tiers{ display:grid; gap:.35rem; margin:.35rem 0 .5rem; }
.tier{
  padding:.5rem .65rem;
  border-radius:10px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#d9e1e8;
}

/* Numbered list */
.num-list{ margin:.25rem 0 .4rem; padding-left:1.25rem; color:#d3dbe2; }
.num-list li{ margin-bottom:.3rem; }

/* SEO copy & FAQ */
.seo-copy h3{ color:#fff; margin:1.2rem 0 .4rem; }
.seo-copy p{ color:#cfd7df; margin:0; }

.faq-item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:14px 16px;
  height:100%;
}
.faq-item h4{ margin:0 0 .25rem 0; color:#fff; font-size:1rem; }
.faq-item p{ margin:0; color:#c7d0d8; }

/* Minor */
.muted{ color:#aeb7c0; font-size:.95rem; }

/* Responsive */
@media (max-width: 991.98px){
  .bonuses-rr__img{ max-width:520px; }
}
@media (max-width: 767.98px){
  .welcome-offer__body{ padding:16px; }
  .text-card{ padding:16px; }
}

/* === Login & Registration — River Rock Casino Online === */

.login-rr{
  position: relative;
  z-index: 2; 
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow: hidden;
}

.login-rr::before,
.login-rr::after{ content: none !important; background: none !important; }
.login-rr [class*="overlay"]{ display: none !important; background: transparent !important; }


.login-rr .section-title{ color:#fff; letter-spacing:.02em; margin:0.25rem 0 0; }
.login-rr .section-subtitle{ color:#b7c0c8; margin:.35rem auto 0; max-width: 860px; }
.login-rr__cta{ display:flex; gap:.6rem; justify-content:center; flex-wrap:wrap; }


.auth-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;
  padding:18px 20px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.auth-card__title{ color:#fff; margin:0 0 .25rem 0; font-size:1.15rem; }
.auth-card__lead{ color:#cfd7df; margin:0 0 .5rem 0; }


.step-list{ margin:.25rem 0 .4rem; padding-left:1.15rem; color:#d8e0e7; }
.step-list li{ margin-bottom:.35rem; }
.dash-list{ margin:.25rem 0 .2rem; padding-left:1.15rem; color:#d3dbe2; list-style: disc; }
.dash-list li{ margin-bottom:.3rem; }


.auth-card__h4{ color:#fff; margin:.6rem 0 .25rem; font-size:1rem; }


.mini-cta{ margin-top:.5rem; display:flex; gap:.5rem; flex-wrap:wrap; }
.muted{ color:#aeb7c0; font-size:.95rem; }


.seo-copy h3{ color:#fff; margin:1.2rem 0 .5rem; }
.seo-copy p{ color:#cfd7df; margin:0; }
.support-strip{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:12px 14px;
  text-align:center;
}
.support-strip .link-light{ color:#ffd76a; text-decoration: underline; }


@media (max-width: 991.98px){
  .auth-card{ padding:16px; }
}
@media (max-width: 575.98px){
  .login-rr__cta .btn{ width:100%; }
}

/* === River Rock Online Casino App (floating image, wrapped text) === */
.app-rr{
  position: relative;
  z-index: 2; 
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow: hidden;
}
.app-rr::before,
.app-rr::after{ content:none !important; background:none !important; }

.app-rr .section-title{ color:#fff; letter-spacing:.02em; margin:0; }
.app-rr .section-subtitle{ color:#b7c0c8; margin:.4rem 0 0; }

.app-rr__content{ position:relative; font-size:1.05rem; line-height:1.75; }

/* Floating image (right) with smooth wrap */
.app-rr__figure{ margin:0; }
.app-rr__img{
  width: clamp(240px, 38vw, 420px);
  float: right;
  margin: .25rem 0 1rem 1.25rem;     
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
  shape-outside: inset(0 round 18px); 
}


.store-badges{ display:flex; gap:.6rem; flex-wrap:wrap; align-items:center; }
.store-badge{ height:44px; width:auto; display:block; }


.app-rr__h3{ margin:1.1rem 0 .5rem; color:#fff; }
.app-rr__list{ list-style:none; margin:.25rem 0 .6rem; padding:0; display:grid; gap:.4rem; }
.app-rr__list li{ display:flex; gap:.5rem; align-items:flex-start; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:.6rem .8rem; }
.app-rr__list i{ color:#f6c022; font-size:1.2rem; line-height:1.4; margin-top:.05rem; }
.app-rr__list span{ color:#cfd7df; }
.app-rr__list--cols{ grid-template-columns: repeat(2, minmax(0,1fr)); }

/* Steps */
.app-rr__steps{ margin:.2rem 0 .6rem; padding-left:1.25rem; color:#d8e0e7; }
.app-rr__steps li{ margin-bottom:.35rem; }

/* Note */
.app-rr__note .muted{ color:#aeb7c0; font-size:.95rem; margin:0; }

/* Accessibility helper */
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0;
}

/* Responsive */
@media (max-width: 991.98px){
  .app-rr__img{ width: clamp(220px, 45vw, 360px); }
}
@media (max-width: 767.98px){
  .app-rr__img{
    float:none;
    display:block;
    width:100%;
    max-width:520px;
    margin: 0 auto 1rem auto;
    shape-outside: none;
  }
  .app-rr__list--cols{ grid-template-columns: 1fr; }
}

/* === Payments — Deposit & Withdrawal Methods (FULL REWRITE) === */
.payments-rr{
  position: relative;
  z-index: 2;
  
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow:hidden;

  
  --limit-col: 240px;
}


.payments-rr::before,
.payments-rr::after{ content:none !important; background:none !important; }


.payments-rr .section-title{ color:#fff; letter-spacing:.02em; }
.payments-rr .section-subtitle{ color:#b7c0c8; margin:.35rem 0 0; }


.payments-rr__h3{ color:#fff; margin:1.25rem 0 .55rem; }
.payments-rr .dash-list{ margin:.25rem 0 .75rem; padding-left:1.1rem; color:#d6dee6; }
.payments-rr .dash-list li{ margin-bottom:.35rem; list-style:disc; }
.payments-rr .muted{ color:#aeb7c0; }
.payments-rr .link-light{ color:#ffd76a; text-decoration:underline; }


.payments-rr__tabs .nav-link{
  border-radius:12px;
  padding:.55rem 1rem;
  margin:0 .25rem;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#e9edf1;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.payments-rr__tabs .nav-link:hover{
  border-color: rgba(255,255,255,.18);
}
.payments-rr__tabs .nav-link.active{
  background:#141a22;
  border-color: rgba(255,255,255,.18);
  color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
}


.payments-rr__list{
  display:grid;
  gap:12px;
}


.pay-item{
  display:grid;                                 
  grid-template-columns: auto 1fr var(--limit-col) 18px; 
  align-items:center;
  column-gap:12px;

  background:#151618;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:12px 14px;
  text-decoration:none;
  color:#e9edf1;
  box-shadow:0 6px 16px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.pay-item:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
  box-shadow:0 10px 24px rgba(0,0,0,.45);
  background:#17191c;
}
.pay-item:focus-visible{
  outline:2px solid #ffd76a;
  outline-offset:2px;
  border-color:#ffd76a;
}


.pay-item__left{ display:flex; align-items:center; gap:12px; min-width:0; }
.pay-item__logo{
  width:56px; height:56px;                      
  object-fit:contain;
  padding:8px;
  border-radius:10px;
  background:#23262a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.pay-item__text{ min-width:0; }
.pay-item__name{
  font-weight:600; color:#fff;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}


.pay-item__limit{
  justify-self:end;                 
  text-align:right;
  color:#cfd7df;
  white-space:nowrap;
  font-variant-numeric: tabular-nums;           
  -webkit-font-feature-settings:"tnum" 1, "lnum" 1;
          font-feature-settings:"tnum" 1, "lnum" 1;
}


.pay-item__chev{
  font-size:1rem; opacity:.85;
}


@media (max-width: 991.98px){
  .payments-rr{ --limit-col: 210px; }           
}
@media (max-width: 767.98px){
  
  .pay-item{
    grid-template-columns: auto 1fr;            
    grid-template-areas: "left limit";
    row-gap:6px;
  }
  .pay-item__left{ grid-area:left; }
  .pay-item__limit{ grid-area:limit; }
  .pay-item__chev{ display:none; }
  .payments-rr{ --limit-col: 1fr; }             
}
@media (max-width: 575.98px){
  .payments-rr__tabs .nav-link{ width:100%; margin:0 0 8px 0; }
  .pay-item{ padding:12px; }
  .pay-item__logo{ width:52px; height:52px; padding:7px; }
  .pay-item__limit{ font-size:.95rem; }
}

/* === Trust, Safety & Platform Essentials === */
.trust-rr{
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow:hidden;
}
.trust-rr::before,
.trust-rr::after{ content:none !important; background:none !important; }

.trust-rr .section-title{ color:#fff; letter-spacing:.02em; }
.trust-rr .section-subtitle{ color:#b7c0c8; margin:.35rem 0 0; }

/* Cards */
.trust-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:18px;
  height:100%;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.trust-card__icon{ color:#f6c022; font-size:1.45rem; margin-bottom:.35rem; }
.trust-card__title{ color:#fff; margin:0 0 .25rem 0; font-size:1.08rem; }
.trust-card p{ color:#cfd7df; margin:0 0 .4rem 0; }

/* Lists */
.trust-list{ margin:.25rem 0 .2rem; padding-left:1.15rem; color:#d6dee6; }
.trust-list li{ margin-bottom:.3rem; }

/* Languages chips */
.lang-chips{ display:flex; flex-wrap:wrap; gap:.4rem; margin:.25rem 0 .35rem; }
.chip{
  display:inline-block;
  padding:.3rem .6rem;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#e9edf1;
  font-size:.95rem;
}

/* Links & small text */
.link-light{ color:#ffd76a; text-decoration:underline; }
.trust-mini{ margin-top:.4rem; color:#cfd7df; }
.muted{ color:#aeb7c0; }

/* SEO copy */
.trust-seo h3{ color:#fff; margin:1.2rem 0 .5rem; }
.trust-seo p{ color:#cfd7df; margin:0; }

/* Responsive */
@media (max-width: 575.98px){
  .trust-card{ padding:16px; }
}

/* === River Rock Casino Resort — float image fix === */
.resort-rr{
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow:hidden;
}
.resort-rr::before,
.resort-rr::after{ content:none !important; background:none !important; }

.resort-rr .section-title{ color:#fff; letter-spacing:.02em; margin:0; }
.resort-rr .section-subtitle{ color:#b7c0c8; margin:.45rem 0 0; }


.resort-rr__figure{ margin:0; }
.resort-rr__img{
  width: clamp(300px, 34vw, 480px);
  float: right;
  margin: .25rem 0 1rem 1.25rem;   
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
  shape-outside: inset(0 round 18px);
}


.resort-rr__facts{
  float: right;
  clear: right;
  width: clamp(280px, 32vw, 440px);
  margin: .5rem 0 1rem 1.25rem;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.resort-rr__facts-title{ color:#fff; font-size:.95rem; margin:0 0 6px 0; }
.resort-rr__facts ul{ margin:0; padding-left:1.1rem; color:#c5ced6; }
.resort-rr__facts li{ margin-bottom:.25rem; }


.resort-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px;
  height:100%;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.resort-card:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.12);
}
.resort-card__icon{ font-size:1.6rem; margin-bottom:.35rem; color:#f6c022; }
.resort-card__title{ margin:0 0 .25rem 0; color:#fff; font-size:1.06rem; }
.resort-card__text{ margin:0; color:#c5ced6; }


.resort-rr__h3{ margin:1.3rem 0 .55rem; color:#fff; }
.resort-list{ margin:.2rem 0 .8rem; padding-left:1.15rem; color:#d6dee6; }
.resort-list li{ margin-bottom:.32rem; }
.resort-rr__cta{ display:flex; gap:.75rem; flex-wrap:wrap; margin-top:.6rem; }


@media (max-width: 767.98px){
  .resort-rr__img,
  .resort-rr__facts{
    float:none;
    width:100%;
    margin:0 0 1rem 0;
    shape-outside:none;
  }
}

/* === Poker — River Rock Poker Room (grid, clean) === */
.poker-rr{
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow:hidden;
}
.poker-rr::before,
.poker-rr::after{ content:none !important; background:none !important; }

.poker-rr .section-title{ color:#fff; letter-spacing:.02em; }
.poker-rr .section-subtitle{ color:#b7c0c8; margin:.35rem 0 0; }

/* Grid layout */
.poker-rr__grid{
  display:grid;
  gap: 24px;
  grid-template-columns: minmax(320px, 460px) minmax(0,1fr); /* image col / content col */
}
@media (max-width: 991.98px){
  .poker-rr__grid{ grid-template-columns: 1fr; }
}

/* Media column */
.poker-rr__figure{ margin:0 0 14px 0; }
.poker-rr__img{
  width:100%;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
  display:block;
}

/* Side card */
.poker-rr__sidecard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 10px 24px rgba(0,0,0,.38);
}
.sidecard__title{
  color:#fff; margin:0 0 .45rem 0; font-size:1rem;
  display:flex; gap:.45rem; align-items:center;
}
.sidecard__list{ margin:0; padding-left:1.1rem; color:#cfd7df; }
.sidecard__list li{ margin-bottom:.28rem; }
.link-light{ color:#ffd76a; text-decoration:underline; }

/* Feature chips */
.poker-rr__chips{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin-bottom: 10px;
}
@media (min-width: 1200px){
  .poker-rr__chips{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.chip-card{
  display:flex; gap:.6rem; align-items:flex-start;
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  padding:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.chip-card i{ color:#f6c022; font-size:1.2rem; margin-top:.15rem; }
.chip-card h3{ color:#fff; font-size:1.02rem; margin:0 0 .15rem 0; }
.chip-card p{ color:#c5ced6; margin:0; }

/* Facts grid */
.facts-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin: .2rem 0 1rem;
}
@media (max-width: 1199.98px){
  .facts-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767.98px){
  .facts-grid{ grid-template-columns: 1fr; }
}
.facts{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.facts h4{
  color:#fff; margin:0 0 .35rem 0; font-size:1rem;
  display:flex; gap:.45rem; align-items:center;
}
.facts ul{ margin:0; padding-left:1.1rem; color:#cfd7df; }
.facts li{ margin-bottom:.25rem; }

/* SEO + lists */
.poker-rr__h3{ margin:1.1rem 0 .55rem; color:#fff; }
.poker-rr__seo p{ color:#cfd7df; margin:0 0 .4rem 0; }
.poker-rr__list{ margin:.25rem 0 .8rem; padding-left:1.15rem; color:#d6dee6; }
.poker-rr__list li{ margin-bottom:.32rem; }

/* CTA & notes */
.poker-rr__cta{ display:flex; gap:.75rem; flex-wrap:wrap; margin-top:.4rem; }
.muted{ color:#aeb7c0; }

/* === Racebook — River Rock (grid, clean) === */
.racebook-rr{
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow:hidden;
}
.racebook-rr::before,
.racebook-rr::after{ content:none !important; background:none !important; }

.racebook-rr .section-title{ color:#fff; letter-spacing:.02em; }
.racebook-rr .section-subtitle{ color:#b7c0c8; margin:.35rem 0 0; }

/* Grid layout */
.racebook-rr__grid{
  display:grid;
  gap: 24px;
  grid-template-columns: minmax(320px, 480px) minmax(0,1fr); /* media / content */
}
@media (max-width: 991.98px){
  .racebook-rr__grid{ grid-template-columns: 1fr; }
}

/* Media column */
.racebook-rr__figure{ margin:0 0 14px 0; }
.racebook-rr__img{
  width:100%;
  display:block;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}

/* Side card under image */
.racebook-rr__sidecard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 10px 24px rgba(0,0,0,.38);
}
.sidecard__title{
  color:#fff; margin:0 0 .45rem 0; font-size:1rem;
  display:flex; gap:.45rem; align-items:center;
}
.sidecard__list{ margin:0; padding-left:1.1rem; color:#cfd7df; }
.sidecard__list li{ margin-bottom:.28rem; }

/* Feature chips */
.racechips{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin-bottom: 10px;
}
@media (min-width: 1200px){
  .racechips{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.chip-card{
  display:flex; gap:.6rem; align-items:flex-start;
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  padding:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.chip-card i{ color:#f6c022; font-size:1.2rem; margin-top:.15rem; }
.chip-card h3{ color:#fff; font-size:1.02rem; margin:0 0 .15rem 0; }
.chip-card p{ color:#c5ced6; margin:0; }

/* Bet types cards */
.bettypes{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin:.2rem 0 .8rem;
}
@media (max-width: 767.98px){ .bettypes{ grid-template-columns:1fr; } }
.bettype{
  background:#141a22;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  padding:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.bettype h4{
  color:#fff; font-size:1rem; margin:0 0 .15rem 0;
  display:flex; gap:.45rem; align-items:center;
}
.bettype p{ color:#c5ced6; margin:0; }

/* Facts */
.facts-grid{
  display:grid; gap:12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin:.2rem 0 1rem;
}
@media (max-width: 1199.98px){ .facts-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 767.98px){ .facts-grid{ grid-template-columns: 1fr; } }
.facts{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
}
.facts h4{
  color:#fff; margin:0 0 .35rem 0; font-size:1rem;
  display:flex; gap:.45rem; align-items:center;
}
.facts ul{ margin:0; padding-left:1.1rem; color:#cfd7df; }
.facts li{ margin-bottom:.25rem; }
.ordered{ margin:.1rem 0 .5rem; padding-left:1.25rem; color:#cfd7df; }
.ordered li{ margin-bottom:.25rem; }

/* SEO, CTA, notes */
.racebook-rr__h3{ margin:1.1rem 0 .55rem; color:#fff; }
.racebook-rr__seo p{ color:#cfd7df; margin:0 0 .4rem 0; }
.racebook-rr__responsible{ background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:12px 14px; }
.racebook-rr__cta{ display:flex; gap:.75rem; flex-wrap:wrap; margin-top:.6rem; }
.muted{ color:#aeb7c0; }


/* === Providers grid (dark cards like the screenshot) === */
.providers-rr{
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#e9edf1;
  overflow: hidden;
}
.providers-rr::before,
.providers-rr::after{ content:none !important; background:none !important; }

.providers-rr .section-title{ color:#fff; }
.providers-rr .section-subtitle{ color:#b7c0c8; }

/* Grid */
.providers-rr__grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Card */
.prov-card{
  background:#141a22;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px 18px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:100%;
}
.prov-card:hover{
  transform: translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.16);
}

.prov-card__top{
  display:flex; align-items:center; gap:12px; margin-bottom:8px;
}
.prov-card__logo{ height:24px; width:auto; display:block; }
.prov-card__name{ margin:0; font-size:1.05rem; color:#fff; }

.prov-card__games{
  margin:0 0 8px 0; color:#c7d0d9; font-size:.95rem; line-height:1.4;
}

/* Pills */
.prov-card__tags{ display:flex; flex-wrap:wrap; gap:6px; }
.pill{
  display:inline-block;
  font-size:.78rem;
  line-height:1;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#dfe7ee;
}

/* Bottom blurb */
.providers-rr__why{ margin-top:18px; color:#cfd7df; }
.providers-rr__why-title{ color:#fff; font-size:1.1rem; margin:0 0 .25rem 0; }

/* Responsive tweaks */
@media (max-width: 575.98px){
  .prov-card{ padding:14px; }
  .prov-card__name{ font-size:1rem; }
}


/* === FAQ (2-column card accordion) === */
.faq-rr{
  position:relative;
  z-index:2;
  background: linear-gradient(180deg,#0b1b2e 0%,#0d223a 60%,#0f2946 100%);
  color:#e9edf1;
  overflow:hidden;
}
.faq-rr::before,.faq-rr::after{content:none!important;background:none!important;}
.faq-rr .section-title{color:#fff;}
.faq-rr .section-subtitle{color:#b7c0c8;margin:0;}

.faq-rr__grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (max-width: 767.98px){
  .faq-rr__grid{grid-template-columns:1fr;}
}

/* Item (details/summary) */
.faq-item{
  background:#141a22;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  overflow:hidden;
}
.faq-item[open]{border-color:rgba(255,255,255,.16);}

.faq-item > summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding:14px 16px;
  user-select:none;
}
.faq-item > summary::-webkit-details-marker{display:none;}
.faq-item__title{display:flex;align-items:center;gap:.55rem;color:#fff;font-weight:700;}
.faq-item__title i{color:#f6c022;}

.faq-item__content{
  padding:0 16px 14px 16px;
  color:#cfd7df;
  line-height:1.65;
  border-top:1px solid rgba(255,255,255,.06);
}

/* Pills */
.pill{
  display:inline-block;
  font-size:.78rem;
  line-height:1;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#dfe7ee;
  white-space:nowrap;
}
.pill--online{background:rgba(31,171,255,.08);border-color:rgba(31,171,255,.25);}
.pill--resort{background:rgba(134,239,172,.08);border-color:rgba(134,239,172,.25);}
.pill--both{background:rgba(255,215,106,.10);border-color:rgba(255,215,106,.28);}

/* === Footer: River Rock === */
.rr-footer{
  position:relative;
  background: linear-gradient(180deg,#0b1b2e 0%, #0d223a 60%, #0f2946 100%);
  color:#cfd7df;
  padding-top:48px;
  padding-bottom:28px;
  z-index:2;
}
.rr-footer a{ color:#e9edf1; text-decoration:none; }
.rr-footer a:hover{ color:#ffd76a; }

/* Grid */
.rr-footer__grid{
  display:grid;
  gap:24px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 991.98px){ .rr-footer__grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575.98px){ .rr-footer__grid{ grid-template-columns: 1fr; } }

/* Brand */
.rr-footer__brand{
  display:inline-block;
  font-size:1.25rem;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff;
  margin-bottom:.35rem;
}
.text-gold{ color:#f6c022; }

/* About */
.rr-footer__about{ margin:0 0 .75rem 0; color:#b9c3cd; }

/* Social */
.rr-footer__social{ display:flex; gap:.5rem; }
.rr-footer__soc{
  width:36px; height:36px; display:grid; place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
}
.rr-footer__soc:hover{ border-color:rgba(255,255,255,.2); }

/* Column titles & lists */
.rr-footer__title{ color:#fff; margin:0 0 .5rem 0; font-size:1.05rem; }
.rr-footer__links{ list-style:none; margin:0; padding:0; }
.rr-footer__links li{ margin-bottom:.4rem; }
.rr-footer__links a{ color:#dfe7ee; }
.rr-footer__links a:hover{ color:#ffd76a; }

/* Subscribe */
.rr-footer__subscribe{ margin-top:.5rem; }
.rr-subscribe{ display:flex; gap:.5rem; }
.rr-subscribe__input{
  background:#141a22; border:1px solid rgba(255,255,255,.12); color:#e9edf1;
  border-radius:10px; padding:.55rem .75rem; flex:1 1 auto;
}
.rr-subscribe__btn{ border-radius:10px; padding:.55rem .9rem; }
.rr-subscribe__msg{ font-size:.9rem; color:#b7c0c8; margin-top:.35rem; }

/* Legal */
.rr-footer__legal{
  display:flex; gap:18px; align-items:flex-start; justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:22px; padding-top:16px;
}
.rr-legal__left{ display:grid; gap:.35rem; }
.rr-legal__row{ display:flex; gap:.5rem; align-items:center; }
.rr-legal__fine{ color:#aeb7c0; font-size:.95rem; }
.rr-legal__right{ display:flex; gap:14px; flex-wrap:wrap; }
.rr-legal__right a{ color:#cfd7df; }
.rr-legal__right a:hover{ color:#ffd76a; }

.rr-footer__bottom{
  margin-top:12px; color:#b7c0c8; font-size:.95rem;
  border-top:1px dashed rgba(255,255,255,.08);
  padding-top:12px;
}
