* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f6f8fc;
  color: #111827;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e6eaf2;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111827;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #4b5563;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #2563eb;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 90px;
  background:
    radial-gradient(circle at 14% 18%, rgba(37, 99, 235, 0.12), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(14, 165, 233, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 52%, #f8fbff 100%);
  border-bottom: 1px solid #e6eaf2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 0 0 24px;
  max-width: 820px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 950;
  color: #0f172a;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #111827;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #111827;
}

p {
  margin: 0 0 16px;
  color: #4b5563;
}

.hero-text {
  max-width: 720px;
  font-size: 20px;
  color: #374151;
}

.hero-card {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dbe4f0;
  box-shadow:
    0 22px 70px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.info-list span {
  color: #64748b;
}

.info-list strong {
  text-align: right;
  color: #0f172a;
}

/* SECTIONS */

.section {
  padding: 92px 0;
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
}

.section-muted {
  background: #f6f8fc;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5eaf3;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 900;
  border: 1px solid #bfdbfe;
}

/* FEATURE BLOCKS */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.feature-panel,
.highlight-panel {
  padding: 36px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid #e5eaf3;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.highlight-panel {
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* STEPS */

.steps-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  position: relative;
  padding: 20px 20px 20px 74px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 900;
}

.steps-list strong {
  display: block;
  color: #111827;
}

.steps-list p {
  margin: 6px 0 0;
}

/* KEYWORDS */

.keyword-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.keyword-box span {
  padding: 10px 15px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.06);
}

/* INTENT TABLE */

.intent-table {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.intent-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5eaf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.intent-table strong {
  color: #111827;
}

.intent-table span {
  color: #4b5563;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 22px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5eaf3;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

details[open] {
  border-color: #bfdbfe;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}

details p {
  margin-top: 14px;
}

/* FOOTER */

.site-footer {
  padding: 38px 0;
  background: #ffffff;
  border-top: 1px solid #e6eaf2;
  color: #64748b;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-grid strong {
  color: #111827;
}

.footer-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.footer-nav a {
  color: #475569;
}

.footer-nav a:hover {
  color: #2563eb;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid,
  .two-columns,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 76px 0 72px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .intent-table div {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}
.app-showcase-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 54px;
  align-items: center;
}

.app-phone {
  position: relative;
  min-height: 520px;
  padding: 76px 24px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 44px;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.phone-head {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 116px;
  height: 28px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #e4eef8;
}

.phone-card {
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dfeaf6;
  color: #172033;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.phone-card.blue {
  color: #ffffff;
  background: linear-gradient(135deg, #1688ff, #3aa8ff);
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.app-stats div {
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.app-stats strong,
.app-stats span {
  display: block;
}

.app-stats strong {
  color: #111827;
  font-size: 24px;
}

.app-stats span {
  color: #6b7280;
  font-size: 13px;
}

.app-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.app-card {
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #2563eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.app-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #2563eb;
  background: #eef7ff;
  font-weight: 950;
}

.app-banner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #1688ff, #3aa8ff);
  box-shadow: 0 26px 70px rgba(22, 136, 255, .22);
}

.app-banner h2,
.app-banner p,
.app-banner span,
.app-banner strong {
  color: #ffffff;
}

.banner-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.34);
  font-size: 13px;
  font-weight: 900;
}

.banner-steps {
  display: grid;
  gap: 14px;
}

.banner-steps div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
}

.banner-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.compare-table {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.compare-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.compare-row strong {
  color: #111827;
}

.compare-row span {
  color: #6b7280;
}

@media (max-width: 1000px) {
  .app-showcase-grid,
  .app-banner {
    grid-template-columns: 1fr;
  }

  .app-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-phone {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .app-card-grid,
  .app-stats,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .app-banner {
    padding: 26px;
    border-radius: 26px;
  }
}

/* Added content/media blocks */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.media-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5eaf3;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}
.media-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #eef2f7;
}
.media-card h3,
.media-card p,
.media-card ul {
  padding-left: 22px;
  padding-right: 22px;
}
.media-card h3 { margin-top: 18px; }
.media-card ul { margin-bottom: 22px; color: #4b5563; }
.media-card li { margin-bottom: 6px; }
.mini-media { grid-template-columns: 1fr; }
@media (max-width: 980px) { .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .media-grid { grid-template-columns: 1fr; } .media-card img { height: 170px; } }

/* Trust and factual content additions */
.content-meta { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; color:#64748b; font-size:13px; }
.content-meta span { padding:8px 12px; border-radius:999px; background:#ffffff; border:1px solid #dbeafe; }
.note-box { padding:22px; border-radius:24px; background:#eff6ff; border:1px solid #bfdbfe; color:#334155; }
.table-wrap { overflow-x:auto; margin-top:28px; border-radius:24px; border:1px solid #e5eaf3; background:#fff; box-shadow:0 10px 30px rgba(15,23,42,.04); }
.data-table { width:100%; border-collapse:collapse; min-width:720px; }
.data-table th, .data-table td { padding:16px 18px; text-align:left; border-bottom:1px solid #e5eaf3; color:#4b5563; vertical-align:top; }
.data-table th { color:#111827; background:#f8fafc; }
.data-table tr:last-child td { border-bottom:0; }
.site-footer span { max-width:620px; display:inline-block; }
@media (max-width:640px){ .content-meta { flex-direction:column; align-items:flex-start; } }
/* =========================
   Tonplay Header Navigation
   ========================= */

.tp-header,
.tp-header * {
  box-sizing: border-box;
}

.tp-header ul,
.tp-header li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tp-header a {
  text-decoration: none !important;
}

.tp-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #dbe5f0;
  backdrop-filter: blur(14px);
}

.tp-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.tp-logo {
  flex: 0 0 auto;
  color: #101827 !important;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tp-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.tp-nav__list {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.tp-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: #475569 !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tp-nav__list a:hover {
  color: #0f172a !important;
  background: #eef6ff;
}

.tp-more {
  position: relative;
  flex: 0 0 auto;
}

.tp-more__button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #d7e3f1;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tp-more__button:hover {
  background: #f3f8ff;
  border-color: #bfd6ef;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.tp-burger {
  width: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.tp-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
}

.tp-more__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 440px;
  padding: 18px;
  border: 1px solid #d8e5f2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.tp-more.open .tp-more__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.tp-more__label-mobile,
.tp-mobile-menu-item {
  display: none !important;
}

.tp-more__title {
  margin-bottom: 12px;
  padding: 0 4px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.tp-more__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tp-more__grid a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #405166 !important;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tp-more__grid a:hover {
  color: #0f172a !important;
  background: #eef6ff;
  transform: translateX(2px);
}

@media (max-width: 1020px) {
  .tp-nav__list li:nth-child(5) {
    display: none !important;
  }

  .tp-more__dropdown {
    width: 400px;
  }
}

@media (max-width: 860px) {
  .tp-nav__list li:nth-child(4),
  .tp-nav__list li:nth-child(5) {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .tp-header__inner {
    min-height: 72px;
    gap: 14px;
  }

  .tp-logo {
    font-size: 21px;
  }

  .tp-nav__list {
    display: none !important;
  }

  .tp-more__label-desktop {
    display: none !important;
  }

  .tp-more__label-mobile,
  .tp-mobile-menu-item {
    display: flex !important;
  }

  .tp-more__button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .tp-more__dropdown {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 14px;
    border-radius: 20px;
  }

  .tp-more__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .tp-nav {
    gap: 8px;
  }

  .tp-logo {
    font-size: 20px;
  }

  .tp-more__dropdown {
    top: 78px;
    left: 12px;
    right: 12px;
  }
}
.review-source-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid #dbe7f5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}
.review-source-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid #cfe0f3;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.review-source-table table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
}

.review-source-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 20px 16px;
  color: #0f172a;
  background: linear-gradient(180deg, #eef6ff, #e7f1fc);
  border-bottom: 1px solid #cfe0f3;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}

.review-source-table thead th:first-child {
  border-top-left-radius: 25px;
}

.review-source-table thead th:last-child {
  border-top-right-radius: 25px;
}

.review-source-table tbody tr {
  background: #ffffff;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.review-source-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.review-source-table tbody tr:hover {
  position: relative;
  z-index: 1;
  background: #edf6ff;
  box-shadow: inset 4px 0 0 #2563eb, 0 12px 28px rgba(37, 99, 235, 0.08);
}

.review-source-table td {
  padding: 20px 16px;
  border-bottom: 1px solid #dbe8f6;
  color: #263954;
  font-size: 15px;
  line-height: 1.58;
  vertical-align: top;
}

.review-source-table tbody tr:last-child td {
  border-bottom: 0;
}

.review-source-table td:first-child strong {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f172a;
  background: #eef6ff;
  font-size: 14px;
  font-weight: 900;
}

.review-source-table td:nth-child(2) {
  color: #0f3f91;
  font-weight: 700;
}

.review-source-table td:nth-child(5) {
  color: #64748b;
  white-space: nowrap;
}

.review-source-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #38a8ff);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.review-source-table a:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

@media (max-width: 760px) {
  .review-source-table {
    margin-top: 22px;
    border-radius: 22px;
  }

  .review-source-table table {
    min-width: 980px;
  }

  .review-source-table th,
  .review-source-table td {
    padding: 16px 14px;
    font-size: 14px;
  }
}
.source-note {
  margin-top: 16px;
  color: #64748b;
  font-size: 14px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.trust-card {
  padding: 24px;
  border: 1px solid #dbe7f5;
  border-top: 4px solid #2563eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}
.trust-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #eaf4ff;
  color: #2563eb;
  font-weight: 900;
}
.trust-card h3 {
  margin-bottom: 12px;
}
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.check-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 34px !important;
}

.check-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border: 1px solid #d8e5f2 !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease !important;
}

.check-card:hover {
  transform: translateY(-6px) !important;
  border-color: #b8d8fb !important;
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.12) !important;
}

.check-card-image {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #eef6ff, #f7fbff) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
}

.check-card-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.check-card:hover .check-card-image img {
  transform: scale(1.04) !important;
}

.check-card-body {
  padding: 24px !important;
}

.check-card-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-bottom: 18px !important;
}

.check-number {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 16px !important;
  color: #2563eb !important;
  background: #eef6ff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.check-tag {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid #cfe2f7 !important;
  border-radius: 999px !important;
  color: #2563eb !important;
  background: #f3f8ff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.check-card h3 {
  margin: 0 0 14px !important;
  color: #0f172a !important;
  font-size: 23px !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
}

.check-card p {
  margin: 0 0 18px !important;
  color: #334155 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.check-list {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.check-list li {
  position: relative !important;
  margin: 0 !important;
  padding-left: 28px !important;
  color: #334155 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.check-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 8px !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #2563eb, #38a8ff) !important;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08) !important;
}

@media (max-width: 980px) {
  .check-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .check-card-image {
    height: 260px !important;
  }
}

@media (max-width: 640px) {
  .check-cards-grid {
    gap: 18px !important;
    margin-top: 26px !important;
  }

  .check-card {
    border-radius: 22px !important;
  }

  .check-card-image {
    height: 210px !important;
  }

  .check-card-body {
    padding: 20px !important;
  }
}

.promo-status-table{width:100%;overflow-x:auto;margin-top:28px;border:1px solid #cfe0f3;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,251,255,.98));box-shadow:0 22px 60px rgba(15,23,42,.08)}
.promo-status-table table{width:100%;min-width:1120px;border-collapse:separate;border-spacing:0}.promo-status-table th{padding:18px 16px;color:#0f172a;background:linear-gradient(180deg,#eef6ff,#e7f1fc);border-bottom:1px solid #cfe0f3;font-size:15px;font-weight:900;line-height:1.35;text-align:left;white-space:nowrap}.promo-status-table td{padding:18px 16px;border-bottom:1px solid #dbe8f6;color:#263954;font-size:15px;line-height:1.58;vertical-align:top}.promo-status-table tr:last-child td{border-bottom:0}.promo-status-table tbody tr{background:#fff;transition:background-color .2s ease,box-shadow .2s ease}.promo-status-table tbody tr:nth-child(even){background:#f8fbff}.promo-status-table tbody tr:hover{background:#edf6ff;box-shadow:inset 4px 0 0 #2563eb}.promo-status-table td:first-child strong{display:inline-flex;padding:7px 10px;border-radius:999px;color:#0f172a;background:#eef6ff;font-size:14px;font-weight:900}.promo-status-table a{display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;color:#fff;background:linear-gradient(135deg,#2563eb,#38a8ff);font-size:14px;font-weight:900;text-decoration:none;box-shadow:0 10px 24px rgba(37,99,235,.18)}
.editor-note{margin-top:22px;padding:22px;border:1px solid #cfe0f3;border-radius:22px;background:#f8fbff;color:#263954;line-height:1.7}
@media(max-width:760px){.promo-status-table table{min-width:980px}.tp-nav{display:flex!important}}

.app-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.app-screen-card {
  overflow: hidden;
  border: 1px solid #d8e5f2;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.app-screen-card:hover {
  transform: translateY(-5px);
  border-color: #b8d8fb;
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.12);
}

.app-screen-image {
  width: 100%;
  height: 682px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #eef6ff, #f7fbff);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.app-screen-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

.app-screen-body {
  padding: 26px 24px 28px;
}

.app-screen-body h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.app-screen-body p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
}

.app-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-check-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.app-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38a8ff);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

@media (max-width: 1180px) {
  .app-screen-image {
    height: 390px;
  }
}

@media (max-width: 980px) {
  .app-screens-grid {
    grid-template-columns: 1fr;
  }

  .app-screen-image {
    height: 620px;
  }

  .app-screen-image img {
    object-fit: contain;
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .app-screens-grid {
    gap: 18px;
  }

  .app-screen-card {
    border-radius: 22px;
  }

  .app-screen-image {
    height: 470px;
  }

  .app-screen-image img {
    padding: 12px;
  }

  .app-screen-body {
    padding: 22px 20px 24px;
  }
}
.app-compare-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
  border: 1px solid #d8e5f2;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.app-compare-table table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.app-compare-table th,
.app-compare-table td {
  text-align: left;
  vertical-align: top;
}

.app-compare-table th {
  padding: 18px 18px;
  color: #0f172a;
  background: linear-gradient(180deg, #eef6ff, #e7f1fc);
  border-bottom: 1px solid #d8e5f2;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.app-compare-table td {
  padding: 18px 18px;
  border-bottom: 1px solid #e1edf8;
  color: #263954;
  font-size: 15px;
  line-height: 1.58;
}

.app-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.app-compare-table tbody tr {
  background: #ffffff;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.app-compare-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.app-compare-table tbody tr:hover {
  background: #edf6ff;
  box-shadow: inset 4px 0 0 #2563eb;
}

.app-compare-table td:first-child strong {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #0f172a;
  background: #eef6ff;
  font-size: 14px;
  font-weight: 900;
}

.app-compare-table th:nth-child(1),
.app-compare-table td:nth-child(1) {
  width: 16%;
}

.app-compare-table th:nth-child(2),
.app-compare-table td:nth-child(2) {
  width: 20%;
}

.app-compare-table th:nth-child(3),
.app-compare-table td:nth-child(3) {
  width: 16%;
}

.app-compare-table th:nth-child(4),
.app-compare-table td:nth-child(4) {
  width: 22%;
}

.app-compare-table th:nth-child(5),
.app-compare-table td:nth-child(5) {
  width: 26%;
}

.app-note {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #cfe0f3;
  border-radius: 22px;
  background: #f8fbff;
  color: #263954;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .app-compare-table {
    border-radius: 22px;
  }

  .app-compare-table table {
    min-width: 900px;
  }
}

@media (max-width: 640px) {
  .app-compare-table {
    margin-top: 24px;
    border-radius: 20px;
  }

  .app-compare-table table {
    min-width: 820px;
  }

  .app-compare-table th,
  .app-compare-table td {
    padding: 15px 14px;
    font-size: 14px;
  }

  .app-note {
    padding: 18px;
    font-size: 15px;
  }
}

.game-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.game-format-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px 26px;
  border: 1px solid #d8e5f2;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(56, 168, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.game-format-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #38a8ff);
}

.game-format-card:hover {
  transform: translateY(-6px);
  border-color: #b8d8fb;
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.13);
}

.game-format-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.game-format-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 38px;
  border-radius: 14px;
  background: #eef6ff;
  color: #2563eb;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.game-format-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d8e5f2;
  border-radius: 999px;
  background: #ffffff;
  color: #52708f;
  font-size: 13px;
  font-weight: 800;
}

.game-format-card h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.game-format-card p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 15.5px;
  line-height: 1.65;
}

.game-format-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-format-card li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-size: 14.5px;
  line-height: 1.45;
}

.game-format-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38a8ff);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

@media (max-width: 1180px) {
  .game-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-format-card {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .game-format-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-format-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .game-format-card h3 {
    font-size: 23px;
  }

  .game-format-card p {
    font-size: 15px;
  }
}


.contact-link {
      color: #2563eb;
      font-weight: 800;
      text-decoration: none;
    }

    .contact-link:hover {
      text-decoration: underline;
    }

    .contact-form {
      display: grid;
      gap: 16px;
      margin-top: 24px;
      padding: 28px;
      border: 1px solid #d8e5f2;
      border-radius: 28px;
      background: #ffffff;
      box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    }

    .contact-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .contact-field {
      display: grid;
      gap: 8px;
      color: #0f172a;
      font-size: 14px;
      font-weight: 800;
    }

    .contact-field input,
    .contact-field select,
    .contact-field textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid #cfe0f3;
      border-radius: 14px;
      background: #f8fbff;
      color: #0f172a;
      font: inherit;
      font-weight: 500;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .contact-field textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-field input:focus,
    .contact-field select:focus,
    .contact-field textarea:focus {
      border-color: #2563eb;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
    }

    .contact-field-full {
      grid-column: 1 / -1;
    }

    .contact-form-note {
      color: #52637a;
      font-size: 14px;
      line-height: 1.6;
    }

    .contact-form-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 4px;
    }

    .contact-submit {
      min-height: 50px;
      padding: 0 20px;
      border: 0;
      border-radius: 16px;
      color: #ffffff;
      background: linear-gradient(135deg, #2563eb, #38a8ff);
      font-size: 15px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .contact-submit:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
      box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
    }

    .contact-status {
      color: #334155;
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-hidden {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .source-badge {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid #cfe2f7;
      border-radius: 999px;
      color: #2563eb;
      background: #f3f8ff;
      font-size: 13px;
      font-weight: 800;
    }

    @media (max-width: 760px) {
      .contact-form {
        padding: 20px;
        border-radius: 22px;
      }

      .contact-form-grid {
        grid-template-columns: 1fr;
      }
    }

.data-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 28px;
    border: 1px solid #cfe0f3;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.98));
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
  }
  .data-table-wrap table {
    width: 100%;
    min-width: 1040px;
    border-collapse: separate;
    border-spacing: 0;
  }
  .data-table-wrap th {
    padding: 18px 16px;
    color: #0f172a;
    background: linear-gradient(180deg, #eef6ff, #e7f1fc);
    border-bottom: 1px solid #cfe0f3;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
  }
  .data-table-wrap td {
    padding: 18px 16px;
    border-bottom: 1px solid #dbe8f6;
    color: #263954;
    font-size: 15px;
    line-height: 1.58;
    vertical-align: top;
  }
  .data-table-wrap tr:last-child td {
    border-bottom: 0;
  }
  .data-table-wrap tbody tr:nth-child(even) {
    background: #f8fbff;
  }
  .data-table-wrap tbody tr:hover {
    background: #edf6ff;
    box-shadow: inset 4px 0 0 #2563eb;
  }
  .data-table-wrap td:first-child strong {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    color: #0f172a;
    background: #eef6ff;
    font-size: 14px;
    font-weight: 900;
  }
  .editor-note {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid #cfe0f3;
    border-radius: 22px;
    background: #f8fbff;
    color: #263954;
    font-size: 16px;
    line-height: 1.7;
  }
  .source-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
  }
  .source-list a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
  }
  @media (max-width: 760px) {
    .data-table-wrap table {
      min-width: 900px;
    }
  }

.bot-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .bot-feature-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    border: 1px solid #d8e5f2;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 20px 55px rgba(15,23,42,.07);
    overflow: hidden;
  }
  .bot-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #38a8ff);
  }
  .bot-feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 36px;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 14px;
    background: #eef6ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 900;
  }
  .bot-feature-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -.03em;
  }
  .bot-feature-card p {
    margin: 0;
    color: #334155;
    line-height: 1.62;
    font-size: 15px;
  }
  .bot-safety-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
  }
  .bot-safety-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid #dbe8f6;
    border-radius: 18px;
    background: #ffffff;
  }
  .bot-safety-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #38a8ff);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
  }
  .bot-safety-list b {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
  }
  .bot-safety-list p {
    margin: 0;
    color: #334155;
    line-height: 1.55;
  }
  .bot-danger-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }
  .bot-danger-card {
    padding: 24px;
    border: 1px solid #ffd6d6;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fff7f7);
    box-shadow: 0 18px 44px rgba(15,23,42,.06);
  }
  .bot-danger-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.2;
  }
  .bot-danger-card p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
  }
  @media (max-width: 980px) {
    .bot-feature-grid,
    .bot-danger-grid {
      grid-template-columns: 1fr;
    }
  }

.telegram-status-box {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 26px;
    margin-top: 30px;
  }
  .telegram-status-card {
    padding: 28px;
    border: 1px solid #cfe0f3;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
  }
  .telegram-status-card strong {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 900;
  }
  .telegram-status-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.04em;
  }
  .telegram-status-card p {
    margin: 0;
    color: #334155;
    line-height: 1.7;
  }
  .telegram-checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .telegram-checklist li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid #dbe8f6;
    border-radius: 18px;
    background: #fff;
  }
  .telegram-checklist span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #38a8ff);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
  }
  .telegram-checklist b {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 16px;
  }
  .telegram-checklist p {
    margin: 0;
    color: #334155;
    line-height: 1.55;
    font-size: 15px;
  }
  .danger-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }
  .danger-card {
    padding: 24px;
    border: 1px solid #ffd6d6;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #fff7f7);
    box-shadow: 0 18px 44px rgba(15,23,42,.06);
  }
  .danger-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.2;
  }
  .danger-card p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
  }
  @media (max-width: 980px) {
    .telegram-status-box,
    .danger-grid {
      grid-template-columns: 1fr;
    }
  }

.data-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 28px;
    border: 1px solid #cfe0f3;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.98));
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
  }
  .data-table-wrap table {
    width: 100%;
    min-width: 1040px;
    border-collapse: separate;
    border-spacing: 0;
  }
  .data-table-wrap th {
    padding: 18px 16px;
    color: #0f172a;
    background: linear-gradient(180deg, #eef6ff, #e7f1fc);
    border-bottom: 1px solid #cfe0f3;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
  }
  .data-table-wrap td {
    padding: 18px 16px;
    border-bottom: 1px solid #dbe8f6;
    color: #263954;
    font-size: 15px;
    line-height: 1.58;
    vertical-align: top;
  }
  .data-table-wrap tr:last-child td {
    border-bottom: 0;
  }
  .data-table-wrap tbody tr:nth-child(even) {
    background: #f8fbff;
  }
  .data-table-wrap tbody tr:hover {
    background: #edf6ff;
    box-shadow: inset 4px 0 0 #2563eb;
  }
  .data-table-wrap td:first-child strong {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    color: #0f172a;
    background: #eef6ff;
    font-size: 14px;
    font-weight: 900;
  }
  .editor-note {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid #cfe0f3;
    border-radius: 22px;
    background: #f8fbff;
    color: #263954;
    font-size: 16px;
    line-height: 1.7;
  }
  .source-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
  }
  .source-list a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
  }
  @media (max-width: 760px) {
    .data-table-wrap table {
      min-width: 900px;
    }
  }

  .support-request-card {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid #cfe0f3;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  }

  .support-request-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
    border-bottom: 1px solid #dbe8f6;
  }

  .support-request-head span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ffffff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
  }

  .support-request-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.04em;
  }

  .support-request-body {
    padding: 26px;
  }

  .support-request-body p {
    margin: 0 0 18px;
    color: #263954;
    font-size: 16px;
    line-height: 1.7;
  }

  .support-request-form {
    display: grid;
    gap: 20px;
  }

  .support-inline-fields {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
  }

  .support-request-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .support-field {
    display: grid;
    gap: 8px;
  }

  .support-field label {
    color: #52677f;
    font-size: 13px;
    font-weight: 900;
  }

  .support-field input,
  .support-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 15px 16px;
    border: 1px solid #d8e5f2;
    border-radius: 18px;
    background: #f8fbff;
    color: #0f172a;
    font: inherit;
    line-height: 1.45;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .support-field textarea {
    min-height: 118px;
    resize: vertical;
  }

  .support-field input:focus,
  .support-field textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  }

  .support-field input::placeholder,
  .support-field textarea::placeholder {
    color: #8aa0b7;
  }

  .support-request-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 2px;
  }

  .support-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38a8ff);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .support-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
  }

  .support-form-status {
    color: #52677f;
    font-size: 14px;
    line-height: 1.45;
  }

  .support-request-note {
    padding: 18px 26px;
    border-top: 1px solid #dbe8f6;
    background: #f8fbff;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
  }

  @media (max-width: 680px) {
    .support-request-head {
      display: grid;
    }

    .support-inline-fields,
    .support-request-fields {
      grid-template-columns: 1fr;
    }

    .support-request-head h3 {
      font-size: 23px;
    }
  }

.withdraw-warning {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 24px;
    margin-top: 28px;
  }
  .withdraw-warning-card {
    padding: 28px;
    border: 1px solid #cfe0f3;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
  }
  .withdraw-warning-card strong {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #2563eb;
    background: #eef6ff;
    font-size: 14px;
    font-weight: 900;
  }
  .withdraw-warning-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.04em;
  }
  .withdraw-warning-card p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
  }
  .withdraw-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
  }
  .withdraw-check-card {
    position: relative;
    min-height: 210px;
    padding: 24px;
    border: 1px solid #d8e5f2;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
    overflow: hidden;
  }
  .withdraw-check-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #38a8ff);
  }
  .withdraw-check-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 34px;
    margin-bottom: 16px;
    padding: 0 10px;
    border-radius: 12px;
    color: #2563eb;
    background: #eef6ff;
    font-size: 13px;
    font-weight: 900;
  }
  .withdraw-check-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.03em;
  }
  .withdraw-check-card p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
    font-size: 15px;
  }
  .support-template {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid #cfe0f3;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
  }
  .support-template pre {
    white-space: pre-wrap;
    margin: 0;
    color: #263954;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.75;
  }
  @media (max-width: 980px) {
    .withdraw-warning,
    .withdraw-check-grid {
      grid-template-columns: 1fr;
    }
  }
