@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* ── SCOPED TO .rc — zero global leakage ── */
.rc { font-family: "Poppins", sans-serif; font-size: 16px; line-height: 1.5; color: #2B2F33; max-width: 860px; margin: 0 auto; }
.rc *, .rc *::before, .rc *::after { box-sizing: border-box; }
.rc img { display: block; margin: 0; }
.rc a { text-decoration: none; color: inherit; cursor: pointer; }
.rc button { font-family: "Poppins", sans-serif; cursor: pointer; border: none; background: transparent; }

/* ── CARD SHELL ── */
.rc-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 40px 0 rgb(239 221 252 / .5);
  overflow: hidden;
  margin-bottom: 20px;
}

/* ── HEADER BAR ── */
.rc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px 20px;
  padding: 15px 20px;
  background: #F9F8FE;
  border-bottom: 1px solid #EBECF7;
}

.rc-head-logo {
  width: 180px;
  height: 110px;
  border-radius: 10px;
  background: #F9F8FE;
  border: 1px solid #EBECF7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.rc-head-logo img {
  max-width: 60% !important; height: auto; object-fit: cover; 
}

.rc-mark {
  position: absolute;
  top: 5px; left: 5px;
  width: 24px; height: 24px;
  border-radius: 5px;
  background: #F7F5FF;
  font-size: 12px; font-weight: 600; color: #1B1C1D;
  display: flex; align-items: center; justify-content: center;
}

.rc-head-meta { flex: 1; }

.rc-casino-name {
  font-size: 22px; font-weight: 700; line-height: 1.2;
  color: #1B1C1D; margin: 0 0 6px;
  text-transform: capitalize;
}

.rc-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }

.rc-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 5px;
  line-height: 18px;
}
.rc-badge-editor { background: rgb(100 102 251 / .1); color: #6466FB; }
.rc-badge-lic    { background: rgb(28 184 126 / .08); color: #1CB87E; }
.rc-badge-new    { background: rgb(255 210 6 / .1); color: #a07800; }

.rc-stars { color: #FFD206; font-size: 14px; letter-spacing: 2px; }
.rc-stars-meta { font-size: 12px; color: #4F597E; margin-left: 6px; }

/* rating circle */
.rc-head-score { text-align: center; flex-shrink: 0; }
.rc-score-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid #1CB87E;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  margin: 0 auto 4px;
}
.rc-score-num {
  font-size: 22px; font-weight: 700; line-height: 1;
  color: #1CB87E;
}
.rc-score-sub { font-size: 10px; color: #4F597E; }
.rc-score-label { font-size: 11px; font-weight: 500; color: #4F597E; text-align: center; }

/* ── VERDICT STRIP ── */
.rc-verdict {
  padding: 12px 20px;
  background: rgb(100 102 251 / .05);
  border-bottom: 1px solid #EBECF7;
  display: flex; gap: 10px; align-items: flex-start;
}
.rc-verdict-icon { color: #6466FB; flex-shrink: 0; margin-top: 2px; }
.rc-verdict-text {
  font-size: 14px; font-weight: 400; line-height: 20px;
  color: #4F597E; margin: 0; font-style: italic;
}
.rc-verdict-text strong { font-weight: 600; color: #1B1C1D; }

/* ── BODY ── */
.rc-body { padding: 20px; }

/* ── SECTION ── */
.rc-section { padding: 20px 0; border-bottom: 1px solid #EBECF7; }
.rc-section:last-child { border-bottom: none; padding-bottom: 0; }

.rc-sec-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.rc-sec-num {
  font-size: 10px; font-weight: 700; color: #6466FB;
  background: rgb(100 102 251 / .08);
  border-radius: 3px; padding: 1px 6px;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 18px;
}
.rc-sec-title {
  font-size: 12px; font-weight: 600; line-height: 18px;
  text-transform: uppercase; letter-spacing: 0.06em; color: #1B1C1D;
}
.rc-sec-line { flex: 1; height: 1px; background: #EBECF7; }

/* ── SCREENSHOTS ── */
.rc-screens { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }

.rc-screen-frame {
  aspect-ratio: 16/10;
  border: 1px solid #EBECF7;
  border-radius: 7px;
  overflow: hidden;
  background: #F9F8FE;
  cursor: zoom-in;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rc-screen-frame[data-src]:hover {
  border-color: #6466FB;
  box-shadow: 0 2px 12px 0 rgb(100 102 251 / .15);
}
.rc-screen-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rc-screen-hint {
  position: absolute; bottom: 6px; right: 7px;
  background: rgb(27 28 29 / .6);
  color: #fff; font-size: 10px; font-family: "Poppins", sans-serif;
  padding: 2px 6px; border-radius: 4px;
  opacity: 0; transition: opacity 0.18s; pointer-events: none;
}
.rc-screen-frame:hover .rc-screen-hint { opacity: 1; }

.rc-screen-placeholder {
  border-style: dashed;
  display: flex; align-items: center; justify-content: center;
}
.rc-ph-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; padding: 10px; text-align: center;
}
.rc-ph-label { font-size: 11px; font-weight: 600; color: #4F597E; }
.rc-ph-hint  { font-size: 10px; color: #8A7F99; }

.rc-screen-cap { font-size: 11px; font-weight: 500; color: #8A7F99; margin-top: 5px; text-align: center; }
.rc-screens-note { font-size: 11px; color: #8A7F99; margin-top: 8px; }

/* ── LIGHTBOX ── */
.rc-lightbox {
  display: none;
  position: absolute; inset: 0; z-index: 100;
  background: rgb(27 28 29 / .88);
  align-items: center; justify-content: center;
  cursor: zoom-out;
  min-height: 200px;
}
.rc-lightbox.open { display: flex; }
.rc-lb-img { max-width: 96%; max-height: 94%; border-radius: 7px; object-fit: contain; display: block; pointer-events: none; }
.rc-lb-close {
  position: absolute; top: 10px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgb(255 255 255 / .12);
  border: 1px solid rgb(255 255 255 / .25);
  color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.18s;
}
.rc-lb-close:hover { background: rgb(255 255 255 / .25); }

/* ── PROS / CONS ── */
.rc-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.rc-pc-box { border-radius: 10px; padding: 14px 15px; }
.rc-pros { background: rgb(28 184 126 / .05); border: 1px solid rgb(28 184 126 / .2); }
.rc-cons { background: rgb(233 62 58 / .05); border: 1px solid rgb(233 62 58 / .2); }

.rc-pc-head {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.rc-pc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.rc-pros .rc-pc-dot { background: #1CB87E; }
.rc-cons .rc-pc-dot { background: #E93E3A; }
.rc-pc-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.rc-pros .rc-pc-lbl { color: #1CB87E; }
.rc-cons .rc-pc-lbl { color: #E93E3A; }

.rc-pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.rc-pc-item { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; line-height: 20px; }
.rc-pros .rc-pc-item { color: #145C3A; }
.rc-cons .rc-pc-item { color: #7A1F1F; }
.rc-pc-icon { flex-shrink: 0; font-size: 11px; margin-top: 3px; font-style: normal; font-weight: 700; }
.rc-pros .rc-pc-icon { color: #1CB87E; }
.rc-cons .rc-pc-icon { color: #E93E3A; }

/* ── KEY METRICS ── */
.rc-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.rc-metric {
  background: #F9F8FE;
  border: 1px solid #EBECF7;
  border-radius: 10px;
  padding: 12px 10px; text-align: center;
}
.rc-metric-lbl { font-size: 11px; font-weight: 500; color: #4F597E; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 5px; }
.rc-metric-val { font-size: 16px; font-weight: 700; color: #1B1C1D; line-height: 1.1; margin: 0; }
.rc-metric-sub { font-size: 10px; color: #8A7F99; margin: 3px 0 0; }

/* ── RATING BARS ── */
.rc-bars { display: flex; flex-direction: column; gap: 9px; }
.rc-bar-row { display: grid; grid-template-columns: 160px 1fr 30px; align-items: center; gap: 10px; }
.rc-bar-lbl { font-size: 12px; font-weight: 500; color: #4F597E; }
.rc-bar-track { height: 6px; background: #F7F5FF; border-radius: 20px; overflow: hidden; }
.rc-bar-fill  { height: 6px; border-radius: 20px; width: 0; transition: width 0.9s cubic-bezier(0.4,0,0.2,1); }
.rc-bar-score { font-size: 12px; font-weight: 600; color: #1B1C1D; text-align: right; }
.rc-bar-perfect .rc-bar-fill { background: #1CB87E; }
.rc-bar-normal  .rc-bar-fill { background: #FFD206; }
.rc-bar-bad     .rc-bar-fill { background: #E93E3A; }
.rc-bar-perfect .rc-bar-score { color: #1CB87E; }
.rc-bar-normal  .rc-bar-score { color: #a07800; }
.rc-bar-bad     .rc-bar-score { color: #E93E3A; }

/* ── BONUS ── */
.rc-bonus-hero {
  background: rgb(100 102 251 / .05);
  border: 1px solid rgb(100 102 251 / .15);
  border-radius: 10px;
  padding: 15px 18px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.rc-bonus-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #EEF; border: 1px solid rgb(100 102 251 / .3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.rc-bonus-title { font-size: 18px; font-weight: 700; color: #1B1C1D; margin: 0 0 2px; text-transform: uppercase; }
.rc-bonus-sub   { font-size: 12px; color: #4F597E; margin: 0; }

.rc-bonus-terms { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.rc-term {
  background: #F9F8FE; border: 1px solid #EBECF7;
  border-radius: 7px; padding: 9px 12px;
}
.rc-term-lbl { font-size: 10px; font-weight: 500; color: #4F597E; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 3px; }
.rc-term-val { font-size: 14px; font-weight: 700; color: #1B1C1D; margin: 0; }

.rc-bonus-note {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgb(28 184 126 / .05);
  border-left: 2px solid #1CB87E;
  border-radius: 0 7px 7px 0;
  font-size: 12px; color: #145C3A; line-height: 18px;
}

/* ── PAYMENTS ── */
.rc-pay-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.rc-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: #F9F8FE; border: 1px solid #EBECF7;
  border-radius: 5px;
  font-size: 12px; font-weight: 500; color: #4F597E;
  transition: border-color 0.15s;
}
.rc-chip-ok { background: rgb(28 184 126 / .06); border-color: rgb(28 184 126 / .3); color: #1CB87E; }
.rc-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.rc-pay-note { font-size: 11px; color: #8A7F99; margin: 6px 0 0; }

/* ── LICENSE ── */
.rc-lic-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.rc-lic-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgb(100 102 251 / .07); border: 1px solid rgb(100 102 251 / .2);
  border-radius: 5px; font-size: 12px; font-weight: 600; color: #6466FB;
}
.rc-lic-check { color: #1CB87E; }
.rc-lic-info  { font-size: 12px; font-weight: 400; color: #8A7F99; }
.rc-lic-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ── REVIEW ── */
.rc-review {
  background: #F9F8FE; border: 1px solid #EBECF7;
  border-radius: 10px; padding: 15px 18px;
}
.rc-reviewer-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgb(100 102 251 / .1); border: 1px solid rgb(100 102 251 / .2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #6466FB; flex-shrink: 0;
}
.rc-rv-name { font-size: 14px; font-weight: 700; color: #1B1C1D; margin: 0; }
.rc-rv-meta { font-size: 11px; color: #8A7F99; margin: 2px 0 0; }
.rc-rv-stars { margin-left: auto; color: #FFD206; font-size: 13px; }
.rc-review-text {
  font-size: 13px; color: #4F597E; font-style: italic;
  line-height: 20px; margin: 0;
  padding-left: 12px; border-left: 2px solid #EBECF7;
}

/* ── CTA ── */
.rc-cta {
  padding: 15px 20px;
  background: #F9F8FE;
  border-top: 1px solid #EBECF7;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.rc-cta-lbl  { font-size: 11px; font-weight: 600; color: #4F597E; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 4px; }
.rc-cta-val  { font-size: 20px; font-weight: 700; color: #363238; text-transform: uppercase; margin: 0; }
.rc-cta-terms { font-size: 11px; color: #8A7F99; margin: 3px 0 0; }

.rc-cta-btns { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.rc-btn-sec {
  height: 42px; padding: 0 18px;
  border: 1px solid #EBECF7; border-radius: 7px;
  color: #1B1C1D; background: #fff;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.rc-btn-sec:hover { background: #F9F8FE; border-color: #6466FB; color: #6466FB; }

.rc-btn-prim {
  height: 42px; padding: 0 22px;
  border: none; border-radius: 7px;
  background: #1CB87E; color: #fff;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  transition: background 0.2s, transform 0.12s;
  white-space: nowrap;
}
.rc-btn-prim:hover  { background: #34D79A; }
.rc-btn-prim:active { transform: scale(0.98); }

/* context tag */
.rc-context {
  font-size: 14px; font-weight: 500; color: #8A7F99;
  margin-bottom: 15px;
  display: flex; align-items: center; gap: 7px;
}
.rc-context::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px; border-radius: 50%; background: #8A7F99;
}