/* ── KEYFRAMES ── */
@keyframes rcb-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes rcb-fadein {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WRAPPER ── */
.rcb-wrap {
  background: linear-gradient(135deg, #0A1628 0%, #0F2A4A 100%);
  border-radius: 16px;
  padding: 36px 28px 32px;
  width: 100%;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #fff;
  animation: rcb-fadein 0.6s ease both;
  border: 1px solid rgba(201,146,42,0.2);
  position: relative;
  overflow: hidden;
}

/* subtle dot grid background */
.rcb-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,146,42,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.rcb-wrap > * { position: relative; z-index: 1; }

/* ── BADGE ── */
.rcb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,146,42,0.5);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E8B84B;
  margin-bottom: 18px;
}

/* ── PULSING DOT ── */
.rcb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  display: inline-block;
  flex-shrink: 0;
  animation: rcb-blink 2s infinite;
}

/* ── TITLE ── */
.rcb-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 10px;
  padding: 0;
  border: none;
}
.rcb-title-gold { color: #E8B84B; }

/* ── SUBTITLE ── */
.rcb-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
}

/* ── CARDS ROW ── */
.rcb-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* ── SINGLE CARD ── */
.rcb-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.rcb-card:hover {
  border-color: rgba(201,146,42,0.45);
  transform: translateY(-3px);
}

/* card top row: flag + name */
.rcb-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rcb-flag {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}
.rcb-card-country {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.rcb-card-tag {
  font-size: 10px;
  color: #E8B84B;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* feature list */
.rcb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rcb-list li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.rcb-list li:last-child { border-bottom: none; }
.rcb-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B84B;
  font-size: 11px;
}
.rcb-list li strong { color: #fff; font-weight: 600; }

/* ── STATS STRIP ── */
.rcb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.rcb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.rcb-stat:last-child { border-right: none; }
.rcb-stat-n {
  font-size: 24px;
  font-weight: 700;
  color: #E8B84B;
  line-height: 1;
}
.rcb-stat-l {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
  text-align: center;
  line-height: 1.3;
}

/* ── CTA ROW ── */
.rcb-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── BUTTON ── */
.rcb-btn {
  display: inline-block;
  background: linear-gradient(90deg, #C9922A, #E8B84B);
  color: #0A1628 !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(201,146,42,0.4);
  letter-spacing: 0.3px;
}
.rcb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,146,42,0.6);
}

/* ── LIVE INDICATOR ── */
.rcb-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .rcb-wrap { padding: 24px 16px 22px; border-radius: 10px; }
  .rcb-cards { grid-template-columns: 1fr; gap: 12px; }
  .rcb-stats { grid-template-columns: repeat(2, 1fr); }
  .rcb-stat:nth-child(2) { border-right: none; }
  .rcb-title { font-size: 22px; }
  .rcb-cta-wrap { flex-direction: column; gap: 10px; }
}