:root {
  --bg: #0c0a06;
  --panel: #16120a;
  --card: #1d180d;
  --line: #2e2614;
  --text: #f3eee0;
  --muted: #9b9078;
  --gold: #f0b90b;
  --gold2: #ffd24a;
  --amber: #ff9f1a;
  --green: #58e08a;
  --common: #6a6152;
  --milspec: #4b69ff;
  --restricted: #8847ff;
  --classified: #d32ce6;
  --covert: #eb4b4b;
  --rargold: #e4ae39;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
/* фон и на html, и фиксированный на body — чтобы при оверскроле сверху/снизу
   не вылезала белая/чёрная полоса */
html { background: var(--bg); }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background:
    radial-gradient(800px 380px at 80% -10%, rgba(240, 185, 11, .14), transparent 60%),
    radial-gradient(700px 340px at 10% -10%, rgba(255, 159, 26, .08), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  user-select: none;
}

#app {
  max-width: 520px; margin: 0 auto;
  padding: calc(86px + env(safe-area-inset-top)) 14px calc(96px + env(safe-area-inset-bottom));
}

.ic { width: 18px; height: 18px; flex: 0 0 auto; color: inherit; }
.ic.gold { color: var(--gold); }
.ic.green { color: var(--green); }
.ic.dark { color: #1a1404; }

/* ---------- header ---------- */
/* шапка прилеплена сверху, как футер снизу */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  max-width: 520px; margin: 0 auto;
  overflow: hidden;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(120deg, #241a05 0%, #4d3805 45%, #2b1f06 100%);
  border: 1px solid rgba(240, 185, 11, .4);
  border-top: none;
  border-radius: 0 0 18px 18px;
  padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
  box-shadow: 0 8px 32px rgba(12, 10, 6, .55), inset 0 1px 0 rgba(255, 220, 120, .15);
}
.topbar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 26px, rgba(255, 215, 100, .05) 26px 30px);
  pointer-events: none;
}
.topbar::after {
  content: ''; position: absolute; top: -50px; right: -25px; width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(255, 210, 74, .3), transparent 65%);
  pointer-events: none;
}
.logo {
  font-weight: 900; font-size: 19px; letter-spacing: 1.5px; font-style: italic;
  text-transform: uppercase; line-height: 1.1;
  text-shadow: 0 0 20px rgba(240, 185, 11, .7);
}
.logo span { color: var(--gold); }
.logo em {
  display: block; font-style: normal; font-weight: 600; font-size: 10px;
  letter-spacing: 2.5px; color: var(--muted); text-transform: uppercase; text-shadow: none;
}
.pills { display: flex; gap: 8px; position: relative; z-index: 1; }
.pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(12, 10, 6, .55);
  border: 1px solid rgba(255, 220, 120, .22);
  backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 20px; font-size: 14px; font-weight: 600;
  cursor: pointer;
}
.pill:active { transform: scale(.95); }
.logo { cursor: pointer; }
.pill b { color: var(--gold2); }
.pill.spins b { color: var(--green); }

/* ---------- views / tabs ---------- */
.view { display: none; }
.view.active { display: block; animation: fadein .2s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } }

.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; max-width: 520px; margin: 0 auto;
  background: rgba(12, 10, 6, .95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 6px 8px calc(10px + env(safe-area-inset-bottom));
}
.tab {
  flex: 1; background: none; border: none; color: var(--muted);
  padding: 12px 0 6px; cursor: pointer; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border-radius: 14px; transition: color .15s;
}
.tab .ic { width: 22px; height: 22px; }
.tab span { font-size: 11px; font-weight: 700; letter-spacing: .3px; }
.tab.active { color: var(--gold); }
.tab.active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 34px; height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  box-shadow: 0 0 12px var(--gold);
}

/* ---------- feed (последние выигрыши) ---------- */
.feed { margin-bottom: 12px; }
.feed-title {
  font-size: 11px; color: var(--muted); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; margin: 0 2px 8px;
}
.feed-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.feed-row::-webkit-scrollbar { display: none; }
.feed-item {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  border-left: 3px solid var(--rar, var(--common));
  border-radius: 12px; padding: 7px 12px 7px 8px; max-width: 240px;
}
.feed-item .fi-prize { width: 44px; height: 32px; object-fit: contain; }
.feed-item > .ic { width: 22px; height: 22px; color: var(--gold); }
.feed-item .fi-name { font-size: 12px; font-weight: 700; white-space: nowrap; }
.fi-ava {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--rar, var(--line)); flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: #241d0e; color: var(--muted);
}
.fi-ava-ph .ic { width: 16px; height: 16px; }
.feed-item.fresh { animation: feedIn .55s cubic-bezier(.2, 1.2, .4, 1); }
@keyframes feedIn {
  from { transform: translateX(-18px) scale(.85); opacity: 0; box-shadow: 0 0 24px var(--rar, var(--gold)); }
  60% { box-shadow: 0 0 18px var(--rar, var(--gold)); }
  to { box-shadow: none; }
}
/* буква-заглушка: градиентные кружки в палитре Telegram, цвет стабилен для игрока */
.fi-ava-letter { font-size: 14px; font-weight: 800; color: #fff; }
.ac0 { background: linear-gradient(135deg, #ff885e, #e17076); }
.ac1 { background: linear-gradient(135deg, #ffcd6a, #faa774); }
.ac2 { background: linear-gradient(135deg, #82b1ff, #665fff); }
.ac3 { background: linear-gradient(135deg, #a0de7e, #54cb68); }
.ac4 { background: linear-gradient(135deg, #53edd6, #28c9b7); }
.ac5 { background: linear-gradient(135deg, #72d5fd, #2a9ef1); }
.ac6 { background: linear-gradient(135deg, #e0a2f3, #d669ed); }

/* ---------- task ---------- */
.task {
  background: linear-gradient(135deg, rgba(240, 185, 11, .12), rgba(255, 159, 26, .05)), var(--panel);
  border: 1px solid rgba(240, 185, 11, .35);
  border-radius: 16px; padding: 14px; margin-bottom: 14px;
}
.task-text { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 10px; font-weight: 600; }
.task-actions { display: flex; gap: 8px; }

/* ---------- reel ---------- */
.reel-wrap {
  position: relative; height: 152px; margin: 6px -14px 16px;
  background: linear-gradient(180deg, #0a0805, #171206 50%, #0a0805);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.reel {
  display: flex; gap: 8px; align-items: center; height: 100%;
  padding-left: 50%;
  will-change: transform;
}
.reel-marker {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px;
  background: linear-gradient(180deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  z-index: 10; box-shadow: 0 0 16px var(--gold);
}
.reel-marker::before, .reel-marker::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent;
}
.reel-marker::before { top: 0; border-top-color: var(--gold); }
.reel-marker::after { bottom: 0; border-bottom-color: var(--gold); }
.reel-fade {
  position: absolute; top: 0; bottom: 0; width: 70px; z-index: 5; pointer-events: none;
}
.reel-fade.left { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.reel-fade.right { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.card {
  flex: 0 0 100px; height: 124px; border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--rar, var(--common));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80px 54px at 50% 100%, color-mix(in srgb, var(--rar, var(--common)) 30%, transparent), transparent);
}
.card img { width: 84px; height: 64px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,.55)); z-index: 1; }
.card .pts { z-index: 1; color: var(--gold); }
.card .pts .ic { width: 30px; height: 30px; }
.card .nm { font-size: 10px; color: var(--muted); text-align: center; padding: 0 4px; z-index: 1; line-height: 1.2; }

/* ---------- buttons ---------- */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; border: none; cursor: pointer;
  background: linear-gradient(120deg, var(--gold), var(--amber));
  color: #1a1404; font-weight: 800; font-size: 16px;
  padding: 14px; border-radius: 14px; margin-top: 10px;
  box-shadow: 0 6px 28px rgba(240, 185, 11, .28);
  transition: transform .1s, opacity .2s;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .4; box-shadow: none; cursor: default; }
.btn.ghost {
  background: var(--panel); color: var(--text);
  border: 1px solid var(--line); box-shadow: none;
}
.btn.small { width: auto; flex: 1; padding: 10px 12px; font-size: 13px; margin-top: 0; }

.spin-btn {
  font-size: 18px; padding: 17px;
  text-transform: uppercase; letter-spacing: 1.5px; font-style: italic;
  animation: btnpulse 2.2s ease-in-out infinite;
}
@keyframes btnpulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(240, 185, 11, .28); }
  50% { box-shadow: 0 6px 44px rgba(255, 159, 26, .5); }
}

/* ---------- cooldown ---------- */
.cooldown {
  position: relative; overflow: hidden; text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px; padding: 18px 14px 20px; margin-top: 10px;
}
.cooldown::before {
  content: ''; position: absolute; inset: -1px;
  pointer-events: none; /* рамка не должна перехватывать клики по кнопке */
  border-radius: 18px; padding: 1px;
  background: linear-gradient(120deg, var(--gold), var(--amber), #8a5a00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: borderglow 3s linear infinite;
}
@keyframes borderglow { 50% { opacity: .4; } }
.cd-title {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--muted);
}
.cd-digits {
  font-size: 42px; font-weight: 900; font-variant-numeric: tabular-nums;
  letter-spacing: 2px; margin: 6px 0 2px;
  background: linear-gradient(120deg, var(--gold2), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 32px rgba(240, 185, 11, .3);
}
.cd-sub { font-size: 12px; color: var(--muted); }
.cd-hint { font-size: 13px; margin-top: 12px; }
.cd-hint a { color: var(--gold); text-decoration: none; font-weight: 700; }

/* ---------- prize preview / inventory ---------- */
.section-title {
  font-size: 13px; color: var(--muted); margin: 22px 0 10px;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.prize-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.prize-row::-webkit-scrollbar { display: none; }

.inv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.inv-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  border-bottom: 3px solid var(--rar, var(--common));
  padding: 12px; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.inv-card img { width: 110px; height: 78px; object-fit: contain; }
.inv-card .nm { font-size: 12px; text-align: center; line-height: 1.25; font-weight: 600; }
.inv-card .val { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gold2); font-weight: 700; }
.inv-card .val .ic { width: 12px; height: 12px; }
.inv-card .st { font-size: 11px; color: var(--muted); }
.inv-card .btn { padding: 9px; font-size: 13px; border-radius: 10px; }
.empty { text-align: center; color: var(--muted); padding: 30px 0; }

/* ---------- friends ---------- */
.friends-hero { text-align: center; padding: 26px 6px 0; }
.friends-icon {
  width: 84px; height: 84px; margin: 0 auto; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(240, 185, 11, .2), rgba(255, 159, 26, .07));
  border: 1px solid rgba(240, 185, 11, .4);
  box-shadow: 0 0 36px rgba(240, 185, 11, .25);
  color: var(--gold);
}
.friends-icon .ic { width: 40px; height: 40px; }
.friends-hero h2 { margin: 14px 0 8px; font-style: italic; text-transform: uppercase; letter-spacing: .5px; }
.friends-hero p { color: var(--muted); font-size: 14px; line-height: 1.45; }
.friends-hero p b { color: var(--gold2); }
.ref-stats { display: flex; gap: 10px; justify-content: center; margin: 20px 0 6px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 22px; display: flex; flex-direction: column;
}
.stat b { font-size: 22px; color: var(--gold); }
.stat span { font-size: 12px; color: var(--muted); }

/* ---------- milestone (10 друзей = +1/день) ---------- */
.milestone {
  margin: 16px 2px 0; padding: 14px;
  background: linear-gradient(135deg, rgba(240, 185, 11, .1), rgba(255, 159, 26, .04)), var(--panel);
  border: 1px solid rgba(240, 185, 11, .3); border-radius: 16px;
  text-align: left;
}
.ms-text { font-size: 13.5px; line-height: 1.4; }
.ms-text b { color: var(--gold2); }
.ms-bar {
  height: 10px; margin: 10px 0 8px; border-radius: 6px;
  background: #241d0e; border: 1px solid var(--line); overflow: hidden;
}
.ms-bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  box-shadow: 0 0 12px rgba(240, 185, 11, .6);
  border-radius: 6px; transition: width .6s cubic-bezier(.2, .8, .2, 1);
}
.ms-sub { font-size: 12px; color: var(--muted); }
.ms-sub span { color: var(--gold2); font-weight: 700; }

/* ---------- admin ---------- */
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.admin-stats .stat { padding: 14px; }
/* 16px обязательно: меньший кегль заставляет iOS приближать страницу при фокусе */
#bcText, .admin-input {
  width: 100%; resize: vertical;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  color: var(--text); padding: 13px; font-size: 16px; outline: none;
  font-family: inherit;
}
#bcText { min-height: 96px; }
.admin-input { margin-top: 8px; }
#bcText:focus, .admin-input:focus { border-color: var(--gold); }
.bc-img-row .btn.small { padding: 13px 12px; }
.bc-dest .radio { padding: 6px 0; }
.bc-dest .radio input { width: 20px; height: 20px; }

.bc-dest { display: flex; flex-direction: column; gap: 6px; margin: 10px 2px 0; }
.radio { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text); cursor: pointer; }
.radio input { accent-color: var(--gold); width: 16px; height: 16px; }

.bc-img-row { display: flex; gap: 8px; margin-top: 10px; }
#bcPreview {
  display: block; max-width: 100%; max-height: 180px; margin-top: 10px;
  border-radius: 12px; border: 1px solid var(--line);
}

.wins-list { display: flex; flex-direction: column; gap: 6px; }
.win-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-left: 3px solid var(--rar, var(--common));
  border-radius: 12px; padding: 8px 12px;
}
.win-row .w-time { font-size: 11px; color: var(--muted); flex: 0 0 76px; }
.win-row .w-user { font-size: 13px; font-weight: 600; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.win-row .w-prize { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.win-row .w-prize img { width: 40px; height: 28px; object-fit: contain; }
.win-row .w-prize .ic { width: 14px; height: 14px; color: var(--gold); }
#winsMore { margin-bottom: 4px; }

.bc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; margin-bottom: 10px; cursor: pointer;
}
.bc-head { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--muted); }
.bc-status { font-weight: 700; }
.bc-status.running { color: var(--gold); }
.bc-status.done { color: var(--green); }
.bc-snippet { font-size: 13.5px; margin: 6px 0 8px; line-height: 1.35; word-break: break-word; }
.bc-bar {
  height: 8px; border-radius: 5px; overflow: hidden; display: flex;
  background: #241d0e; border: 1px solid var(--line);
}
.bc-bar .okp { background: linear-gradient(90deg, var(--gold), var(--amber)); }
.bc-bar .failp { background: #7a3030; }
.bc-nums { font-size: 11.5px; color: var(--muted); margin-top: 6px; }
.bc-nums b { color: var(--gold2); }

.log-card { max-height: 78vh; display: flex; flex-direction: column; text-align: left; }
.log-card h3 { text-align: center; }
.log-list { overflow-y: auto; margin: 10px 0 4px; flex: 1; }
.log-row {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 7px 4px; border-bottom: 1px solid var(--line); font-size: 12.5px;
}
.log-row .who { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log-row .ok { color: var(--green); font-weight: 700; }
.log-row .fail { color: #ff7a6e; font-weight: 700; }
.log-row .err { color: var(--muted); font-size: 11px; }

/* ---------- modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 5, 2, .84); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-card {
  background: #171307; border: 1px solid var(--line); border-radius: 20px;
  padding: 26px 22px; width: 100%; max-width: 340px; text-align: center;
  position: relative; overflow: hidden;
  animation: pop .35s cubic-bezier(.2, 1.4, .4, 1);
}
@keyframes pop { from { transform: scale(.7); opacity: 0; } }
.result-img { min-height: 90px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.result-img .ic { width: 64px; height: 64px; }
.result-img img { width: 200px; height: 120px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.6)); }
.result-name { font-size: 18px; font-weight: 800; margin: 8px 0 4px; }
.modal-card h3 { margin-bottom: 8px; }
.modal-card .hint { font-size: 12px; color: var(--muted); line-height: 1.4; margin-bottom: 12px; }
.modal-card input {
  width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); padding: 13px; font-size: 16px; outline: none;
}
.modal-card input:focus { border-color: var(--gold); }

/* info-модалка */
.info-icon {
  width: 64px; height: 64px; margin: 0 auto 10px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(240, 185, 11, .18), rgba(255, 159, 26, .06));
  border: 1px solid rgba(240, 185, 11, .4);
}
.info-icon .ic { width: 30px; height: 30px; }
.info-body { text-align: left; font-size: 14px; color: var(--muted); line-height: 1.5; }
.info-body p { margin-bottom: 8px; }
.info-body ul { margin: 0 0 8px 18px; }
.info-body li { margin-bottom: 6px; }
.info-body .info-now { color: var(--text); }
.info-body .info-now b { color: var(--gold2); }

/* confetti */
.confetti { position: absolute; inset: 0; pointer-events: none; }
.confetti i {
  position: absolute; top: -10px; width: 8px; height: 8px; border-radius: 2px;
  animation: fall 1.6s linear forwards;
}
@keyframes fall {
  to { transform: translateY(420px) rotate(540deg); opacity: 0; }
}

.modal-card.r-covert, .modal-card.r-gold { box-shadow: 0 0 70px color-mix(in srgb, var(--rar) 50%, transparent); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(104px + env(safe-area-inset-bottom)); transform: translateX(-50%);
  background: #211a0c; border: 1px solid var(--line); color: var(--text);
  padding: 10px 18px; border-radius: 12px; font-size: 14px; z-index: 200;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

/* ---------- landing (открыто вне Telegram) ---------- */
.landing {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.landing-card {
  position: relative; overflow: hidden;
  max-width: 380px; width: 100%; text-align: center;
  background: var(--panel); border: 1px solid rgba(240, 185, 11, .35);
  border-radius: 24px; padding: 44px 28px 32px;
  box-shadow: 0 0 80px rgba(240, 185, 11, .14);
}
.landing-glow {
  position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 240px; height: 160px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 210, 74, .3), transparent 70%);
}
.landing-card .logo { font-size: 27px; margin-bottom: 16px; }
.landing-card .logo em { font-size: 11px; letter-spacing: 3px; margin-top: 4px; }
.landing-card p { color: var(--muted); font-size: 15px; line-height: 1.55; margin-bottom: 10px; }
.landing-card .btn { text-decoration: none; font-size: 17px; padding: 16px; }
.landing-note { margin-top: 14px; font-size: 13px; color: var(--muted); }

.hidden { display: none !important; }

.r-common { --rar: var(--common); }
.r-milspec { --rar: var(--milspec); }
.r-restricted { --rar: var(--restricted); }
.r-classified { --rar: var(--classified); }
.r-covert { --rar: var(--covert); }
.r-gold { --rar: var(--rargold); }
