:root {
    --primary-light: #15803D;
    --primary-dark: #052E16;
    --secondary-light: #D9F99D;
    --secondary-dark: #365314;
    --accent-gold: #FACC15;
    --accent-mist: #F0FDF4;
    --bg-main: #F8FAF9;
    --bg-surface: #FFFFFF;
    --bg-muted: #ECFDF5;
    --text-primary: #064E3B;
    --text-secondary: #374151;
    --text-muted-color: #6B7280;
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-organic: 24px;
    --shadow-floating: 0 20px 25px -5px rgba(6, 78, 59, 0.05), 0 10px 10px -5px rgba(6, 78, 59, 0.02);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-muted-color) !important;
}

.eco-card {
    background: var(--bg-surface);
    border-radius: var(--radius-organic);
    box-shadow: var(--shadow-floating);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 30px -5px rgba(6, 78, 59, 0.08);
}

.btn-tropical {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.btn-tropical:hover {
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
    filter: brightness(1.1);
}

.glass-mist {
    background: rgba(240, 253, 244, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 252, 231, 0.5);
}

/* ===== header ===== */
.stayruma-header .js-mobile-nav.active {
    display: flex !important;
}

.stayruma-header nav a {
    position: relative;
}

.stayruma-header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FACC15;
    transition: width 0.3s ease;
}

.stayruma-header nav a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .stayruma-header .js-mobile-nav {
        height: 100vh;
        width: 100vw;
        overflow-y: auto;
    }
}

/* ===== hero ===== */
.stayruma-hero {
    position: relative;
    width: 100%;
}

.stayruma-hero .stayruma-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stayruma-hero .stayruma-hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 46, 22, 0.4) 0%, rgba(5, 46, 22, 0.8) 100%);
}

.stayruma-hero .stayruma-hero-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stayruma-hero .stayruma-hero-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stayruma-hero .stayruma-hero-btn:hover {
    transform: translateY(-2px);
}

/* ===== top-rated ===== */
#top-rated .js-hotel-card {
    height: 100%;
    transition: all 0.3s ease;
}

#top-rated .js-hotel-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

#top-rated .js-booking-modal {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#top-rated .js-booking-modal.active {
    display: flex;
    opacity: 1;
}

#top-rated input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(24%) sepia(87%) saturate(468%) hue-rotate(105deg) brightness(92%) contrast(97%);
    cursor: pointer;
}

/* ===== destinations ===== */
.destinations-block .destination-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.destinations-block .destination-card:hover {
    transform: translateY(-8px);
}

.destinations-block h2,
.destinations-block h3 {
    font-family: 'Outfit', sans-serif;
}

.destinations-block p {
    font-family: 'Inter', sans-serif;
}

.destinations-block .destination-card img {
    filter: brightness(0.9);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.destinations-block .destination-card:hover img {
    filter: brightness(1.1);
}

/* ===== tourist-guide ===== */
.tourist-guide-block .guide-card {
    backface-visibility: hidden;
}

.tourist-guide-block .js-filter-btn.active {
    background-color: #15803D;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(6, 78, 59, 0.1), 0 2px 4px -1px rgba(6, 78, 59, 0.06);
}

.tourist-guide-block .guide-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tourist-guide-block .guide-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .tourist-guide-block .js-filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }

    .tourist-guide-block .js-filter-container::-webkit-scrollbar {
        display: none;
    }

    .tourist-guide-block .js-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ===== newsletter ===== */
.newsletter-block .newsletter-card {
    transition: transform 0.3s ease;
}

.newsletter-block .newsletter-card:hover {
    transform: translateY(-5px);
}

.newsletter-block .newsletter-input::placeholder {
    color: #6B7280;
    opacity: 1;
}

.newsletter-block .js-submit-btn {
    box-shadow: 0 0 0 rgba(250, 204, 21, 0);
}

.newsletter-block .js-submit-btn:hover {
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
}

/* ===== footer ===== */
.stayruma-footer {
    position: relative;
}

.stayruma-footer .stayruma-footer__disclaimer {
    box-shadow: 0 10px 30px -10px rgba(21, 128, 61, 0.3);
}

.stayruma-footer .nav-link {
    position: relative;
}

.stayruma-footer .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FACC15;
    transition: width 0.3s ease;
}

.stayruma-footer .nav-link:hover::after {
    width: 100%;
}

#js-age-modal.hidden {
    display: none;
}

#js-age-modal:not(.hidden) {
    display: flex;
}

.stayruma-footer__logos img {
    filter: none !important;
    transition: transform 0.3s ease;
}

.stayruma-footer__logos a:hover img {
    transform: translateY(-3px);
}

/* ===== PAGE: casino-hotels-page ===== */
.hotels-catalog-section .shadow-floating {
  box-shadow: 0 20px 25px -5px rgba(6, 78, 59, 0.05), 0 10px 10px -5px rgba(6, 78, 59, 0.02);
}
.hotels-catalog-section .shadow-glow {
  box-shadow: 0 0 15px rgba(21, 128, 61, 0.3);
}
.hotels-catalog-section select {
  background-image: none;
}
.hotels-catalog-section .line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hotels-catalog-section .js-modal.is-active {
  display: flex !important;
}
.hotels-catalog-section .js-modal .bg-white {
  animation: modalIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes modalIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== PAGE: destinations-page ===== */
.dest-page {
  font-family: 'Inter', sans-serif;
}
.dest-page h1, .dest-page h2, .dest-page h3 {
  font-family: 'Outfit', sans-serif;
}
.dest-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dest-card .p-6 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.dest-card a.inline-flex {
  margin-top: auto;
}
.dest-page .js-dest-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dest-page .js-dest-item.hidden {
  display: none;
}
.dest-page .no-results.hidden {
  display: none;
}
.dest-page .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== PAGE: tourist-guide-page ===== */
.tourist-guide-section .js-filter-btn.active {
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}
.tourist-guide-section .js-article-card {
  transform: translateY(0);
}
.tourist-guide-section .js-article-card:hover {
  transform: translateY(-8px);
}
.tourist-guide-section .container {
  max-width: 1200px;
}
@media (max-width: 768px) {
  .tourist-guide-section .js-filter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

/* ===== PAGE: about-contact ===== */
.sr-about-us .sr-about-title { letter-spacing: -0.02em; }
.sr-contact-form-block input::placeholder, .sr-contact-form-block textarea::placeholder { color: #9CA3AF; opacity: 1; }
.sr-contact-form-block #js-contact-form.hidden { display: none; }
.sr-contact-form-block #js-success-message:not(.hidden) { display: block; animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== PAGE: privacy ===== */
.privacy-content-wrapper .privacy-content-container { box-shadow: 0 10px 30px -10px rgba(6, 78, 59, 0.1); }.privacy-content-wrapper a { transition: all 0.3s ease; }.privacy-content-wrapper a:hover { color: #052E16; opacity: 0.9; }.privacy-content-wrapper ul li i { font-size: 1.1em; }.privacy-content-wrapper .privacy-section { position: relative; }

/* ===== PAGE: terms ===== */
.terms-content-section .js-terms-nav-link.active {
  color: #15803D;
  font-weight: 700;
  padding-left: 4px;
  border-left: 2px solid #15803D;
}
.terms-content-section .js-terms-nav-link {
  transition: all 0.3s ease;
}
.terms-content-section p {
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .terms-content-section .sticky {
    position: static;
    margin-bottom: 2rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  font-family: 'Inter', sans-serif;
}
.disclaimer-section h2, .disclaimer-section h3, .disclaimer-section h4 {
  font-family: 'Outfit', sans-serif;
}
.disclaimer-section .disclaimer-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.disclaimer-section .disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(6, 78, 59, 0.05);
}
.disclaimer-section .icon-box {
  transition: background-color 0.3s ease;
}
.disclaimer-section .disclaimer-card:hover .icon-box {
  background-color: #D9F99D;
}
.disclaimer-section .prose p {
  line-height: 1.8;
  color: #374151;
}
.disclaimer-section .js-print-btn:active {
  transform: scale(0.95);
}
@media (max-width: 767px) {
  .disclaimer-section .disclaimer-card {
    padding: 1.5rem;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-page-section .js-pref-toggle[data-active="false"] { background-color: #9CA3AF; }
.cookies-page-section .js-pref-toggle[data-active="true"] { background-color: #15803D; }
.cookies-page-section .js-pref-toggle[data-active="false"] .js-toggle-thumb { left: 4px; }
.cookies-page-section .js-pref-toggle[data-active="true"] .js-toggle-thumb { left: 28px; }
.cookies-page-section .shadow-floating { box-shadow: 0 20px 25px -5px rgba(6, 78, 59, 0.05), 0 10px 10px -5px rgba(6, 78, 59, 0.02); }

.comment-avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid #DCFCE7;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.shadow-floating {
    box-shadow: 0 20px 25px -5px rgba(6, 78, 59, 0.05), 0 10px 10px -5px rgba(6, 78, 59, 0.02);
}

.shadow-glow:hover {
    box-shadow: 0 0 15px rgba(21, 128, 61, 0.1);
}

.reply-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

.reply-container {
    background: linear-gradient(to right, #F0FDF4, #FFFFFF);
    margin-top: -12px;
    z-index: 10;
}

.reply-container::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 50%;
    width: 2px;
    border-left: 2px dashed #DCFCE7;
}


/* ===== PAGE TEMPLATE: casino-hotels ===== */
.stayruma-header .js-mobile-nav.active {
    display: flex !important;
}

.stayruma-header nav a {
    position: relative;
}

.stayruma-header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FACC15;
    transition: width 0.3s ease;
}

.stayruma-header nav a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .stayruma-header .js-mobile-nav {
        height: 100vh;
        width: 100vw;
        overflow-y: auto;
    }
}

.stayruma-hero-detail .absolute.bg-black\/60 {
    background: linear-gradient(to bottom, rgba(5, 46, 22, 0.4), rgba(5, 46, 22, 0.8));
}

.shadow-floating {
    box-shadow: 0 20px 25px -5px rgba(6, 78, 59, 0.05), 0 10px 10px -5px rgba(6, 78, 59, 0.02);
}

.shadow-glow:hover {
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
}

.stayruma-gallery .js-thumb.active {
    border-color: #15803D;
}

.stayruma-footer .stayruma-footer__disclaimer {
    box-shadow: 0 10px 30px -10px rgba(21, 128, 61, 0.3);
}

#js-age-modal.active {
    display: flex !important;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.js-count-active {
    color: #15803D !important;
}

.js-count-active i {
    font-weight: bold;
}

/* ===== PAGE TEMPLATE: destinations ===== */
.stayruma-header .js-mobile-nav.active {
    display: flex !important
}

.stayruma-header nav a {
    position: relative
}

.stayruma-header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FACC15;
    transition: width 0.3s ease
}

.stayruma-header nav a:hover::after {
    width: 100%
}

@media (max-width:767px) {
    .stayruma-header .js-mobile-nav {
        height: 100vh;
        width: 100vw;
        overflow-y: auto
    }
}

.stayruma-hero .stayruma-hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 46, 22, 0.4) 0%, rgba(5, 46, 22, 0.8) 100%)
}

.stayruma-hero .stayruma-hero-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3)
}

.stayruma-footer .stayruma-footer__disclaimer {
    box-shadow: 0 10px 30px -10px rgba(21, 128, 61, 0.3)
}

.js-gallery-thumb img {
    transition: opacity 0.3s ease
}

.js-gallery-thumb:hover img {
    opacity: 0.8
}

.prose h2 {
    color: #064E3B;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem
}

.prose p {
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1rem
}

#js-age-modal:not(.hidden) {
    display: flex
}

.comment-avatar,
.reply-avatar {
    transition: transform 0.3s ease
}

.comment-avatar:hover {
    transform: scale(1.1)
}

/* ===== PAGE TEMPLATE: tourist-guide ===== */
.guide-article-content h1,
.guide-article-content h2,
.guide-article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #064E3B;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guide-article-content h2 {
    font-size: 26px;
}

.guide-article-content h3 {
    font-size: 22px;
}

.guide-article-content p {
    margin-bottom: 1.25rem;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.guide-article-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.guide-article-content li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.guide-article-content li::before {
    content: '\e28e';
    font-family: 'Phosphor-Fill';
    position: absolute;
    left: 0;
    color: #15803D;
    font-size: 1.2rem;
    top: 0.1rem;
}

.guide-article-content strong {
    color: #052E16;
    font-weight: 600;
}

.guide-article-content blockquote {
    border-left: 4px solid #15803D;
    padding: 1rem 1.5rem;
    background: #F0FDF4;
    font-style: italic;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
}

.comment-avatar,
.reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #DCFCE7;
}

.stayruma-header .js-mobile-nav.active {
    display: flex !important;
}

.stayruma-header nav a {
    position: relative;
}

.stayruma-header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FACC15;
    transition: width 0.3s ease;
}

.stayruma-header nav a:hover::after {
    width: 100%;
}

.stayruma-hero .stayruma-hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 46, 22, 0.4) 0%, rgba(5, 46, 22, 0.8) 100%);
}

#js-age-modal:not(.hidden) {
    display: flex;
}