@font-face {
  font-family: "Nunito Sans";
  src: url("public/assets/fonts/nunito-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("public/assets/fonts/teko-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --rb-bg: #04160b;
  --rb-bg-soft: #0b2715;
  --rb-bg-card: #102f1a;
  --rb-bg-card-light: #173f24;
  --rb-text: #ecf6ee;
  --rb-muted: #b7c9bb;
  --rb-accent: #4adf45;
  --rb-accent-dark: #1ca82a;
  --rb-gold: #f5b400;
  --rb-border: rgba(255, 255, 255, 0.13);
  --rb-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
  --rb-radius: 18px;
  --rb-sidebar-w: 280px;
  --rb-gap: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  background:
    radial-gradient(circle at 85% 10%, rgba(43, 128, 53, 0.28) 0%, rgba(4, 22, 11, 0) 30%),
    radial-gradient(circle at 10% 20%, rgba(64, 149, 74, 0.18) 0%, rgba(4, 22, 11, 0) 36%),
    linear-gradient(180deg, #04160b 0%, #062111 48%, #04150b 100%);
  color: var(--rb-text);
  line-height: 1.62;
  overflow-x: hidden;
}

body.rb-has-cookie {
  padding-bottom: 98px;
}

a {
  color: inherit;
}

.rb-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rb-sidebar-w);
  background: linear-gradient(180deg, #072312 0%, #05170d 100%);
  border-right: 1px solid var(--rb-border);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

.rb-logo-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.rb-logo {
  width: 178px;
  height: auto;
  display: block;
}

.rb-sidebar-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.rb-btn,
.rb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.rb-btn {
  background: linear-gradient(180deg, #f9c223 0%, #f2a600 100%);
  color: #11210f;
  border: 1px solid rgba(255, 215, 124, 0.65);
  padding: 12px 18px;
}

.rb-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--rb-text);
  padding: 12px 18px;
}

.rb-btn:hover,
.rb-btn-outline:hover,
.rb-btn:focus-visible,
.rb-btn-outline:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.rb-sidebar-nav {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius);
  padding: 10px;
  display: grid;
  gap: 6px;
}

.rb-sidebar-link {
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--rb-muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rb-sidebar-link:hover,
.rb-sidebar-link:focus-visible {
  color: var(--rb-text);
  background: rgba(74, 223, 69, 0.15);
}

.rb-sidebar-disclaimer {
  margin: auto 4px 0;
  font-size: 0.82rem;
  color: #94a997;
}

.rb-main {
  margin-left: var(--rb-sidebar-w);
  padding: 18px 22px 30px;
}

.rb-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.rb-mobile-top {
  display: none;
}

.rb-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--rb-shadow);
  margin: 0 0 20px;
}

.rb-hero-picture,
.rb-hero-image {
  width: 100%;
  height: 100%;
  display: block;
}

.rb-hero-image {
  object-fit: cover;
}

.rb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 16, 10, 0.85) 0%, rgba(5, 16, 10, 0.35) 58%, rgba(5, 16, 10, 0.35) 100%);
}

.rb-hero-card {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(88%, 620px);
  background: linear-gradient(155deg, rgba(9, 29, 18, 0.94) 0%, rgba(12, 39, 22, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: clamp(16px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(2px);
}

.rb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #97d19a;
}

.rb-eyebrow::before,
.rb-eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(151, 209, 154, 0.6);
}

.rb-hero h1 {
  margin: 0 0 10px;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.rb-hero p {
  margin: 0;
  max-width: 52ch;
}

.rb-hero-cta {
  margin-top: 16px;
  min-width: 230px;
  min-height: 50px;
  font-size: 1.02rem;
}

.rb-card {
  background: linear-gradient(180deg, rgba(13, 42, 24, 0.92) 0%, rgba(9, 31, 18, 0.92) 100%);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius);
  padding: clamp(16px, 2.6vw, 24px);
  box-shadow: var(--rb-shadow);
  margin: 20px 0;
}

.rb-card h2 {
  margin: 0 0 12px;
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 4.3vw, 2.6rem);
  letter-spacing: 0.015em;
  line-height: 1;
}

.rb-card h3 {
  margin: 16px 0 8px;
  font-size: 1.16rem;
}

.rb-card p {
  margin: 0 0 12px;
}

.rb-accordion {
  margin-top: 20px;
}

.rb-accordion-toggle {
  width: 100%;
  border: 1px solid rgba(74, 223, 69, 0.38);
  background: rgba(74, 223, 69, 0.12);
  border-radius: 14px;
  color: var(--rb-text);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  cursor: pointer;
}

.rb-accordion-panel {
  margin-top: 12px;
  border: 1px solid var(--rb-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 14px;
}

.rb-quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rb-quick-links a {
  display: inline-flex;
  text-decoration: none;
  color: #d5ead7;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.rb-quick-links a:hover,
.rb-quick-links a:focus-visible {
  background: rgba(74, 223, 69, 0.18);
}

.rb-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}

.rb-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  table-layout: fixed;
  font-size: 0.95rem;
  line-height: 1.35;
  background: rgba(4, 18, 10, 0.56);
}

.rb-table th,
.rb-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.rb-table th {
  width: 36%;
  color: #d6e8d8;
  font-weight: 700;
}

.rb-table a {
  color: #8ff68b;
}

.rb-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rb-pros,
.rb-cons {
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.rb-pros h3,
.rb-cons h3 {
  margin-top: 0;
}

.rb-pros ul,
.rb-cons ul,
.rb-feature-list,
.rb-guide-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.rb-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin: 20px 0;
  min-height: 230px;
  box-shadow: var(--rb-shadow);
  border: 1px solid var(--rb-border);
}

.rb-cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 10, 0.9) 0%, rgba(5, 18, 10, 0.66) 48%, rgba(5, 18, 10, 0.5) 100%);
}

.rb-cta-picture,
.rb-cta-image {
  width: 100%;
  height: 100%;
  display: block;
}

.rb-cta-image {
  object-fit: cover;
}

.rb-cta-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 32px);
  width: min(92%, 700px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(155deg, rgba(9, 29, 18, 0.92) 0%, rgba(12, 39, 22, 0.86) 100%);
}

.rb-cta-content h3 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 0.95;
}

.rb-cta-content p {
  margin: 0;
}

.rb-cta-btn {
  min-width: 220px;
  min-height: 50px;
  font-size: 1.02rem;
}

.rb-slots-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.rb-slot-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #102817;
}

.rb-slot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rb-slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: linear-gradient(180deg, rgba(4, 13, 8, 0.18) 0%, rgba(4, 13, 8, 0.68) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rb-slot-card:hover .rb-slot-overlay,
.rb-slot-card:focus-within .rb-slot-overlay {
  opacity: 1;
}

.rb-slot-btn {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 999px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.rb-slot-btn::before {
  content: "▶";
  font-size: 1.06rem;
  line-height: 1;
  color: #11210f;
  margin-left: 2px;
}

.rb-split-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.rb-split-tables .rb-table {
  font-size: 0.9rem;
}

.rb-split-tables .rb-table th,
.rb-split-tables .rb-table td {
  padding: 8px 10px;
}

.rb-auth-wrap {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.rb-auth-figure {
  margin: 0;
  width: min(100%, 540px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 8px;
}

.rb-auth-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.rb-auth-figure figcaption {
  color: var(--rb-muted);
  font-size: 0.93rem;
  margin-top: 8px;
  text-align: center;
}

.rb-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.rb-calc-field {
  display: grid;
  gap: 6px;
}

.rb-calc-field span {
  font-weight: 700;
  color: #d2e8d4;
}

.rb-calc-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 13, 7, 0.86);
  color: var(--rb-text);
  padding: 10px 11px;
  font-size: 1rem;
}

.rb-card .rb-calc-result {
  margin: clamp(18px, 2.6vw, 24px) 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(74, 223, 69, 0.12);
  border: 1px solid rgba(74, 223, 69, 0.4);
  color: #dff8e0;
  line-height: 1.35;
}

.rb-calc-value {
  font-size: 1.35rem;
  font-weight: 800;
}

.rb-reviews {
  margin-top: 14px;
}

.rb-reviews-shell {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 8px;
}

.rb-reviews-arrow {
  width: 28px;
  height: 62px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  color: var(--rb-text);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.rb-reviews-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.rb-reviews-track {
  display: flex;
  transition: transform 0.32s ease;
  will-change: transform;
}

.rb-review {
  min-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow-wrap: anywhere;
}

.rb-review-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.rb-review-name {
  font-weight: 700;
}

.rb-review-rate {
  color: #ffd66a;
  font-weight: 700;
}

.rb-review-date {
  color: var(--rb-muted);
  font-size: 0.9rem;
}

.rb-faq {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.rb-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.rb-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 16px;
  font-weight: 700;
}

.rb-faq-item summary::-webkit-details-marker {
  display: none;
}

.rb-faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: #d6e7d8;
}

.rb-footer {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid var(--rb-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.rb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
}

.rb-footer-links a {
  color: #d4ead6;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 234, 214, 0.3);
}

.rb-footer p {
  margin: 8px 0;
  color: #c2d5c5;
}

.rb-cookie {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 300;
  border-radius: 14px;
  background: rgba(2, 9, 5, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rb-cookie[hidden] {
  display: none;
}

.rb-cookie p {
  margin: 0;
  max-width: 78ch;
  color: #d7e8d9;
}

.rb-cookie-btn {
  min-width: 160px;
  min-height: 44px;
}

@media (max-width: 1024px) {
  .rb-sidebar {
    position: static;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--rb-border);
    padding: 10px;
  }

  .rb-logo {
    width: 118px;
  }

  .rb-sidebar-nav,
  .rb-sidebar-disclaimer {
    display: none;
  }

  .rb-sidebar-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(220px, 100%);
    gap: 8px;
    min-width: 0;
  }

  .rb-sidebar-actions .rb-btn,
  .rb-sidebar-actions .rb-btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 8px;
    font-size: 0.84rem;
  }

  .rb-main {
    margin-left: 0;
    padding: 14px;
  }

  .rb-mobile-top {
    display: none;
  }

  .rb-hero {
    min-height: 520px;
  }

  .rb-eyebrow {
    justify-content: center;
  }

  .rb-calc-grid,
  .rb-split-tables,
  .rb-pros-cons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .rb-sidebar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 14px 16px;
  }

  .rb-logo-link {
    width: 100%;
    justify-content: center;
  }

  .rb-logo {
    width: clamp(152px, 44vw, 196px);
  }

  .rb-sidebar-actions {
    width: min(360px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 6px;
    min-width: 0;
    border-radius: 16px;
    border: 1px solid var(--rb-border);
    background: rgba(7, 32, 17, 0.72);
  }

  .rb-sidebar-actions .rb-btn,
  .rb-sidebar-actions .rb-btn-outline {
    min-height: 50px;
    padding: 0 10px;
    font-size: clamp(0.94rem, 2.7vw, 1rem);
    line-height: 1;
    white-space: nowrap;
    border-radius: 14px;
  }

  .rb-calc-grid,
  .rb-split-tables,
  .rb-pros-cons {
    grid-template-columns: 1fr;
  }

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

  .rb-hero-cta,
  .rb-cta-btn {
    min-width: 196px;
    width: min(86%, 240px);
  }

  .rb-slot-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .rb-cta-banner {
    min-height: 420px;
  }

  .rb-cta-content {
    left: 12px;
    right: 12px;
    top: 12px;
    bottom: 12px;
    transform: none;
    width: auto;
    padding: 14px 14px 16px;
    gap: 10px;
    justify-content: space-between;
  }

  .rb-cta-content h3 {
    font-size: clamp(1.75rem, 9.2vw, 2.2rem);
    line-height: 0.98;
  }

  .rb-cta-content p {
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    line-height: 1.4;
  }

  .rb-cta-btn {
    width: min(100%, 300px);
    min-height: 50px;
  }

  .rb-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .rb-table th,
  .rb-table td {
    padding: 8px 10px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .rb-table th {
    width: 40%;
  }

  .rb-reviews-shell {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 6px;
  }

  body.rb-has-cookie {
    padding-bottom: 132px;
  }

  .rb-cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .rb-cookie-btn {
    width: 100%;
  }
}
