:root {
      --primary: #c5d314;
      --primary-light: #effd36;
      --bg: #0e1113;
      --surface: #121618;
      --surface-2: #1c2428;
      --gold: #ffc94b;
      --cyan: #49e389;
      --text: #ffffff;
      --muted: #919799;
      --glow: rgba(197, 211, 20, 0.3);
      --radius: 18px;
    }

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

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--muted);
      line-height: 1.55;
      font-size: 15px;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 55% at 50% -5%, rgba(197, 211, 20, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 100% 20%, rgba(197, 211, 20, 0.1) 0%, transparent 52%),
        radial-gradient(ellipse 45% 40% at 0% 80%, rgba(239, 253, 54, 0.08) 0%, transparent 48%);
      pointer-events: none;
      z-index: 0;
    }

    .wrap {
      position: relative;
      z-index: 1;
      max-width: 480px;
      margin: 0 auto;
      padding: 0 16px 36px;
    }

    /* Header */
    .top {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 16px;
      margin: 0 -16px;
      background: rgba(14, 17, 19, 0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(197, 211, 20, 0.2);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }

    .logo img { height: 42px; width: auto; display: block; filter: drop-shadow(0 0 8px var(--glow)); }

    .logo-text {
      display: none;
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }
    .top-btns { display: flex; gap: 8px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 11px 18px;
      border-radius: 999px;
      font-family: inherit;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.2s;
      white-space: nowrap;
    }

    .btn:active { transform: scale(0.96); }

    .btn-ghost {
      background: rgba(197, 211, 20, 0.08);
      color: var(--text);
      border: 2px solid rgba(197, 211, 20, 0.55);
    }

    .btn-fire {
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 55%, #9aa610 100%);
      background-size: 200% 200%;
      color: #0e1113;
      animation: pulse 1.5s ease-in-out infinite, shift 4s ease infinite;
      box-shadow: 0 4px 24px rgba(197, 211, 20, 0.5);
    }

    .btn-xl {
      width: 100%;
      padding: 17px 24px;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .btn-xl .arrow {
      display: inline-block;
      transition: transform 0.2s;
    }

    .btn-fire:active .arrow { transform: translateX(3px); }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(197, 211, 20, 0.45), 0 0 40px rgba(239, 253, 54, 0.15); }
      50% { box-shadow: 0 4px 36px rgba(197, 211, 20, 0.85), 0 0 60px rgba(239, 253, 54, 0.3); }
    }

    @keyframes shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%) rotate(12deg); }
      100% { transform: translateX(200%) rotate(12deg); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    /* Hero */
    .hero { padding: 18px 0 6px; text-align: center; }

    .hero-img {
      position: relative;
      margin-bottom: 18px;
      border-radius: 22px;
      overflow: hidden;
      animation: float 4s ease-in-out infinite;
    }

    .hero-img::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--gold), var(--primary));
      background-size: 300% 300%;
      animation: shift 5s ease infinite;
      z-index: 0;
    }

    .hero-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(14, 17, 19, 0.9) 100%);
      pointer-events: none;
      z-index: 2;
    }

    .hero-img-inner {
      position: relative;
      z-index: 1;
      margin: 2px;
      border-radius: 20px;
      overflow: hidden;
    }

    .hero-img img {
      width: 100%;
      height: auto;
      display: block;
      min-height: 240px;
      object-fit: cover;
    }

    .hero-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: linear-gradient(135deg, var(--gold), #e5bf00);
      color: #1b1b0c;
      box-shadow: 0 4px 16px rgba(255, 201, 75, 0.45);
    }

    .hero-img img.hero-logo {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      height: 28px;
      width: auto;
      min-height: 0;
      object-fit: contain;
      filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 14px var(--glow));
      pointer-events: none;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 18px;
    }

    .stat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(197, 211, 20, 0.18);
      border-radius: 14px;
      padding: 12px 8px;
      text-align: center;
    }

    .stat b {
      display: block;
      font-size: 17px;
      font-weight: 900;
      color: var(--text);
      line-height: 1.1;
      background: linear-gradient(180deg, #fff, var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat span {
      font-size: 10px;
      font-weight: 600;
      color: rgba(145, 151, 153, 0.85);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    h1 {
      font-size: clamp(26px, 6.5vw, 32px);
      font-weight: 900;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 10px;
    }

    h1 span {
      background: linear-gradient(90deg, var(--primary-light), var(--gold), var(--primary));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shift 3s linear infinite;
    }

    .hero p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .perks {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 18px;
    }

    .perk {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(197, 211, 20, 0.08);
      border: 1px solid rgba(197, 211, 20, 0.25);
    }

    .perk::before {
      content: '✓';
      color: var(--primary-light);
      font-weight: 900;
    }

    /* Blocks */
    .block {
      position: relative;
      background: linear-gradient(160deg, rgba(28, 36, 40, 0.95) 0%, rgba(18, 22, 24, 0.98) 100%);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius);
      padding: 20px 16px;
      margin-top: 14px;
      overflow: hidden;
    }

    .block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), transparent);
    }

    .block h2 {
      font-size: 17px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 14px;
    }

    /* Recently reviewed slots (Trustpilot-style mini cards) */
    .reviewed-lead {
      font-size: 12.5px;
      color: rgba(145, 151, 153, 0.9);
      margin: -6px 0 14px;
    }

    .reviewed-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 2px 2px 12px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .reviewed-scroll::-webkit-scrollbar { display: none; }

    .reviewed-card {
      flex: 0 0 168px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      text-decoration: none;
      color: inherit;
      padding: 14px 12px 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(197, 211, 20, 0.16);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }

    .reviewed-card:active {
      transform: scale(0.98);
      border-color: rgba(197, 211, 20, 0.45);
      background: rgba(197, 211, 20, 0.08);
    }

    .reviewed-card img {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      object-fit: cover;
      flex-shrink: 0;
      border: 1px solid rgba(197, 211, 20, 0.22);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
      margin-bottom: 10px;
    }

    .reviewed-body {
      width: 100%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .reviewed-name {
      font-size: 13px;
      font-weight: 800;
      color: var(--text);
      line-height: 1.25;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.5em;
    }

    .reviewed-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex-wrap: wrap;
      line-height: 1;
    }

    .reviewed-rating .stars {
      color: #00b67a;
      font-size: 11px;
      letter-spacing: -0.5px;
    }

    .reviewed-rating .score {
      font-size: 12px;
      font-weight: 800;
      color: var(--text);
    }

    .reviewed-rating .count {
      font-size: 10px;
      color: rgba(145, 151, 153, 0.75);
      width: 100%;
    }

    .reviewed-lang {
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .reviewed-win {
      font-size: 10px;
      color: var(--muted);
      line-height: 1.4;
      width: 100%;
    }

    .reviewed-win .win-label {
      display: block;
      font-size: 9px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #0e1113;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      padding: 2px 6px;
      border-radius: 4px;
      margin: 0 auto 4px;
      width: fit-content;
    }

    .reviewed-win b {
      color: var(--gold);
      font-weight: 800;
      display: block;
      margin-top: 1px;
    }

    .reviewed-quote {
      margin: 2px 0 0;
      padding: 6px 0 0;
      border: none;
      border-top: 1px solid rgba(197, 211, 20, 0.12);
      font-size: 10px;
      font-style: italic;
      color: rgba(238, 248, 168, 0.85);
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-align: left;
      width: 100%;
    }

    /* Slots */
    .slots-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 4px 2px 10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .slots-scroll::-webkit-scrollbar { display: none; }

    .slot {
      flex: 0 0 92px;
      scroll-snap-align: start;
      text-decoration: none;
      color: inherit;
    }

    .slot img {
      width: 92px;
      height: 92px;
      border-radius: 16px;
      object-fit: cover;
      display: block;
      border: 2px solid rgba(197, 211, 20, 0.25);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }

    .slot:active img {
      transform: scale(0.95);
      border-color: var(--primary);
      box-shadow: 0 0 20px rgba(197, 211, 20, 0.4);
    }

    .slot span {
      display: block;
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
      text-align: center;
      margin-top: 7px;
      line-height: 1.2;
    }

    /* Promo cards */
    .promo-cards { display: flex; flex-direction: column; gap: 10px; }

    .promo-card {
      position: relative;
      background: var(--surface-2);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 14px 14px 14px 18px;
      overflow: hidden;
    }

    .promo-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--primary-light), var(--primary));
      border-radius: 4px 0 0 4px;
    }

    .promo-card.featured {
      background: linear-gradient(135deg, rgba(197, 211, 20, 0.18) 0%, rgba(239, 253, 54, 0.1) 100%);
      border-color: rgba(197, 211, 20, 0.35);
      box-shadow: 0 8px 32px rgba(197, 211, 20, 0.15);
    }

    .promo-card.featured::before {
      width: 5px;
      background: linear-gradient(180deg, var(--gold), var(--primary));
    }

    .promo-card .label-hot {
      display: inline-block;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 8px;
      border-radius: 6px;
      background: var(--gold);
      color: #1b1b0c;
      margin-bottom: 6px;
    }

    .promo-card .type {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--primary-light);
      margin-bottom: 4px;
    }

    .promo-card .gain {
      font-size: 17px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 5px;
      line-height: 1.2;
    }

    .promo-card.featured .gain {
      font-size: 19px;
      background: linear-gradient(90deg, #fff, var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .promo-card .rules {
      font-size: 12px;
      color: rgba(145, 151, 153, 0.8);
    }

    /* Pay */
    .pay-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-bottom: 16px;
      padding: 16px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 14px;
      border: 1px solid rgba(197, 211, 20, 0.15);
    }

    .pay-strip img {
      height: 30px;
      width: auto;
      object-fit: contain;
      filter: brightness(1.15);
      transition: transform 0.2s;
    }

    .pay-cards { display: flex; flex-direction: column; gap: 10px; }

    .pay-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px 12px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 14px;
      padding: 13px 14px;
      border: 1px solid rgba(197, 211, 20, 0.18);
      font-size: 13px;
      transition: border-color 0.2s;
    }

    .pay-card:first-child {
      border-color: rgba(197, 211, 20, 0.35);
      background: linear-gradient(135deg, rgba(197, 211, 20, 0.08), rgba(239, 253, 54, 0.06));
    }

    .pay-card .method {
      grid-column: 1 / -1;
      font-weight: 900;
      color: var(--text);
      font-size: 15px;
      margin-bottom: 2px;
    }

    .pay-card .lbl { color: rgba(145, 151, 153, 0.55); font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
    .pay-card .val { color: var(--muted); font-weight: 700; font-size: 13px; }

    .pay-card .val-fast { color: var(--primary-light); }

    /* CTA */
    .cta-zone {
      position: relative;
      text-align: center;
      margin-top: 18px;
      padding: 28px 18px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(197, 211, 20, 0.3);
      background: linear-gradient(160deg, rgba(197, 211, 20, 0.15) 0%, rgba(239, 253, 54, 0.08) 100%);
    }

    .cta-zone::before {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
      animation: shimmer 3s ease-in-out infinite;
    }

    .cta-zone p {
      position: relative;
      font-size: 14px;
      margin-bottom: 16px;
      color: var(--muted);
      line-height: 1.6;
    }

    .cta-zone strong { color: var(--gold); font-weight: 800; }

    .cta-zone .btn { position: relative; }

    footer {
      text-align: center;
      padding: 22px 0 6px;
      font-size: 11px;
      color: rgba(145, 151, 153, 0.45);
    }

    @media (min-width: 520px) {
      .wrap { max-width: 560px; }
      .hero-img img { min-height: 300px; }
    }

    .meta-date { font-size: 11px; color: rgba(145,151,153,0.7); margin-top: 10px; }
    .toc {
      background: linear-gradient(160deg, rgba(28, 36, 40, 0.95) 0%, rgba(18, 22, 24, 0.98) 100%);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius);
      padding: 18px 16px;
      margin-top: 14px;
    }
    .toc .block-title, .block-title {
      font-size: 15px; font-weight: 900; color: var(--text); margin-bottom: 10px;
    }
    .toc ol { margin-left: 18px; font-size: 13px; }
    .toc a { color: var(--muted); text-decoration: none; }
    .toc a:hover { color: var(--primary-light); }
    .block h3 { color: #fff; font-size: 14px; font-weight: 800; margin: 14px 0 8px; }
    .block p { margin-bottom: 10px; font-size: 13.5px; }
    .block ul, .block ol { margin: 8px 0 12px 18px; font-size: 13.5px; }
    .block li { margin-bottom: 6px; }
    .table-scroll { overflow-x: auto; margin: 10px 0 12px; -webkit-overflow-scrolling: touch; }
    table.data { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 300px; }
    table.data th, table.data td {
      padding: 10px 8px; text-align: left;
      border-bottom: 1px solid rgba(197, 211, 20, 0.12);
    }
    table.data th {
      color: #fff; background: rgba(197, 211, 20, 0.12); font-weight: 800;
    }
    table.data td { color: var(--muted); }
    .note {
      margin: 10px 0; padding: 12px; border-radius: 12px;
      background: rgba(197, 211, 20, 0.08);
      border: 1px solid rgba(197, 211, 20, 0.28);
      font-size: 12.5px; color: #eef8a8;
    }
    .faq-item {
      border: 1px solid rgba(197, 211, 20, 0.15); border-radius: 12px;
      margin-bottom: 8px; background: rgba(255,255,255,0.02);
    }
    .faq-item summary {
      cursor: pointer; padding: 12px 14px; font-weight: 700; font-size: 13px;
      color: var(--text); list-style: none; display: flex; justify-content: space-between; gap: 10px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; color: var(--primary-light); font-weight: 900; }
    .faq-item[open] summary::after { content: '−'; }
    .faq-body { padding: 0 14px 12px; font-size: 13px; color: var(--muted); }
    .rg-box {
      margin-top: 14px; padding: 16px; border-radius: var(--radius);
      background: rgba(163, 16, 41, 0.12); border: 1px solid rgba(163, 16, 41, 0.35);
    }
    .rg-box h2 { font-size: 15px; color: #ff8a9a; margin-bottom: 8px; }
    .rg-box p { font-size: 12.5px; color: var(--muted); margin: 0; }
    footer a { color: var(--primary-light); }
    .hero { text-align: left; }
    .hero .perks { justify-content: flex-start; }
    .hero > p { text-align: left; }
/* Calculator */
.calc-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(197,211,20,0.22);
}
.calc-box label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin: 10px 0 6px;
}
.calc-box label:first-child { margin-top: 0; }
.calc-box input[type="number"],
.calc-box input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}
.calc-box input[type="number"] {
  background: var(--surface-2);
  border: 1px solid rgba(197,211,20,0.25);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}
.calc-formula {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-light);
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
  background: rgba(197,211,20,0.1);
  border: 1px dashed rgba(197,211,20,0.35);
  letter-spacing: 0.04em;
}
.calc-result {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(197,211,20,0.18), rgba(239,253,54,0.08));
  border: 1px solid rgba(197,211,20,0.35);
  font-size: 14px;
  color: var(--muted);
}
.calc-result strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

/* Quiz */
.quiz-q {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,211,20,0.15);
}
.quiz-q p { margin-bottom: 8px; font-weight: 700; color: var(--text); }
.quiz-opts { display: flex; flex-direction: column; gap: 6px; }
.quiz-opts button {
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(197,211,20,0.2);
  background: rgba(0,0,0,0.25);
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.quiz-opts button:hover { border-color: var(--primary); color: var(--text); }
.quiz-opts button.correct {
  border-color: var(--cyan);
  background: rgba(73,227,137,0.12);
  color: var(--cyan);
}
.quiz-opts button.wrong {
  border-color: #ff6b7a;
  background: rgba(163,16,41,0.15);
  color: #ff8a9a;
}
.quiz-reveal {
  margin-top: 8px;
  font-size: 12.5px;
  color: #eef8a8;
  display: none;
}
.quiz-q.answered .quiz-reveal { display: block; }

/* Roulette demo */
.roulette-box {
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(197,211,20,0.2);
}
.roulette-wheel {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 6px solid var(--primary);
  background:
    conic-gradient(#c41e3a 0deg 9.73deg, #0e1113 9.73deg 19.46deg, #c41e3a 19.46deg 29.19deg, #0e1113 29.19deg 38.92deg,
      #c41e3a 38.92deg 48.65deg, #0e1113 48.65deg 58.38deg, #c41e3a 58.38deg 68.11deg, #0e1113 68.11deg 77.84deg,
      #c41e3a 77.84deg 87.57deg, #0e1113 87.57deg 97.3deg, #c41e3a 97.3deg 107.03deg, #0e1113 107.03deg 116.76deg,
      #c41e3a 116.76deg 126.49deg, #0e1113 126.49deg 136.22deg, #c41e3a 136.22deg 145.95deg, #0e1113 145.95deg 155.68deg,
      #c41e3a 155.68deg 165.41deg, #0e1113 165.41deg 175.14deg, #c41e3a 175.14deg 184.87deg, #0e1113 184.87deg 194.6deg,
      #c41e3a 194.6deg 204.33deg, #0e1113 204.33deg 214.06deg, #c41e3a 214.06deg 223.79deg, #0e1113 223.79deg 233.52deg,
      #c41e3a 233.52deg 243.25deg, #0e1113 243.25deg 252.98deg, #c41e3a 252.98deg 262.71deg, #0e1113 262.71deg 272.44deg,
      #c41e3a 272.44deg 282.17deg, #0e1113 282.17deg 291.9deg, #c41e3a 291.9deg 301.63deg, #0e1113 301.63deg 311.36deg,
      #c41e3a 311.36deg 321.09deg, #0e1113 321.09deg 330.82deg, #049e49 330.82deg 340.55deg, #0e1113 340.55deg 360deg);
  box-shadow: 0 0 30px rgba(197,211,20,0.25);
  transition: transform 2.5s cubic-bezier(0.15, 0.85, 0.25, 1);
}
.roulette-result {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  margin: 10px 0;
  min-height: 1.4em;
}
.roulette-bet {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.roulette-bet button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(197,211,20,0.3);
  background: rgba(197,211,20,0.08);
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.roulette-bet button.active {
  background: var(--primary);
  color: #0e1113;
  border-color: var(--primary);
}

/* Wins board */
.wins-list { display: flex; flex-direction: column; gap: 8px; }
.win-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,211,20,0.12);
  font-size: 12.5px;
}
.win-row b { color: var(--gold); font-weight: 900; }
.win-row span { color: var(--muted); }
.win-row .player { color: var(--text); font-weight: 700; }

code {
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(197,211,20,0.12);
  color: var(--primary-light);
}

.btn-mt { margin-top: 12px; }
.btn-spin {
  border-radius: 999px;
  padding: 12px 28px;
}
