/* 7k562v.casino — Frost/Amber palette — Andada Pro + Scada */
:root {
  --bg: #080b0f;
  --bg-2: #111620;
  --bg-3: #181f29;
  --line: #242d39;
  --line-2: #2f3a49;
  --txt: #e9f0f6;
  --txt-d: #8fa0b0;
  --txt-dd: #5f7488;
  --acc: #8ad4ec;
  --acc-2: #f0c98a;
  --acc-2-d: #c99a5e;
  --hot: #f0c98a;
  --good: #c9ecf7;
  --r: 12px;
  --r-s: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font: 16px/1.62 "Scada", ui-sans-serif, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1000px 580px at 92% -10%, rgba(138,212,236,.1) 0%, transparent 62%),
    radial-gradient(820px 580px at -10% 60%, rgba(240,201,138,.07) 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: "Andada Pro", system-ui, sans-serif; line-height: 1.22; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

a { color: var(--acc); text-decoration: none; }
a:hover { color: var(--acc-2); }

img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.rime-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
section + section { border-top: 1px solid var(--line); }

/* ── TICKER ── */
.rime-ticker {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font-size: .82rem;
  color: var(--txt-d);
  overflow: hidden;
  white-space: nowrap;
}
.rime-ticker__inner {
  display: inline-flex;
  gap: 44px;
  animation: ticker-scroll 28s linear infinite;
}
.rime-ticker__item { display: inline-flex; align-items: center; gap: 7px; }
.rime-ticker__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); flex-shrink: 0; }
.rime-ticker__dot--hot { background: var(--hot); }
.rime-ticker__dot--good { background: var(--good); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATSTRIP ── */
.rime-statstrip {
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.rime-statstrip__inner {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: 1180px; margin: 0 auto; padding: 0 20px;
}
.rime-statstrip__cell {
  text-align: center; padding: 6px 8px; border-right: 1px solid var(--line);
}
.rime-statstrip__cell:last-child { border-right: none; }
.rime-statstrip__val {
  font-family: "Andada Pro", sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--acc);
  display: block;
}
.rime-statstrip__lbl { font-size: .72rem; color: var(--txt-dd); }
@media (max-width: 760px) {
  .rime-statstrip__inner { grid-template-columns: repeat(3, 1fr); }
  .rime-statstrip__cell:nth-child(3) { border-right: none; }
}
@media (max-width: 480px) {
  .rime-statstrip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── HEADER NAV ── */
.rime-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11,15,20,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.rime-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; gap: 16px;
}
.rime-logo {
  font-family: "Andada Pro", system-ui, sans-serif;
  font-size: 1.4rem; font-weight: 700;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-fill-color: transparent;
  white-space: nowrap;
}
.rime-nav { display: flex; gap: 6px; align-items: center; }
.rime-nav a {
  font-size: .82rem; color: var(--txt-d); padding: 5px 10px; border-radius: var(--r-s);
  transition: color .2s, background .2s;
}
.rime-nav a:hover { color: var(--acc-2); background: rgba(138,212,236,.1); }
.rime-nav__cta {
  font-family: "Andada Pro", system-ui, sans-serif;
  font-size: .82rem; font-weight: 600;
  padding: 7px 18px; border-radius: var(--r-s);
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #0a1620 !important; -webkit-text-fill-color: #0a1620 !important;
  transition: opacity .2s, box-shadow .2s;
}
.rime-nav__cta:hover { opacity: .9; box-shadow: 0 4px 18px rgba(138,212,236,.45); }

/* ── HERO ── */
.rime-hero {
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.rime-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(138,212,236,.12); border: 1px solid rgba(138,212,236,.28);
  border-radius: 100px; padding: 5px 14px;
  font-size: .78rem; color: var(--acc-2); font-family: "Scada", sans-serif;
  margin-bottom: 24px; letter-spacing: .04em;
}
.rime-hero__chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); box-shadow: 0 0 8px rgba(138,212,236,.8);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.55; transform:scale(1.35); }
}
.rime-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.18;
  margin-bottom: 20px; max-width: 820px;
}
.rime-hero h1 .acc { color: var(--acc); }
.rime-hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--txt-d); max-width: 680px; margin-bottom: 32px; line-height: 1.65;
}
.rime-hero__kpi {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.rime-kpi {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px 20px;
  display: flex; flex-direction: column; gap: 2px; min-width: 120px;
}
.rime-kpi__val {
  font-family: "Andada Pro", system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--acc-2);
}
.rime-kpi__lbl { font-size: .75rem; color: var(--txt-dd); }
.rime-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta {
  font-family: "Andada Pro", system-ui, sans-serif;
  font-size: 1rem; font-weight: 700;
  padding: 15px 34px; border-radius: var(--r);
  display: inline-block; transition: transform .18s, box-shadow .18s;
  cursor: pointer; border: none; text-align: center;
}
.cta--hot {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #0a1620;
  box-shadow: 0 6px 28px rgba(138,212,236,.55);
}
.cta--hot:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(138,212,236,.75); color: #0a1620; }
.cta--ghost {
  background: transparent; border: 1.5px solid var(--line-2);
  color: var(--txt-d);
}
.cta--ghost:hover { border-color: var(--acc); color: var(--acc-2); transform: translateY(-2px); }

/* ── HERO QUICK ACTIONS ── */
.rime-qab {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px;
  max-width: 760px;
}
.rime-qab__i {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-s);
  padding: 10px 14px; display: flex; flex-direction: column; gap: 3px;
  transition: border-color .2s, transform .2s;
}
.rime-qab__i:hover { border-color: var(--acc); transform: translateY(-2px); }
.rime-qab__k { font-size: .78rem; font-weight: 600; color: var(--txt); }
.rime-qab__v { font-size: .72rem; color: var(--txt-dd); }
@media (max-width: 760px) { .rime-qab { grid-template-columns: repeat(2, 1fr); } }

/* ── HERO SVG MAP ── */
.rime-hero__map {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: min(480px, 42vw); opacity: .22; pointer-events: none;
}
@media (max-width: 900px) { .rime-hero__map { display: none; } }

/* ── SECTION TITLE ── */
.rime-sec-title {
  text-align: center; margin-bottom: 44px;
}
.rime-sec-title h2 { margin-bottom: 10px; }
.rime-sec-title p { color: var(--txt-d); max-width: 620px; margin: 0 auto; font-size: .97rem; }

/* ── WELCOME BOXES ── */
#bonus { background: rgba(138,212,236,.03); }
.rime-bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-bottom: 32px;
}
.rime-wbox {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px; position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.rime-wbox:hover { border-color: var(--acc); box-shadow: 0 6px 28px rgba(138,212,236,.18); }
.rime-wbox__num {
  font-family: "Andada Pro", sans-serif; font-size: .72rem; font-weight: 700;
  color: var(--acc); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 10px;
}
.rime-wbox__amount {
  font-family: "Andada Pro", sans-serif; font-size: 1.55rem; font-weight: 700;
  color: var(--txt); line-height: 1.1; margin-bottom: 6px;
}
.rime-wbox__fs {
  font-size: .9rem; color: var(--acc-2); font-weight: 600; margin-bottom: 12px;
}
.rime-wbox__game { font-size: .82rem; color: var(--txt-dd); }
.rime-wbox__badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(138,212,236,.14); border: 1px solid rgba(138,212,236,.3);
  border-radius: 100px; padding: 3px 10px;
  font-size: .7rem; color: var(--acc); font-weight: 600;
}
.rime-bonus-terms {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 22px;
  font-size: .83rem; color: var(--txt-d);
  display: flex; flex-wrap: wrap; gap: 18px;
}
.rime-bonus-terms span { display: flex; align-items: center; gap: 6px; }
.rime-bonus-terms span::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); flex-shrink: 0;
}

/* ── THREE STEPS ── */
.rime-steps { display: flex; gap: 16px; flex-wrap: wrap; }
.rime-step {
  flex: 1; min-width: 220px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px 22px;
  position: relative; transition: border-color .2s;
}
.rime-step:hover { border-color: rgba(138,212,236,.4); }
.rime-step__n {
  font-family: "Andada Pro", sans-serif; font-size: 2.8rem; font-weight: 700;
  color: rgba(138,212,236,.18); line-height: 1; margin-bottom: 12px;
}
.rime-step h4 { color: var(--txt); margin-bottom: 8px; }
.rime-step p { font-size: .88rem; color: var(--txt-d); }

/* ── SLOTS CATALOG ── */
.rime-slots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px; margin-bottom: 28px;
}
.rime-slot-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); transition: transform .2s, box-shadow .2s;
  position: relative;
}
.rime-slot-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(138,212,236,.22); }
.rime-slot-card .cv { height: 130px; display: flex; align-items: flex-end; padding: 12px; }
.cv-1 { background: linear-gradient(135deg, #001a2a 0%, #8ad4ec 100%) }
.cv-2 { background: linear-gradient(135deg, #001a14 0%, #059669 100%) }
.cv-3 { background: linear-gradient(135deg, #1a0010 0%, #db2777 100%) }
.cv-4 { background: linear-gradient(135deg, #2a1a00 0%, #f0c98a 100%); color:#0a0d0a }
.cv-5 { background: linear-gradient(135deg, #0a001a 0%, #9333ea 100%) }
.cv-6 { background: linear-gradient(135deg, #1a0000 0%, #ef4444 100%) }
.cv-7 { background: linear-gradient(135deg, #001a2a 0%, #f0c98a 100%); color:#041a2a }
.cv-8 { background: linear-gradient(135deg, #2a2a00 0%, #fde68a 100%); color:#0a0a0a }
.cv-9 { background: linear-gradient(135deg, #1a001a 0%, #c026d3 100%) }
.cv-10 { background: linear-gradient(135deg, #001a0a 0%, #4ade80 100%); color:#04120a }
.cv-11 { background: linear-gradient(135deg, #2a0a00 0%, #fb923c 100%) }
.cv-12 { background: linear-gradient(135deg, #0a1a2a 0%, #60a5fa 100%) }
.rime-slot-card .cv-label {
  font-family: "Andada Pro", sans-serif; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  background: rgba(0,0,0,.45); border-radius: 4px; padding: 2px 6px;
}
.rime-slot-card__info {
  background: var(--bg-2); padding: 10px 12px;
}
.rime-slot-card__name {
  font-family: "Andada Pro", sans-serif; font-size: .88rem; font-weight: 600;
  color: var(--txt); margin-bottom: 4px;
}
.rime-slot-card__meta { font-size: .73rem; color: var(--txt-dd); }
.rime-slot-card__rtp {
  font-size: .73rem; color: var(--acc-2); font-weight: 600;
}
.rime-card-btn {
  display: inline-block; margin-top: 8px;
  font-family: "Andada Pro", sans-serif; font-size: .74rem; font-weight: 700;
  color: #0a1620; background: linear-gradient(135deg, var(--acc), var(--acc-2));
  border-radius: 100px; padding: 5px 14px;
}
.rime-live-card__provider { margin-bottom: 6px; }
.rime-providers {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.rime-provider-tag {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 100px; padding: 5px 12px;
  font-size: .76rem; color: var(--txt-d);
  transition: border-color .2s, color .2s;
}
.rime-provider-tag:hover { border-color: var(--acc); color: var(--acc-2); }
.rime-provider-tag--more {
  background: rgba(138,212,236,.1); border-color: rgba(138,212,236,.3); color: var(--acc);
}

/* ── LOYALTY VIP ── */
#loyalty { background: rgba(138,212,236,.03); }
.rime-ladder {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px;
}
.rime-ladder__row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 14px 20px;
  transition: border-color .2s;
}
.rime-ladder__row:hover { border-color: rgba(138,212,236,.35); }
.rime-ladder__row--atlas {
  background: linear-gradient(90deg, rgba(138,212,236,.12) 0%, var(--bg-2) 100%);
  border-color: rgba(138,212,236,.4);
}
.rime-ladder__lvl {
  font-family: "Andada Pro", sans-serif; font-size: .82rem; font-weight: 700;
  color: var(--acc); min-width: 80px;
}
.rime-ladder__cash {
  font-family: "Andada Pro", sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--txt); min-width: 80px;
}
.rime-ladder__from { font-size: .8rem; color: var(--txt-dd); flex: 1; }
.rime-ladder__bar {
  height: 4px; border-radius: 2px; background: rgba(138,212,236,.15);
  flex: 2; position: relative; overflow: hidden;
}
.rime-ladder__bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
}
.rime-lboxes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.rime-lbox {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.rime-lbox:hover { border-color: rgba(138,212,236,.38); box-shadow: 0 4px 20px rgba(138,212,236,.12); }
.rime-lbox__icon {
  font-size: 1.6rem; margin-bottom: 10px; display: block;
  filter: drop-shadow(0 0 8px rgba(138,212,236,.5));
}
.rime-lbox h4 { color: var(--txt); margin-bottom: 7px; }
.rime-lbox p { font-size: .85rem; color: var(--txt-d); line-height: 1.55; }

/* ── TOURNAMENT ── */
.rime-tournament {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 36px; text-align: center;
  position: relative; overflow: hidden;
}
.rime-tournament::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(138,212,236,.18) 0%, transparent 70%);
  pointer-events: none;
}
.rime-tournament__prize {
  font-family: "Andada Pro", sans-serif; font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; color: var(--acc-2); margin-bottom: 8px;
}
.rime-tournament__sub { color: var(--txt-d); font-size: 1rem; margin-bottom: 24px; }
.rime-tournament__stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin-bottom: 28px;
}
.rime-tournament__stat { text-align: center; }
.rime-tournament__stat-val {
  font-family: "Andada Pro", sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--txt);
}
.rime-tournament__stat-lbl { font-size: .78rem; color: var(--txt-dd); }

/* ── LIVE ── */
.rime-live-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px;
}
.rime-live-card {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.rime-live-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(138,212,236,.2); }
.rime-live-card .lv { height: 110px; display: flex; align-items: center; justify-content: center; position: relative; }
.lv-1 { background: linear-gradient(135deg, #001a2a 0%, #8ad4ec 100%) }
.lv-2 { background: linear-gradient(135deg, #2a1a00 0%, #f0c98a 100%); color:#0a0d0a }
.lv-3 { background: linear-gradient(135deg, #001a14 0%, #059669 100%) }
.lv-4 { background: linear-gradient(135deg, #1a0000 0%, #ef4444 100%) }
.lv-5 { background: linear-gradient(135deg, #0a001a 0%, #a78bfa 100%) }
.lv-6 { background: linear-gradient(135deg, #001a2a 0%, #f0c98a 100%); color:#041a2a }
.rime-live-card .lv-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,.5); border-radius: 4px;
  padding: 2px 7px; font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #fff;
}
.rime-live-card .lv-icon { font-size: 2.2rem; opacity: .85; }
.rime-live-card__info {
  background: var(--bg-2); padding: 10px 12px;
}
.rime-live-card__name {
  font-family: "Andada Pro", sans-serif; font-size: .87rem; font-weight: 600;
  color: var(--txt); margin-bottom: 3px;
}
.rime-live-card__provider { font-size: .73rem; color: var(--txt-dd); }

/* ── BRAND OVERVIEW ── */
.rime-brand-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 760px) { .rime-brand-grid { grid-template-columns: 1fr; } }
.rime-brand-block {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px;
  transition: border-color .2s;
}
.rime-brand-block:hover { border-color: rgba(138,212,236,.35); }
.rime-brand-block h3 { color: var(--acc-2); margin-bottom: 12px; font-size: 1.05rem; }
.rime-brand-block p { font-size: .89rem; color: var(--txt-d); line-height: 1.65; }
.rime-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.rime-badge {
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 100px; padding: 6px 14px;
  font-size: .76rem; color: var(--txt-d); display: flex; align-items: center; gap: 6px;
}
.rime-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); flex-shrink: 0;
}

/* ── REVIEWS ── */
.rime-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.rime-review {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px;
  transition: border-color .2s;
}
.rime-review:hover { border-color: rgba(138,212,236,.3); }
.rime-review__stars { color: var(--hot); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.rime-review__text { font-size: .88rem; color: var(--txt-d); line-height: 1.6; margin-bottom: 14px; }
.rime-review__author { display: flex; align-items: center; gap: 10px; }
.rime-review__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  display: flex; align-items: center; justify-content: center;
  font-family: "Andada Pro", sans-serif; font-size: .85rem; font-weight: 700;
  color: #0a1620; flex-shrink: 0;
}
.rime-review__name { font-size: .82rem; font-weight: 600; color: var(--txt); }
.rime-review__date { font-size: .73rem; color: var(--txt-dd); }

/* ── PAYMENTS ── */
.rime-pay-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-bottom: 24px;
}
.rime-pay-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 18px;
  transition: border-color .2s;
}
.rime-pay-card:hover { border-color: rgba(138,212,236,.35); }
.rime-pay-card__icon { font-size: 1.6rem; margin-bottom: 8px; }
.rime-pay-card__name {
  font-family: "Andada Pro", sans-serif; font-size: .95rem; font-weight: 600;
  color: var(--txt); margin-bottom: 4px;
}
.rime-pay-card__time { font-size: .8rem; color: var(--acc-2); font-weight: 600; margin-bottom: 2px; }
.rime-pay-card__note { font-size: .76rem; color: var(--txt-dd); }
.rime-pay-note {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 14px 18px;
  font-size: .83rem; color: var(--txt-d);
}

/* ── PRE-FOOTER CTA ── */
.rime-prefooter {
  background: linear-gradient(135deg, rgba(138,212,236,.12) 0%, rgba(240,201,138,.06) 100%);
  border: 1px solid rgba(138,212,236,.22);
  border-radius: var(--r); padding: 48px 36px; text-align: center;
}
.rime-prefooter h2 { margin-bottom: 14px; }
.rime-prefooter p { color: var(--txt-d); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── FAQ ── */
.rime-faq { display: flex; flex-direction: column; gap: 8px; }
details.rime-faq__item {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-s); overflow: hidden;
  transition: border-color .2s;
}
details.rime-faq__item[open] { border-color: rgba(138,212,236,.38); }
details.rime-faq__item summary {
  padding: 16px 20px; cursor: pointer;
  font-family: "Andada Pro", sans-serif; font-size: .95rem; font-weight: 600; color: var(--txt);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
details.rime-faq__item summary::after {
  content: '+';
  font-size: 1.2rem; color: var(--acc); transition: transform .25s; flex-shrink: 0;
}
details.rime-faq__item[open] summary::after { content: '−'; }
details.rime-faq__item summary::-webkit-details-marker { display: none; }
.rime-faq__body {
  padding: 0 20px 18px; font-size: .88rem; color: var(--txt-d); line-height: 1.65;
}

/* ── AUTHOR NOTE ── */
.rime-author {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 24px;
  font-size: .82rem; color: var(--txt-dd);
  margin-top: 32px;
}

/* ── FOOTER ── */
.rime-footer {
  background: var(--bg-2); border-top: 1px solid var(--line);
  padding: 36px 0 24px;
}
.rime-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 28px;
}
@media (max-width: 720px) { .rime-footer__grid { grid-template-columns: 1fr; } }
.rime-footer__brand p { font-size: .83rem; color: var(--txt-dd); line-height: 1.6; margin-top: 10px; }
.rime-footer__col h4 { color: var(--txt-d); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.rime-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.rime-footer__col ul li a { font-size: .82rem; color: var(--txt-dd); transition: color .2s; }
.rime-footer__col ul li a:hover { color: var(--acc-2); }
.rime-footer__bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.rime-footer__copy { font-size: .77rem; color: var(--txt-dd); }
.rime-footer__legal { font-size: .75rem; color: var(--txt-dd); text-align: right; max-width: 420px; line-height: 1.5; }
.rime-footer__18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--txt-dd); font-size: .72rem; font-weight: 700; color: var(--txt-dd);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  section { padding: 48px 0; }
  .rime-hero { padding: 52px 0 48px; }
  .rime-hero h1 { font-size: 1.65rem; }
  .rime-nav { display: none; }
  .rime-nav__cta { display: none; }
  .rime-bonus-grid { grid-template-columns: 1fr; }
  .rime-steps { flex-direction: column; }
  .rime-prefooter { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .rime-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .rime-ladder__bar { display: none; }
}
