/* ═══════════════════════════════════════════════════════════════════════════
 * RED90 — استایل «افزوده‌ها»
 *
 * ⚠️ این فایل هیچ چیزی از دیزاین خودِ رد ۹۰ را عوض نمی‌کند.
 *    پوسته‌ی سایت (هدر، نوار منو، بنر، نوار بازی‌ها، فوتر، فونت) کاملاً از
 *    alive/assets/css/*.css می‌آید — همان فایل‌های خودِ سایت، بدون تغییر.
 *
 *    اینجا فقط دو چیز هست:
 *      ۱) چند خط اتصال برای رفتارهایی که در سایت اصلی جاوااسکریپت انجام می‌داد
 *      ۲) استایل محتوایی که ما اضافه کرده‌ایم — همه با پیشوند .rd-
 * ═══════════════════════════════════════════════════════════════════════════ */

/* ⚠️ همه‌ی این مقدارها از روی خودِ پوسته‌ی red90.com خوانده شده‌اند:
   پنل‌ها #0e0e0e، تیترها مشکی، متنِ فرعی #acacac، زردِ دکمه #ffcb39،
   قرمزِ برند #e01b24 و قرمزِ تبِ زنده‌ی نوار بالا #ff0000. */
:root {
  --rd-bg: #1c1c1c;
  --rd-bg-2: #131313;
  --rd-bg-3: #0e0e0e;
  --rd-bar: #000000;
  --rd-line: #2b2b2b;
  --rd-line-soft: #1e1e1e;
  --rd-red: #e01b24;
  --rd-red-2: #8f0f14;
  --rd-gold: #ffcb39;
  --rd-gold-2: #c99b17;
  --rd-accent: #e01b24;
  --rd-text: #e9e9e9;
  --rd-text-2: #acacac;
  --rd-text-3: #7d7d7d;
  --rd-neon: #e01b24;
  --rd-neon-2: #8f0f14;
  --rd-wrap: 100%;
}

/* ═══════════════════ ۱) رفتارهایی که در سایت اصلی با jQuery بود ════════
 * اسلایدر: همان انیمیشن margin-right از ۰٪ به ‎-۱۰۰٪‎ در ۵۰۰ میلی‌ثانیه.
 * منوی موبایل: همان لایه‌ی تمام‌صفحه که نمایش/پنهان می‌شود.
 * ═══════════════════════════════════════════════════════════════════════ */
/* در سایت اصلی ارتفاع این کادر را جاوااسکریپت روی «نصفِ عرض» ست می‌کند
   (۷۵۰ → ۳۷۵ روی دسکتاپ، ۳۹۰ → ۱۹۵ روی موبایل). همان نسبت را با aspect-ratio
   می‌سازیم تا از اولین فریم درست باشد و CLS صفر بماند. */
.main-splash .image-container {
  height: auto;
  aspect-ratio: 2 / 1;
}
.main-splash .image-container .image {
  transition: margin-right .5s ease;
  text-decoration: none;
}

/* نقطه‌های اسلایدر — روی خودِ بنر می‌نشینند و جا اشغال نمی‌کنند (CLS صفر) */
.main-splash { position: relative; }
.rd-dots {
  position: absolute; bottom: 10px; left: 0; right: 0; z-index: 2;
  display: flex; gap: 8px; justify-content: center; pointer-events: none;
}
.rd-dot {
  pointer-events: auto; width: 26px; height: 5px; border-radius: 3px; border: 0;
  padding: 0; cursor: pointer; background: rgba(255, 255, 255, .34);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .6); transition: background .2s, width .2s;
}
.rd-dot.is-on { background: var(--rd-red); width: 36px; }
@media screen and (max-width: 1000px) { .rd-dots { bottom: 7px; } .rd-dot { width: 20px; height: 4px; } }

/* بنرهای دو ستون کناری در مارک‌آپ اصلی width="100%" داشتند. ما به‌جای آن
   عرض و ارتفاع واقعی فایل را می‌نویسیم تا مرورگر از فریم اول جا رزرو کند
   (CLS صفر)، و همان «۱۰۰٪» را اینجا با CSS برمی‌گردانیم تا رندر مو‌به‌مو
   همان چیزی باشد که سایت اصلی نشان می‌دهد. */
.left-bar a > img,
.event-container > .mobile a > img,
.right-bar .mt10 img { width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
  .main-splash .image-container .image { transition: none; }
}
.mobile-menu.open { display: block; }

/* سه آیکون نوار بالای موبایل: <button> هستند نه لینکِ بی‌مقصد.
   ⚠️ font-family عمداً inherit نمی‌شود — گلیف از FontAwesome می‌آید. */
.rd-iconbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: 24px; line-height: 1; color: #ddd;
}
.rd-iconbtn:hover { color: #fff; }

/* پنل‌های کشویی موبایل — همان .rear-bar-mobile خودِ پوسته که با
   display:none شروع می‌شود و اینجا فقط باز می‌شود. */
@media screen and (max-width: 1000px) {
  .rear-bar-mobile.rd-open { display: block; padding: 8px 8px 70px; }
  .rd-panelclose {
    display: block; width: calc(100% - 4px); margin: 4px 2px 10px;
    background: #1a1a1a; border: 1px solid var(--rd-line); color: #ddd;
    border-radius: 8px; padding: 9px 12px; font-size: 14px; cursor: pointer;
  }
}
@media screen and (min-width: 1001px) { .rd-panelclose { display: none; } }

/* ویژگی width/height روی تصویرها برای CLS اضافه شده؛ در مارک‌آپ اصلی
   نبودند، پس ارتفاع دوباره آزاد می‌شود تا نسبت تصویر همان بماند. */
.main-games-box .game img { height: auto; }
.header .left img, .mobile-bar .logo img { height: auto; }
.footer-download-link-icon, .custom-mobile-menu-items img { height: auto; }

/* ═══════════════════════ ۲) محتوای افزوده (.rd-*) ═════════════════════ */

/* استایل پایه‌ی سایت متن را غیرقابل‌انتخاب کرده؛ داخل محتوای ما باید
   بشود متن را انتخاب و کپی کرد. */
.rd-main, .rd-main *, .rd-foot, .rd-foot * {
  -webkit-user-select: text; user-select: text; -webkit-touch-callout: default;
}

/* ⚠️ پنهان‌کردن با right:-9999px در صفحه‌ی RTL باعث اسکرول افقی می‌شود؛
   پس از clip استفاده می‌کنیم که هیچ عرضی به سند اضافه نمی‌کند. */
.rd-skip {
  position: absolute; right: 0; top: 0; z-index: 1000000;
  width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%);
  white-space: nowrap;
  background: var(--rd-gold); color: #101010; padding: 10px 18px;
  font-weight: 500; text-decoration: none; border-radius: 0 0 0 8px;
}
.rd-skip:focus {
  width: auto; height: auto; overflow: visible; clip-path: none;
}
:where(a, button, summary, input, [tabindex]):focus-visible {
  outline: 2px solid var(--rd-gold); outline-offset: 2px; border-radius: 4px;
}

.rd-main {
  max-width: var(--rd-wrap); margin: 0 auto; padding: 18px 12px 40px;
  color: var(--rd-text); font-size: 15px; line-height: 1.9;
}
@media screen and (max-width: 1000px) { .rd-main { padding-bottom: 70px; } }
.rd-main p { margin: 0 0 1em; }
.rd-main ul, .rd-main ol { margin: 0 0 1em; padding-right: 1.4em; padding-left: 0; }
.rd-main table { border-collapse: collapse; width: 100%; }
.rd-main img { max-width: 100%; height: auto; }
.rd-sec--first { margin-top: 4px; }

.rd-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.rd-crumb { font-size: 13px; color: var(--rd-text-3); margin-bottom: 10px; }
.rd-crumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.rd-crumb li + li::before { content: '‹'; margin-left: 6px; color: var(--rd-text-3); }
.rd-crumb a { color: var(--rd-text-2); text-decoration: none; }
.rd-crumb a:hover { color: var(--rd-gold); }

.rd-h1 {
  font-size: clamp(22px, 4vw, 32px); font-weight: 500; color: #fff; margin: 0 0 10px;
  padding-right: 12px; border-right: 4px solid var(--rd-gold); line-height: 1.5;
}
.rd-lead { font-size: 16px; color: var(--rd-text-2); max-width: 74ch; margin: 0 0 22px; }

.rd-sec { margin: 30px 0 0; }
.rd-sec__h {
  font-size: clamp(18px, 3vw, 23px); font-weight: 500; color: #fff; margin: 0 0 6px;
  display: flex; align-items: center; gap: 9px; line-height: 1.5;
}
.rd-sec__h::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px;
  background: var(--rd-neon); transform: rotate(45deg); flex: 0 0 auto;
}
.rd-sec__sub { color: var(--rd-text-2); margin: 0 0 14px; }

.rd-prose { color: #cdd8e4; max-width: 78ch; }
.rd-prose h3 { font-size: 17px; font-weight: 500; color: var(--rd-gold); margin: 18px 0 6px; }
.rd-prose b, .rd-prose strong { color: #fff; font-weight: 500; }
.rd-prose a { color: var(--rd-gold); }
.rd-prose li { margin-bottom: 7px; }
.rd-prose li::marker { color: var(--rd-neon); }

.rd-note {
  border: 1px solid var(--rd-line); border-right: 3px solid var(--rd-gold);
  background: var(--rd-bg-2); border-radius: 8px; padding: 12px 14px; margin: 16px 0;
  color: #cdd8e4;
}
.rd-note--warn { border-right-color: #e5484d; }
.rd-note strong { color: #fff; font-weight: 500; }

.rd-steps { list-style: none; counter-reset: s; padding: 0 !important; margin: 0; }
.rd-steps li { counter-increment: s; position: relative; padding-right: 44px; margin-bottom: 14px; }
.rd-steps li::before {
  content: counter(s); position: absolute; right: 0; top: 3px;
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--rd-neon), var(--rd-neon-2));
  color: #14100a; font-weight: 500; font-size: 14px;
}
.rd-steps li b { display: block; color: #fff; font-weight: 500; }
.rd-steps li span { display: block; color: var(--rd-text-2); font-size: 14px; }

.rd-scroll { overflow-x: auto; margin: 12px 0; border: 1px solid var(--rd-line); border-radius: 10px; }
.rd-scroll table { min-width: 420px; font-size: 14px; }
.rd-scroll th, .rd-scroll td { padding: 9px 12px; text-align: right; border-bottom: 1px solid var(--rd-line-soft); }
.rd-scroll thead th { background: var(--rd-bg-3); color: var(--rd-gold); font-weight: 500; white-space: nowrap; }
.rd-scroll tbody tr:last-child td { border-bottom: 0; }
.rd-scroll tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .02); }

.rd-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; margin: 0; padding: 0; }
.rd-specs > div { background: var(--rd-bg-2); border: 1px solid var(--rd-line-soft); border-radius: 9px; padding: 9px 12px; }
.rd-specs dt { font-size: 12px; color: var(--rd-text-3); }
.rd-specs dd { margin: 0; font-size: 14px; color: #fff; font-weight: 500; }

.rd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px; }
.rd-gcard {
  display: flex; flex-direction: column; text-decoration: none;
  background: #05080c; border: 1px solid var(--rd-line-soft); border-radius: 12px;
  overflow: hidden; transition: transform .18s, border-color .18s, box-shadow .18s;
}
.rd-gcard:hover {
  transform: translateY(-3px); border-color: var(--rd-neon);
  box-shadow: 0 10px 26px rgba(224, 27, 36, .28);
}
/* نسبت دقیقِ کارت‌های خودِ رد ۹۰ (۵۹۵×۳۳۵) تا هنر کارت بریده نشود */
.rd-gcard__img { width: 100%; aspect-ratio: 595 / 335; object-fit: cover; display: block; }
.rd-gcard__b { padding: 11px 13px 13px; display: flex; flex-direction: column; gap: 4px; }
.rd-gcard__t { font-weight: 500; color: #fff; font-size: 16px; }
.rd-gcard__d { font-size: 13px; color: var(--rd-text-2); line-height: 1.7; flex: 1; }
.rd-gcard__cta { font-size: 13px; color: var(--rd-gold); font-weight: 500; margin-top: 4px; }
.rd-gcard[hidden] { display: none; }

.rd-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.rd-links a {
  display: block; text-decoration: none; background: var(--rd-bg-2);
  border: 1px solid var(--rd-line-soft); border-radius: 10px; padding: 11px 14px;
  color: #fff; font-weight: 500; transition: border-color .18s, background .18s;
}
.rd-links a span { display: block; font-weight: 300; font-size: 13px; color: var(--rd-text-2); }
.rd-links a:hover { border-color: var(--rd-gold); background: var(--rd-bg-3); }

.rd-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.rd-card { background: var(--rd-bg-2); border: 1px solid var(--rd-line-soft); border-radius: 11px; padding: 14px 16px; }
.rd-card__h { font-size: 16px; font-weight: 500; color: var(--rd-gold); margin: 0 0 5px; }
.rd-card p { margin: 0; font-size: 14px; color: var(--rd-text-2); }

.rd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: 9px; text-decoration: none;
  font-weight: 500; font-size: 15px; border: 1px solid transparent; cursor: pointer;
}
.rd-btn--go { background: linear-gradient(180deg, var(--rd-neon), var(--rd-neon-2)); color: #17100a; }
.rd-btn--go:hover { filter: brightness(1.08); }
.rd-btn--ghost { background: transparent; border-color: var(--rd-line); color: var(--rd-text); }
.rd-btn--ghost:hover { border-color: var(--rd-gold); color: var(--rd-gold); }
.rd-btn--sm { padding: 8px 16px; font-size: 14px; }

.rd-faq__list { display: grid; gap: 8px; }
.rd-faq__item { background: var(--rd-bg-2); border: 1px solid var(--rd-line-soft); border-radius: 10px; }
.rd-faq__item summary {
  cursor: pointer; padding: 12px 15px; font-weight: 500; color: #fff;
  list-style: none; display: flex; justify-content: space-between; gap: 10px;
}
.rd-faq__item summary::-webkit-details-marker { display: none; }
.rd-faq__item summary::after { content: '+'; color: var(--rd-gold); font-size: 20px; line-height: 1; }
.rd-faq__item[open] summary::after { content: '−'; }
.rd-faq__a { padding: 0 15px 12px; color: #cdd8e4; }
.rd-faq__a p:last-child { margin-bottom: 0; }
.rd-faq__a a { color: var(--rd-gold); }

.rd-finder { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.rd-finder input {
  flex: 1 1 240px; background: var(--rd-bg-2); border: 1px solid var(--rd-line);
  border-radius: 9px; padding: 10px 14px; color: #fff; font-family: inherit; font-size: 15px;
}
.rd-finder input::placeholder { color: var(--rd-text-3); }
.rd-finder__count { color: var(--rd-text-2); font-size: 14px; }

/* ── میز بازی ─────────────────────────────────────────────────────────── */
.rd-stagewrap { margin: 18px 0 24px; }
.rd-stagebar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--rd-bg-2); border: 1px solid var(--rd-line); border-bottom: 0;
  border-radius: 12px 12px 0 0; padding: 8px 12px; font-size: 13px;
}
.rd-stagebar__tag { color: var(--rd-gold); font-weight: 500; }
.rd-stagebar__sp { flex: 1; }
.rd-stagebar button, .rd-stagebar a {
  background: var(--rd-bg-3); border: 1px solid var(--rd-line); color: var(--rd-text);
  border-radius: 7px; padding: 5px 12px; font-size: 13px; cursor: pointer;
  text-decoration: none; font-family: inherit;
}
.rd-stagebar button:hover, .rd-stagebar a:hover { border-color: var(--rd-gold); color: var(--rd-gold); }

#rd-stage {
  position: relative; background: #05080c;
  border: 1px solid var(--rd-line); border-radius: 0 0 12px 12px; overflow: hidden;
}
#rd-stage, #rd-stage * { -webkit-user-select: text; user-select: text; }
.rd-stageload {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; z-index: 3;
  background: #05080c; color: var(--rd-text-2); text-align: center; padding: 20px;
}
.rd-stageload[hidden] { display: none; }
.rd-stageload__ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--rd-line); border-top-color: var(--rd-neon);
  animation: b4spin 1s linear infinite;
}
@keyframes b4spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .rd-stageload__ring { animation: none; } }
.rd-stageload__err { color: #ff9ea1; }
.rd-stageload__acts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ── فوتر سئو — زیر فوتر اصلی ─────────────────────────────────────────── */
.rd-foot { background: #05080c; border-top: 1px solid var(--rd-line-soft); padding: 28px 12px 20px; }
.rd-foot__grid {
  max-width: var(--rd-wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px;
}
.rd-foot__h { font-size: 14px; font-weight: 500; color: var(--rd-gold); margin: 0 0 8px; }
.rd-foot__col ul { list-style: none; margin: 0; padding: 0; }
.rd-foot__col li { margin-bottom: 5px; }
.rd-foot__col a { color: var(--rd-text-2); text-decoration: none; font-size: 13px; }
.rd-foot__col a:hover { color: #fff; }
.rd-foot__bot {
  max-width: var(--rd-wrap); margin: 22px auto 0; padding-top: 16px;
  border-top: 1px solid var(--rd-line-soft); color: var(--rd-text-3); font-size: 12.5px;
  text-align: center; line-height: 1.9;
}
.rd-foot__bot p { margin: 0 0 6px; }
.rd-foot__note a { color: var(--rd-gold); }
@media screen and (max-width: 1000px) { .rd-foot { padding-bottom: 66px; } }





/* ── سه‌ستونیِ صفحه‌ها ───────────────────────────────────────────────────
   ستون محتوا همان عرضی را می‌گیرد که در سایت اصلی ستون میانی داشت:
   کل عرض منهای ستون کناری ۳۵۰px و حاشیه‌هایش. */
/* روی صفحه‌ی اصلی ستون کناری هست، پس ستون محتوا باریک‌تر می‌شود؛ روی بقیه‌ی
   صفحه‌ها ستون کناری نیست و محتوا تمام عرض را می‌گیرد. */
.rd-content { width: 100%; margin: 0; margin-top: 5px; }
.rd-home .rd-content { width: calc(100% - 380px); }
@media screen and (max-width: 1000px) { .rd-content { width: 100%; margin: 0; } }
.rd-main { padding: 6px 10px 40px; color: var(--rd-text); font-size: 15px; line-height: 1.9; max-width: none; }
@media screen and (max-width: 1000px) { .rd-main { padding-bottom: 70px; } }

/* «جواب کوتاه» — جعبه‌ی خلاصه‌ی بالای هر صفحه‌ی بازی */
.rd-quick {
  background: linear-gradient(180deg, rgba(252,179,7,.12), rgba(252,179,7,.03));
  border: 1px solid rgba(252,179,7,.42); border-right: 3px solid var(--rd-gold);
  border-radius: 8px; padding: 14px 16px; margin: 0 0 6px; color: #e9e9e9;
}
.rd-quick__k { display: block; font-size: 12px; color: var(--rd-gold); margin-bottom: 4px; }
.rd-quick p { margin: 0; }

/* «سه سؤال قبل از شروع» */
.rd-q { display: grid; gap: 10px; margin: 0; padding: 0; }
.rd-q > div {
  background: var(--rd-bg-2); border: 1px solid var(--rd-line-soft);
  border-radius: 8px; padding: 12px 14px;
}
.rd-q dt { font-weight: 500; color: var(--rd-gold); font-size: 15px; margin-bottom: 3px; }
.rd-q dd { margin: 0; color: var(--rd-text-2); font-size: 14px; }

/* «چک‌لیست اولین نشست» */
.rd-check { list-style: none; counter-reset: ck; padding: 0 !important; margin: 0; }
.rd-check li {
  counter-increment: ck; position: relative; padding-right: 34px; margin-bottom: 10px;
  color: #d8d8d8;
}
.rd-check li::before {
  content: '✓'; position: absolute; right: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 5px; display: grid; place-items: center;
  background: var(--rd-gold); color: #17130a; font-size: 13px; font-weight: 500;
}

/* ══════════════ کارت هنری بازی — همان نسبت ۵۹۵×۳۳۵ کارت‌های خودِ رد ۹۰ ══
   کارت‌های سایت اصلی فقط تصویرند و متن رویشان چاپ شده. کارت‌های ما هم همان
   تصویرند؛ نام و دکمه فقط روی هاور/فوکوس از پایین بالا می‌آیند تا هنر کارت
   پوشیده نشود. روی لمسی (بدون hover) روکش همیشه نیم‌بند دیده می‌شود. */
.rd-tiles {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px; padding: 0 10px 10px;
}
/* روی موبایل دو ستونه — یک‌ستونه صفحه را بی‌دلیل بلند می‌کند و کارتِ
   ۵۹۵×۳۳۵ در عرض ۳۷۰ هم کاملاً خوانا است. */
@media screen and (max-width: 640px) {
  .rd-tiles { grid-template-columns: 1fr 1fr; gap: 7px; padding: 0 7px 8px; }
  .rd-tile__badge { font-size: 10px; padding: 1px 6px; }
  .rd-tile__t { font-size: 13px; }
  .rd-tile__ov { padding: 22px 8px 8px; }
}
@media screen and (max-width: 359px) { .rd-tiles { grid-template-columns: 1fr; } }
.rd-tile {
  position: relative; display: block; overflow: hidden; border-radius: 6px;
  background: #140205; text-decoration: none; line-height: 0;
  border: 1px solid var(--rd-line-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.rd-tile__img { display: block; width: 100%; height: auto; aspect-ratio: 595 / 335; object-fit: cover; }
.rd-tile:hover, .rd-tile:focus-visible {
  transform: translateY(-3px); border-color: var(--rd-red);
  box-shadow: 0 10px 26px rgba(224, 27, 36, .3);
}
.rd-tile__ov {
  position: absolute; inset: auto 0 0 0; display: flex; flex-direction: column;
  gap: 3px; padding: 30px 12px 11px; line-height: 1.7; text-align: right;
  background: linear-gradient(0deg, rgba(5, 1, 2, .95) 26%, rgba(5, 1, 2, 0) 100%);
  transform: translateY(101%); transition: transform .22s ease;
}
.rd-tile:hover .rd-tile__ov, .rd-tile:focus-visible .rd-tile__ov { transform: translateY(0); }
.rd-tile__t { font-size: 15px; font-weight: 500; color: #fff; }
.rd-tile__d { font-size: 12.5px; color: var(--rd-text-2); }
.rd-tile__cta {
  align-self: flex-start; margin-top: 5px; font-size: 12.5px; font-weight: 500;
  color: #fff; background: linear-gradient(180deg, var(--rd-red), var(--rd-red-2));
  border-radius: 999px; padding: 4px 15px;
}
.rd-tile__badge {
  position: absolute; top: 8px; right: 8px; font-size: 11px; font-weight: 500;
  color: #17130a; background: var(--rd-gold); border-radius: 4px; padding: 2px 8px;
  line-height: 1.7;
}
.rd-tile[hidden] { display: none; }
/* روی دستگاه لمسی هاور وجود ندارد، پس روکش همیشه دیده می‌شود — ولی فقط یک
   نوار باریکِ یک‌خطی، وگرنه هنرِ کارت را که نام بازی رویش چاپ شده می‌پوشاند. */
@media (hover: none) {
  .rd-tile__ov {
    transform: translateY(0); padding: 18px 9px 7px; gap: 0;
    background: linear-gradient(0deg, rgba(5, 1, 2, .9) 46%, rgba(5, 1, 2, 0) 100%);
  }
  .rd-tile__d, .rd-tile__cta { display: none; }
  .rd-tile__t {
    font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rd-tile, .rd-tile__ov { transition: none; }
}
.rd-empty { margin: 0; padding: 0 12px 14px; color: var(--rd-text-2); font-size: 14px; }
.rd-empty[hidden] { display: none; }
.rd-empty a { color: var(--rd-gold); }

/* ردیف‌های بازی زیر هر دسته در ستون کناری — همان قاب .event-type خودِ پوسته */
.rd-sideitem {
  display: block; padding: 7px 12px; font-size: 13px; color: var(--rd-text-2);
  text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.rd-sideitem:hover { color: #fff; background: rgba(224, 27, 36, .14); }

/* نوار تبِ دسته‌ها: آیکون FontAwesome به‌جای فونتِ ورزشیِ سایت اصلی */
.categories .categorie-link .fa { font-size: 26px; line-height: 1; }
.categories .categorie-link { cursor: pointer; }

/* ── فرم تماس (بدون بک‌اند) ───────────────────────────────────────────── */
.rd-form { display: grid; gap: 12px; max-width: 620px; }
.rd-form__row { display: grid; gap: 5px; }
.rd-form label { font-size: 13.5px; color: var(--rd-text-2); }
.rd-form input, .rd-form select, .rd-form textarea {
  background: var(--rd-bg-2); border: 1px solid var(--rd-line); border-radius: 8px;
  padding: 10px 13px; color: #fff; font-family: inherit; font-size: 15px; width: 100%;
}
.rd-form input::placeholder, .rd-form textarea::placeholder { color: var(--rd-text-3); }
.rd-form textarea { min-height: 128px; resize: vertical; line-height: 1.9; }
.rd-form__2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media screen and (max-width: 600px) { .rd-form__2 { grid-template-columns: 1fr; } }
.rd-form__note { font-size: 13px; color: var(--rd-text-3); margin: 0; }
.rd-form__out {
  border: 1px solid var(--rd-line); border-right: 3px solid var(--rd-gold);
  background: var(--rd-bg-2); border-radius: 8px; padding: 12px 14px; color: #e9e9e9;
}
.rd-form__out[hidden] { display: none; }

/* ═══════════════════ بخش‌های مخصوص همین سایت ══════════════════════════ */
.rd-foot__legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 10px; }
.rd-foot__legal a { color: var(--rd-text-2); text-decoration: none; font-size: 13px; }
.rd-foot__legal a:hover { color: var(--rd-gold); text-decoration: underline; }

/* «اگر فقط یک چیز یاد بگیرید» */
.rd-one { border-right: 4px solid var(--rd-gold); background: var(--rd-bg-3);
  border-radius: 0 12px 12px 0; padding: 18px 20px; }
.rd-one p { margin: 0; color: var(--rd-text); font-size: 16px; line-height: 2; }

/* سه پله */
.rd-levels { display: grid; gap: 12px; }
.rd-level { position: relative; padding: 16px 60px 16px 18px; background: var(--rd-bg-3);
  border: 1px solid var(--rd-line-soft); border-radius: 12px; }
.rd-level__n { position: absolute; right: 16px; top: 16px; width: 32px; height: 32px;
  border-radius: 50%; border: 2px solid var(--rd-gold); color: var(--rd-gold);
  font-weight: 700; text-align: center; line-height: 28px; }
.rd-level h3 { margin: 0 0 8px; font-size: 16px; color: var(--rd-gold); }
.rd-level p { margin: 0; color: var(--rd-text-2); line-height: 1.95; }

/* درست/غلط */
.rd-myths { margin: 0; }
.rd-myth { background: var(--rd-bg-3); border: 1px solid var(--rd-line-soft);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.rd-myth dt { font-weight: 500; color: var(--rd-text); line-height: 1.9;
  display: flex; gap: 10px; align-items: flex-start; }
.rd-myth dd { margin: 8px 0 0; color: var(--rd-text-2); line-height: 1.9; }
.rd-myth__tag { flex: none; font-size: 12px; font-weight: 700; border-radius: 6px;
  padding: 3px 10px; line-height: 1.6; }
.rd-myth--yes { border-right: 3px solid var(--rd-gold); }
.rd-myth--yes .rd-myth__tag { background: var(--rd-gold); color: #1c1c1c; }
.rd-myth--no { border-right: 3px solid #7a7a7a; }
.rd-myth--no .rd-myth__tag { background: #3a3a3a; color: #d8d8d8; }
