/* ═════════════════════════════════════════════════════════════
   NORULESPVP · ROLETA · Wheel of Fortune
   ═════════════════════════════════════════════════════════════ */

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

.rol-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  position: relative;
  z-index: 1;
}

.rol-intro {
  text-align: center;
  margin-bottom: 36px;
}
.rol-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(253,18,39,0.10);
  border: 1px solid rgba(253,18,39,0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ff6273;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rol-title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #fff 55%, #ffd2d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 28px rgba(0,0,0,0.6);
}
.rol-title em {
  display: inline-block;
  font-style: normal;
  background: linear-gradient(180deg, #ff8a96 0%, var(--red) 60%, #9d0d1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 32px rgba(253,18,39,0.55));
}
.rol-sub {
  color: #98a8b3;
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.rol-sub b { color: #fff; }

/* ─── Wheel stage ─── */
.rol-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 30px 0 60px;
  position: relative;
}

/* glowing aura behind the wheels */
.rol-stage::before {
  content: '';
  position: absolute;
  width: 1100px; height: 480px;
  max-width: 100vw;
  top: 80px; left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse, rgba(253,18,39,0.28) 0%, rgba(253,18,39,0.10) 35%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  animation: rolGlowPulse 4s ease-in-out infinite;
}
@keyframes rolGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.04); }
}

/* Row of 3 wheel cards */
.rol-wheels-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Individual wheel card (header + wheel + description + pick button) */
.rol-wheel-card {
  flex: 0 0 320px;
  max-width: 92vw;
  background: linear-gradient(180deg, rgba(13,20,23,0.5) 0%, rgba(6,7,10,0.4) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s, opacity 0.25s;
}
.rol-wheel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(253,18,39,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.rol-wheel-card { position: relative; overflow: hidden; }

/* Animated gradient border around each card */
.rol-wheel-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.rol-wheel-card:hover::before { opacity: 1; }
.wheel-promo::before  { background: linear-gradient(135deg, #FFC93C, #FD1227, #FFC93C); background-size: 200% 200%; animation: rolBorderShift 3s linear infinite; }
.wheel-armas::before  { background: linear-gradient(135deg, #FD1227, #ff6273, #FD1227); background-size: 200% 200%; animation: rolBorderShift 3s linear infinite; }
.wheel-pontos::before { background: linear-gradient(135deg, #60D4FF, #9DBCCC, #60D4FF); background-size: 200% 200%; animation: rolBorderShift 3s linear infinite; }
@keyframes rolBorderShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

/* Spinning wheel card: highlighted, dramatic glow */
.rol-wheel-card.is-spinning {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(255,201,60,0.6),
    0 0 64px rgba(255,201,60,0.45),
    0 0 80px rgba(253,18,39,0.4),
    0 18px 50px rgba(0,0,0,0.7);
  z-index: 2;
}
.rol-wheel-card.is-spinning::before { opacity: 1 !important; }

/* Other (locked) wheels during spin or cooldown */
.rol-wheel-card.is-locked {
  filter: grayscale(0.65) brightness(0.55);
  pointer-events: none;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.rol-wheel-card.is-locked .rol-card-spin {
  background: rgba(255,255,255,0.04) !important;
  color: #5a6772 !important;
  border-color: var(--border) !important;
}

.rol-wheel-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rol-wheel-icon {
  font-size: 24px;
  line-height: 1;
}
.rol-wheel-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
}

.rol-wheel-wrap {
  position: relative;
  width: 270px; height: 270px;
  max-width: 80vw;
  max-height: 80vw;
  z-index: 1;
}

.rol-wheel-desc {
  font-size: 11.5px;
  color: #98a8b3;
  text-align: center;
  letter-spacing: 0.04em;
  min-height: 16px;
  padding: 0 6px;
}

/* Per-card SPIN button (replaces the old global one + select pattern) */
.rol-card-spin {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  border: 0;
  color: #fff;
  font-family: inherit;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.22em;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255,201,60,0.4),
    0 8px 24px rgba(253,18,39,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 2;
}
.rol-card-spin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.rol-card-spin:hover:not(:disabled)::before { transform: translateX(100%); }
.rol-card-spin:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,201,60,0.7),
    0 12px 32px rgba(253,18,39,0.65),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}
.rol-card-spin:active:not(:disabled) { transform: translateY(0); }
.rol-card-spin:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: linear-gradient(135deg, #3a4250 0%, #2a3140 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Per-wheel button color hint */
.wheel-armas .rol-card-spin  { background: linear-gradient(135deg, #FD1227 0%, #9d0d1b 100%); }
.wheel-pontos .rol-card-spin { background: linear-gradient(135deg, #60D4FF 0%, #2a8bb8 100%); box-shadow: 0 0 0 1px rgba(96,212,255,0.4), 0 8px 24px rgba(96,212,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2); }
.wheel-pontos .rol-card-spin:hover:not(:disabled) { box-shadow: 0 0 0 1px rgba(96,212,255,0.7), 0 12px 32px rgba(96,212,255,0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
.wheel-promo .rol-card-spin  { background: linear-gradient(135deg, #FFC93C 0%, #D9A51E 100%); color: #0a0e12; box-shadow: 0 0 0 1px rgba(255,201,60,0.6), 0 8px 24px rgba(255,201,60,0.45), inset 0 1px 0 rgba(255,255,255,0.3); }
.wheel-promo .rol-card-spin:hover:not(:disabled) { box-shadow: 0 0 0 1px rgba(255,201,60,0.9), 0 12px 32px rgba(255,201,60,0.65), inset 0 1px 0 rgba(255,255,255,0.3); }

.rol-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

/* Outer rim with golden bezel + red glow */
.rol-wheel {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #14181f 0%, #0a0e12 70%);
  padding: 8px;
  box-sizing: border-box;
  box-shadow:
    0 0 0 2px rgba(255,201,60,0.30),
    0 0 0 4px rgba(0,0,0,0.6),
    0 0 0 6px rgba(253,18,39,0.55),
    0 0 0 8px rgba(0,0,0,0.4),
    0 0 50px rgba(253,18,39,0.45),
    0 14px 40px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(0,0,0,0.5);
}
.rol-wheel::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255,201,60,0.35);
  z-index: 3;
}
.rol-wheel::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
}
.rol-wheel-inner {
  position: absolute; inset: 8px;
  border-radius: 50%;
  transform: rotate(0deg);
  transition: transform 6.4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  will-change: transform;
}

/* Hub centre */
.rol-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1a1f2a 0%, #0a0e12 70%);
  border: 2px solid var(--red);
  box-shadow:
    0 0 0 1px #FFC93C,
    0 0 20px rgba(253,18,39,0.7),
    inset 0 0 12px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: rolHubPulse 3s ease-in-out infinite;
}
@keyframes rolHubPulse {
  0%, 100% { box-shadow: 0 0 0 1px #FFC93C, 0 0 20px rgba(253,18,39,0.7), inset 0 0 12px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08); }
  50%      { box-shadow: 0 0 0 1px #FFC93C, 0 0 32px rgba(253,18,39,1),   inset 0 0 12px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08); }
}
.rol-hub img {
  width: 70%; height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(253,18,39,0.6));
}

/* ─── Spin button ─── */
.rol-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rol-spin-btn {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  border: 0;
  color: #fff;
  font-family: inherit;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.22em;
  padding: 20px 64px;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,201,60,0.5),
    0 14px 40px rgba(253,18,39,0.55),
    inset 0 2px 0 rgba(255,255,255,0.18),
    inset 0 -2px 0 rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  text-transform: uppercase;
  overflow: hidden;
}
.rol-spin-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.rol-spin-btn:hover:not(:disabled)::before {
  transform: translateX(100%);
}
.rol-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,201,60,0.7),
    0 18px 56px rgba(253,18,39,0.7),
    inset 0 2px 0 rgba(255,255,255,0.18),
    inset 0 -2px 0 rgba(0,0,0,0.25);
}
.rol-spin-btn:active:not(:disabled) {
  transform: translateY(0);
}
.rol-spin-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: linear-gradient(135deg, #3a4250 0%, #2a3140 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 2px 0 rgba(255,255,255,0.05);
}
.rol-status {
  color: #98a8b3;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-height: 18px;
  text-align: center;
}
.rol-status b { color: var(--gold); }

/* ─── History ─── */
.rol-history-section {
  margin-top: 72px;
}
.rol-h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #fff;
}
.rol-history {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.rol-history-item {
  background: rgba(13,20,23,0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
}
.rol-history-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #1a1f2a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.rol-history-text {
  flex: 1;
  min-width: 0;
}
.rol-history-name {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rol-history-prize {
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.rol-history-prize.miss { color: #5a6772; }
.rol-history-when {
  font-size: 10.5px;
  color: #5a6772;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rol-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #5a6772;
  padding: 40px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Modals ─── */
.rol-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rol-modal[hidden] { display: none; }
.rol-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.rol-modal-panel {
  position: relative;
  background: linear-gradient(180deg, #11141c 0%, #0a0e12 100%);
  border: 1px solid rgba(253,18,39,0.4);
  border-radius: 16px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 60px rgba(253,18,39,0.25);
  overflow: hidden;
}
.rol-modal-small { max-width: 400px; }
.rol-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #98a8b3;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.rol-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.rol-modal-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 14px;
  animation: rol-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes rol-pop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

.rol-modal-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 6px;
}
.rol-modal-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.rol-modal-desc {
  color: #98a8b3;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.rol-promo-box {
  background: rgba(253,18,39,0.08);
  border: 1.5px dashed rgba(253,18,39,0.5);
  border-radius: 12px;
  padding: 16px 14px 14px;
  margin-bottom: 20px;
}
.rol-promo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #98a8b3;
  margin-bottom: 6px;
}
.rol-promo-code {
  font-family: Consolas, 'Courier New', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  user-select: all;
}
.rol-promo-meta {
  font-size: 11px;
  color: #5a6772;
  margin-bottom: 10px;
}
.rol-promo-copy {
  background: var(--gold);
  color: #0a0e12;
  border: 0;
  padding: 8px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.rol-promo-copy:hover { background: #ffd96b; transform: translateY(-1px); }
.rol-promo-copy.copied { background: #4ade80; }

.rol-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.rol-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.rol-btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(253,18,39,0.4);
}
.rol-btn-primary:hover { transform: translateY(-2px); }
.rol-btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #98a8b3;
}
.rol-btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Confetti (CSS-only, on prize win) */
.rol-confetti {
  position: absolute;
  top: 0; left: 50%;
  pointer-events: none;
  width: 100%; height: 100%;
}
.rol-confetti span {
  position: absolute;
  width: 8px; height: 14px;
  border-radius: 2px;
  opacity: 0;
}
.rol-modal[data-prize="true"] .rol-confetti span { animation: rol-fall 1.6s ease-out forwards; }
@keyframes rol-fall {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(380px) rotate(720deg); opacity: 0; }
}

.rol-history-wheel {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  background: rgba(255,255,255,0.06);
  color: #c4ccd2;
  vertical-align: middle;
}
.rol-history-wheel[data-w="armas"]  { background: rgba(253,18,39,0.18); color: #ff8a96; }
.rol-history-wheel[data-w="pontos"] { background: rgba(96,212,255,0.15); color: #8ad6f5; }
.rol-history-wheel[data-w="promo"]  { background: rgba(255,201,60,0.16); color: #FFD66B; }

@media (max-width: 1100px) {
  .rol-wheel-card { flex: 0 0 280px; }
  .rol-wheel-wrap { width: 240px; height: 240px; }
}
@media (max-width: 720px) {
  .rol-wheels-row { gap: 16px; }
  .rol-wheel-card { flex: 0 0 88vw; padding: 14px; }
  .rol-wheel-wrap { width: 76vw; height: 76vw; }
  .rol-hub { width: 56px; height: 56px; }
  .rol-spin-btn { padding: 16px 40px; font-size: 14px; }
  .rol-modal-title { font-size: 22px; }
  .rol-promo-code { font-size: 18px; }
}

/* Disabled overlay — mirrors the FAQ "em construção" dev-card design.
   Absolute inside .rol-stage so navbar + footer remain usable. */
#roleta-disabled-overlay {
  position: absolute; inset: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  font-family: 'Chakra Petch', sans-serif;
  color: #fff;
  padding: 24px;
  pointer-events: auto;
  text-align: center;
}
#roleta-disabled-overlay .rd-card {
  max-width: 640px;
  padding: 56px 40px;
  background: linear-gradient(180deg, #14141a 0%, #0e0e14 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
#roleta-disabled-overlay .rd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #fd1227, transparent);
  animation: rd-scan 3s ease-in-out infinite;
}
@keyframes rd-scan {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
#roleta-disabled-overlay .rd-icon {
  font-size: 64px;
  margin-bottom: 8px;
  display: block;
}
#roleta-disabled-overlay .rd-kicker {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.4em; font-weight: 800;
  color: #f1c40f;
  background: rgba(241, 196, 15, 0.08);
  border: 1px solid rgba(241, 196, 15, 0.3);
  padding: 5px 10px;
  margin-bottom: 16px;
  border-radius: 1px;
}
#roleta-disabled-overlay .rd-title {
  font-size: 36px; font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
#roleta-disabled-overlay .rd-title em {
  font-style: normal;
  background: linear-gradient(180deg, #ffd54f 0%, #f1c40f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
#roleta-disabled-overlay .rd-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px; line-height: 1.7;
  margin: 0 0 28px;
}
#roleta-disabled-overlay .rd-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}
#roleta-disabled-overlay .rd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-transform: uppercase;
  transition: all 0.15s ease;
  cursor: pointer;
}
#roleta-disabled-overlay .rd-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}
#roleta-disabled-overlay .rd-btn-primary {
  background: linear-gradient(180deg, #ff5e5e 0%, #fd1227 100%);
  border-color: #fd1227;
}
#roleta-disabled-overlay .rd-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 18, 39, 0.4);
}
#roleta-disabled-overlay .rd-progress {
  margin-top: 24px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
#roleta-disabled-overlay .rd-progress::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, #fd1227, transparent);
  animation: rd-load 2.4s ease-in-out infinite;
}
@keyframes rd-load {
  0%   { left: -30%; }
  100% { left: 100%; }
}
