:root {
  --rllvibe-bg-start: #f5ecdc;
  --rllvibe-bg-end: #ecdfc6;
  --rllvibe-card: #fbf3e3;
  --rllvibe-terracotta: #c2552d;
  --rllvibe-terracotta-soft: #e07757;
  --rllvibe-olive: #7a8c3f;
  --rllvibe-mustard: #d4a017;
  --rllvibe-espresso: #3d2c1e;
  --rllvibe-brown: #6b5040;
  --rllvibe-cream: #f7f0e2;
  --rllvibe-shadow: 0 14px 30px rgba(120, 80, 40, 0.18), inset 0 -6px 0 rgba(120, 80, 40, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--rllvibe-espresso);
  background: linear-gradient(160deg, var(--rllvibe-bg-start), var(--rllvibe-bg-end));
  background-image: linear-gradient(160deg, var(--rllvibe-bg-start), var(--rllvibe-bg-end)), radial-gradient(circle at 1px 1px, rgba(120, 80, 40, 0.05) 1px, transparent 0);
  background-size: auto, 5px 5px;
  overflow-x: clip;
}

a {
  color: inherit;
}

.rllvibe-page {
  min-height: 100vh;
}

.rllvibe-container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.rllvibe-header {
  padding: 0.85rem 0;
  background: rgba(245, 236, 220, 0.95);
  position: relative;
  z-index: 100;
}

.rllvibe-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rllvibe-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.rllvibe-brand img {
  width: 46px;
  height: 46px;
}

.rllvibe-brand span {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--rllvibe-olive);
}

.rllvibe-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rllvibe-nav a {
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  position: relative;
}

.rllvibe-nav a:hover,
.rllvibe-nav a:focus-visible {
  background: #f1e2c5;
}

.rllvibe-nav a[aria-current="page"] {
  padding-left: 1.5rem;
}

.rllvibe-nav a[aria-current="page"]::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--rllvibe-mustard);
  position: absolute;
  left: 0.7rem;
  top: 50%;
  margin-top: -0.225rem;
}

.rllvibe-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: #eed9b4;
  color: var(--rllvibe-espresso);
}

.rllvibe-burger-line {
  width: 22px;
  height: 2px;
  background: var(--rllvibe-espresso);
  display: block;
  margin: 4px auto;
}

.rllvibe-main {
  padding: 1.25rem 0 2.5rem;
}

.rllvibe-section {
  margin-top: 1.6rem;
}

.rllvibe-clay {
  background: var(--rllvibe-card);
  border-radius: 26px;
  box-shadow: var(--rllvibe-shadow);
}

.rllvibe-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.rllvibe-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.1;
}

.rllvibe-hero h1 em {
  color: var(--rllvibe-terracotta);
  font-style: italic;
}

.rllvibe-hero p {
  color: var(--rllvibe-brown);
  font-weight: 500;
  max-width: 62ch;
}

.rllvibe-wavy {
  width: 190px;
  height: 22px;
}

.rllvibe-blob {
  width: 150px;
  height: 110px;
  background: linear-gradient(130deg, var(--rllvibe-terracotta-soft), var(--rllvibe-terracotta));
  border-radius: 58% 42% 62% 38% / 43% 59% 41% 57%;
  position: absolute;
  right: -24px;
  bottom: -28px;
  opacity: 0.72;
}

.rllvibe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #e07757 0%, #c2552d 100%);
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(194, 85, 45, 0.35), inset 0 -4px 0 rgba(120, 40, 20, 0.25), inset 0 2px 0 rgba(255, 180, 150, 0.5);
  transition: 0.2s ease;
}

.rllvibe-btn:hover,
.rllvibe-btn:focus-visible {
  transform: translateY(2px);
}

.rllvibe-btn-block {
  width: 100%;
}

.rllvibe-highlight-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rllvibe-title,
h2,
h3 {
  font-family: "Fraunces", serif;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.rllvibe-comparison,
.rllvibe-calculator,
.rllvibe-method,
.rllvibe-rg,
.rllvibe-about,
.rllvibe-faq,
.rllvibe-legal,
.rllvibe-spotlight {
  padding: 1.2rem;
}

.rllvibe-table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
}

th,
td {
  text-align: left;
  padding: 0.7rem;
  border-bottom: 1px solid rgba(107, 80, 64, 0.2);
}

th {
  font-family: "Fraunces", serif;
}

.rllvibe-grid {
  display: grid;
  gap: 1rem;
}

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

.rllvibe-casino-tile {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rllvibe-casino-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(120, 80, 40, 0.23), inset 0 -6px 0 rgba(120, 80, 40, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.7);
}

.rllvibe-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(140px, 100%);
  height: auto;
  min-height: 4.25rem;
  max-width: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin-inline: auto;
}

.rllvibe-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rllvibe-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rllvibe-badge {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #efe2c8;
}

.rllvibe-badge-olive {
  background: var(--rllvibe-olive);
  color: var(--rllvibe-cream);
}

.rllvibe-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: #e7d5b6;
  font-size: 0.8rem;
  margin: 0.15rem;
}

.rllvibe-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rllvibe-score {
  font-weight: 700;
}

.rllvibe-dots {
  display: inline-flex;
  gap: 0.2rem;
}

.rllvibe-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #e9d8be;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.rllvibe-dot.active {
  background: var(--rllvibe-terracotta);
}

.rllvibe-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: #fff;
  background: var(--rllvibe-terracotta);
  box-shadow: inset 0 -3px 0 rgba(120, 40, 20, 0.25), inset 0 2px 0 rgba(255, 180, 150, 0.45);
}

.rllvibe-features {
  display: flex;
  flex-wrap: wrap;
}

.rllvibe-disclaimer {
  color: var(--rllvibe-brown);
  font-size: 0.82rem;
}

.rllvibe-method-grid,
.rllvibe-about-stats,
.rllvibe-top3-grid,
.rllvibe-link-grid {
  display: grid;
  gap: 0.9rem;
}

.rllvibe-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rllvibe-method-card,
.rllvibe-spot {
  padding: 0.9rem;
}

.rllvibe-counter {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--rllvibe-terracotta);
}

.rllvibe-about-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.rllvibe-calc-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
}

.rllvibe-calc-grid input {
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid #ccb99f;
  font: inherit;
}

.rllvibe-calc-result {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 16px;
  background: #f1e3c8;
  font-weight: 600;
}

.rllvibe-faq-item + .rllvibe-faq-item {
  margin-top: 0.65rem;
}

.rllvibe-faq-button {
  width: 100%;
  text-align: left;
  font: inherit;
  font-weight: 600;
  border: 0;
  background: #ebdcc1;
  border-radius: 14px;
  padding: 0.7rem;
  color: var(--rllvibe-espresso);
}

.rllvibe-faq-panel {
  padding: 0 0.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.rllvibe-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483644;
  background: #f7ebd1;
  color: var(--rllvibe-espresso);
  box-shadow: 0 6px 14px rgba(60, 40, 20, 0.2);
  padding: 0.85rem;
}

.rllvibe-cookie-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.rllvibe-cookie-buttons {
  display: flex;
  gap: 0.6rem;
}

.rllvibe-cookie-buttons button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
}

.rllvibe-cookie-accept {
  background: var(--rllvibe-olive);
  color: #fff;
}

.rllvibe-cookie-decline {
  background: #e4d3b6;
}

.rllvibe-age-overlay p {
  color: #433126;
}

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

.rllvibe-age-actions button,
.rllvibe-age-actions a {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 600;
}

.rllvibe-age-yes {
  background: var(--rllvibe-terracotta);
  color: #fff;
}

.rllvibe-age-no {
  background: #e4d3b7;
  color: var(--rllvibe-espresso);
}

.rllvibe-back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--rllvibe-terracotta);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(194, 85, 45, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.rllvibe-back-top.rllvibe-show {
  opacity: 1;
  pointer-events: auto;
}

.rllvibe-footer {
  margin-top: 1.5rem;
  background: #ebddc3;
  padding: 1.3rem 0 2rem;
}

.rllvibe-footer-block {
  padding: 0.85rem;
  border-radius: 18px;
  background: var(--rllvibe-card);
  box-shadow: var(--rllvibe-shadow);
}

.rllvibe-footer-grid {
  display: grid;
  gap: 0.8rem;
}

.rllvibe-legal p,
.rllvibe-method p,
.rllvibe-rg p,
.rllvibe-about p,
.rllvibe-spot p {
  color: var(--rllvibe-brown);
}

.rllvibe-inline-links a {
  text-decoration: underline;
}

@media (max-width: 1020px) {
  .rllvibe-casino-grid,
  .rllvibe-method-grid,
  .rllvibe-top3-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rllvibe-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .rllvibe-burger {
    display: inline-block;
  }

  .rllvibe-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    background: #f6ecd7;
    padding: 0.8rem 1rem 1rem;
    box-shadow: 0 8px 20px rgba(40, 30, 20, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  body.rllvibe-nav-open .rllvibe-nav {
    display: flex;
  }

  .rllvibe-casino-grid,
  .rllvibe-method-grid,
  .rllvibe-about-stats,
  .rllvibe-calc-grid,
  .rllvibe-top3-grid {
    grid-template-columns: 1fr;
  }

  .rllvibe-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .rllvibe-card {
    grid-template-columns: 1fr !important;
  }

  img,
  svg {
    max-width: 100% !important;
    height: auto !important;
  }

  h1 {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
}
