@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --black: #170d22;
  --black-light: #2b1c3d;
  --black-hover: #472f62;
  --gold: #ffca61;
  --gold-hover: #ffa900;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --purple: #b758ff;
  --green: #23ba34;
  --blue-violet: #7672ff;
  --cyan: #61d5ff;
  --red: #ff6161;
  --orange: #ffa900;
  --glass: rgba(23, 13, 34, 0.72);
  --glass-border: rgba(255, 202, 97, 0.18);
  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --container: 1280px;
  --header-h: 72px;
  --header-offset: 18px;
  --header-total: calc(var(--header-offset) + var(--header-h));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  line-height: 1.4;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 88, 255, 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(97, 213, 255, 0.1), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 202, 97, 0.08), transparent 40%),
    url("../img/main-bg.png") center / cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 13, 34, 0.35) 0%, rgba(23, 13, 34, 0.92) 100%);
  z-index: -1;
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline:hover svg path {
  stroke: var(--black);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.section-subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}
.site-header {
  position: fixed;
  top: var(--header-offset);
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 20px;
  pointer-events: none;
}

.site-header.is-menu-open {
  z-index: 300;
}

.header-shell {
  pointer-events: auto;
  width: min(var(--container), 100%);
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 202, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 202, 97, 0.08) 0%, transparent 28%),
    linear-gradient(135deg, rgba(43, 28, 61, 0.92), rgba(23, 13, 34, 0.88));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(255, 202, 97, 0.24);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 38px;
  width: auto;
}



.header-start {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(23, 13, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.is-active {
  color: var(--black);
  font-weight: 700;
  background: linear-gradient(180deg, #ffd77f 0%, var(--gold) 100%);
  box-shadow: 0 6px 18px rgba(255, 202, 97, 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-dropdown {
  position: relative;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 58px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(23, 13, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
}

.lang-switch img {
  width: 11px;
  opacity: 0.75;
  transition: transform 0.25s ease;
}

.lang-dropdown.is-open .lang-switch img {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 88px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(23, 13, 34, 0.96);
  border: 1px solid rgba(255, 202, 97, 0.18);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.lang-menu button:hover {
  color: var(--gold);
  background: rgba(255, 202, 97, 0.08);
}

.header-link {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.header-link:hover {
  color: var(--gold);
}

.header-cta {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(180deg, #ffd77f 0%, var(--gold) 100%);
  box-shadow: 0 8px 22px rgba(255, 202, 97, 0.24);
}

.header-cta:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-hover) 100%);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(23, 13, 34, 0.55);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(var(--header-h) + 10px);
  left: 50%;
  width: min(var(--container), calc(100% - 40px));
  margin: 0;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 202, 97, 0.14);
  background: linear-gradient(180deg, rgba(43, 28, 61, 0.98), rgba(23, 13, 34, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  max-height: calc(100vh - var(--header-total) - 32px);
  overflow-y: auto;
}

.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-links a.is-active {
  color: var(--gold);
  background: rgba(255, 202, 97, 0.1);
}

.mobile-menu-links a:active {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-lang {
  margin-top: 4px;
  padding: 12px 16px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-lang-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mobile-lang-options button {
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(23, 13, 34, 0.55);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-lang-options button.is-active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 8px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-actions .btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(23, 13, 34, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-total) + 48px) 0 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 13, 34, 0.2) 0%, rgba(23, 13, 34, 0.95) 88%),
    radial-gradient(circle at 50% 40%, rgba(183, 88, 255, 0.12), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  width: fit-content;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(35, 186, 52, 0.14);
  border: 1px solid rgba(35, 186, 52, 0.35);
  color: #7ef08d;
  font-size: 14px;
  font-weight: 600;
}

.hero-badge strong {
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--gold), #ffe6a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 520px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-lead em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  background: rgba(43, 28, 61, 0.45);
}

.social-link:hover {
  background: var(--white);
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.social-link:hover img {
  filter: brightness(0);
}

.hero-panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(43, 28, 61, 0.82), rgba(23, 13, 34, 0.72));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 88, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-panel > p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(23, 13, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 14px;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 202, 97, 0.35) transparent;
}

.faq-item {
  border-radius: 14px;
  background: rgba(23, 13, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(255, 202, 97, 0.28);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255, 202, 97, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(255, 202, 97, 0.22);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item p {
  padding: 0 14px 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.classes {
  padding: 110px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}

.classes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: stretch;
}

.classes-faq {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(43, 28, 61, 0.82), rgba(23, 13, 34, 0.88));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.classes-faq::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -15%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 213, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.classes-faq-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
}

.classes-faq-body h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.classes-faq-lead {
  color: var(--muted);
  font-size: 15px;
}

.class-selector {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(43, 28, 61, 0.72);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.class-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.class-tab {
  aspect-ratio: 1;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(23, 13, 34, 0.55);
  display: grid;
  place-items: center;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.class-tab img {
  width: 52px;
  height: 52px;
}

.class-tab:hover,
.class-tab.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.class-tab.is-active {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.class-tab[data-color="purple"].is-active {
  background: rgba(183, 88, 255, 0.18);
  border-color: var(--purple);
}

.class-tab[data-color="green"].is-active {
  background: rgba(35, 186, 52, 0.18);
  border-color: var(--green);
}

.class-tab[data-color="blue-violet"].is-active {
  background: rgba(118, 114, 255, 0.18);
  border-color: var(--blue-violet);
}

.class-tab[data-color="cyan"].is-active {
  background: rgba(97, 213, 255, 0.18);
  border-color: var(--cyan);
}

.class-tab[data-color="red"].is-active {
  background: rgba(255, 97, 97, 0.18);
  border-color: var(--red);
}

.class-tab[data-color="orange"].is-active {
  background: rgba(255, 169, 0, 0.18);
  border-color: var(--orange);
}

.class-info {
  display: none;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.35s ease;
}

.class-info.is-active {
  display: flex;
}

.class-info h3 {
  font-size: 28px;
  font-weight: 800;
}

.class-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.class-info a {
  font-weight: 700;
}

.class-info[data-color="purple"] h3,
.class-info[data-color="purple"] a { color: var(--purple); }
.class-info[data-color="green"] h3,
.class-info[data-color="green"] a { color: var(--green); }
.class-info[data-color="blue-violet"] h3,
.class-info[data-color="blue-violet"] a { color: var(--blue-violet); }
.class-info[data-color="cyan"] h3,
.class-info[data-color="cyan"] a { color: var(--cyan); }
.class-info[data-color="red"] h3,
.class-info[data-color="red"] a { color: var(--red); }
.class-info[data-color="orange"] h3,
.class-info[data-color="orange"] a { color: var(--orange); }
.news {
  padding: 40px 0 120px;
}

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

.news-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(43, 28, 61, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.news-card.is-hidden {
  display: none;
}

.news-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(183, 88, 255, 0.25), rgba(23, 13, 34, 0.9));
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.06);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.news-meta img {
  width: 16px;
  opacity: 0.7;
}

.news-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.news-card h3 a:hover {
  color: var(--gold-hover);
}

.news-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.site-footer {
  padding: 48px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(23, 13, 34, 0.55);
}

body.has-cookie-banner {
  padding-bottom: 120px;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 14px;
}



.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(23, 13, 34, 0.45);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: rgba(255, 202, 97, 0.22);
  background: rgba(255, 202, 97, 0.08);
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.footer-social-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer-social-link:hover .footer-social-icon img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(34%) saturate(746%) hue-rotate(337deg) brightness(101%) contrast(101%);
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.footer-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer-block a {
  color: var(--gold);
}

.footer-block a:hover {
  color: var(--gold-hover);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom p {
  max-width: 820px;
}
























@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
.hero-grid,
.classes-layout {
    grid-template-columns: 1fr;
  }

  .classes-faq {
    min-height: 420px;
  }

  .main-nav {
    gap: 4px;
    padding: 5px;
  }

  .main-nav a {
    padding: 9px 12px;
    font-size: 14px;
  }

  .header-link {
    display: none;
  }
}

@media (max-width: 900px) {
.main-nav,
.header-link,
.header-cta,
.header-account-stat,
.lang-dropdown {
    display: none;
  }

  .header-shell {
    gap: 12px;
  }

  .header-start {
    flex: 1;
    gap: 0;
    min-width: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
.hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .class-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.inner-page {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-total) + 32px) 0 80px;
  overflow: hidden;
}

.inner-page-video {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.inner-page-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.inner-page-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 13, 34, 0.2) 0%, rgba(23, 13, 34, 0.95) 88%),
    radial-gradient(circle at 50% 40%, rgba(183, 88, 255, 0.12), transparent 55%);
}
.ranking-panel {
  border-radius: var(--radius-lg);
  background: rgba(43, 28, 61, 0.92);
  border: 1px solid rgba(255, 202, 97, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 32px 48px;
  max-width: 1300px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}

.ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.ranking-title {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 800;
  line-height: 1;
}

.ranking-sort-label {
  font-size: 16px;
  line-height: 1.3;
  color: var(--muted);
  text-align: right;
}

.ranking-table-wrap {
  max-height: min(58vh, 640px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--black-hover) transparent;
  border-radius: 12px;
}

.ranking-table-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.ranking-table-wrap::-webkit-scrollbar-thumb {
  background: var(--black-hover);
  border-radius: var(--radius-pill);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ranking-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  font-weight: 600;
  white-space: nowrap;
  background: rgb(43, 28, 61);
  box-shadow: 0 1px 0 var(--black-hover);
}

.ranking-table th,
.ranking-table td {
  padding: 14px 13px;
  font-size: 16px;
  color: var(--white);
  border-bottom: 1px solid var(--black-hover);
  vertical-align: middle;
}

.ranking-table th:not(.ranking-col-rank):not(.ranking-col-name),
.ranking-table td:not(.ranking-col-rank):not(.ranking-col-name) {
  text-align: center;
}

.ranking-table th.sortable {
  cursor: pointer;
  transition: color 0.25s ease;
}

.ranking-table th.sortable svg {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 8px;
}

.ranking-table th.sortable:hover,
.ranking-table th.sortable.is-active {
  color: var(--gold-hover);
}

.ranking-table td img {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 6px 0 0;
}

.ranking-col-rank {
  width: 72px;
  text-align: left;
}

.ranking-col-name {
  width: 36%;
  text-align: left;
}

.ranking-player {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ranking-player b {
  font-size: 18px;
  font-weight: 600;
}

.ranking-player span {
  font-size: 16px;
  color: var(--muted);
}

@media (max-width: 991px) {
.ranking-panel {
    padding: 16px 14px;
  }

  .ranking-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }

  .ranking-sort-label {
    text-align: center;
    font-size: 14px;
  }

  .ranking-table-wrap {
    max-height: none;
    overflow: visible;
  }

  .ranking-table {
    display: block;
  }

  .ranking-table colgroup {
    display: none;
  }

  .ranking-table thead {
    display: none;
  }

  .ranking-table tbody {
    display: block;
  }

  .ranking-table tbody tr {
    display: grid;
    grid-template-columns: 48px 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(23, 13, 34, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .ranking-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .ranking-table tbody td {
    border: none;
    padding: 0;
    background: none;
    white-space: normal;
    text-align: left;
  }

  .ranking-table tbody td:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
  }

  .ranking-table tbody td:nth-child(2) {
    grid-row: 1;
    grid-column: 2 / -1;
  }

  .ranking-table tbody td:nth-child(3) {
    grid-row: 2;
    grid-column: 1;
  }

  .ranking-table tbody td:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
  }

  .ranking-table tbody td:nth-child(5) {
    grid-row: 3;
    grid-column: 1;
  }

  .ranking-table tbody td:nth-child(6) {
    grid-row: 3;
    grid-column: 2;
  }

  .ranking-table tbody td:nth-child(n + 3) {
    padding: 10px 12px;
    background: var(--black-light);
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
  }

  .ranking-table tbody td:nth-child(n + 3)::before {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .ranking-table tbody td:nth-child(3)::before {
    content: "Экипировка";
  }

  .ranking-table tbody td:nth-child(4)::before {
    content: "Убийства";
  }

  .ranking-table tbody td:nth-child(5)::before {
    content: "Смерти";
  }

  .ranking-table tbody td:nth-child(6)::before {
    content: "Побед";
  }

  .ranking-table tbody td:nth-child(1) .ranking-player {
    align-items: center;
    text-align: center;
  }

  .ranking-table tbody td:nth-child(2) .ranking-player {
    text-align: left;
  }

  .ranking-table tbody td .ranking-player b {
    font-size: 16px;
  }

  .ranking-table tbody td .ranking-player span {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
.inner-page.ranking {
    padding-top: calc(var(--header-total) + 16px);
    padding-bottom: 48px;
  }

  .ranking-table tbody tr {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto repeat(4, auto);
  }

  .ranking-table tbody td:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
  }

  .ranking-table tbody td:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
  }

  .ranking-table tbody td:nth-child(3),
.ranking-table tbody td:nth-child(4),
.ranking-table tbody td:nth-child(5),
.ranking-table tbody td:nth-child(6) {
    grid-column: 1 / -1;
  }

  .ranking-table tbody td:nth-child(3) {
    grid-row: 2;
  }

  .ranking-table tbody td:nth-child(4) {
    grid-row: 3;
  }

  .ranking-table tbody td:nth-child(5) {
    grid-row: 4;
  }

  .ranking-table tbody td:nth-child(6) {
    grid-row: 5;
  }

  .ranking-table tbody td:nth-child(n + 3) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: right;
  }

  .ranking-table tbody td:nth-child(n + 3)::before {
    margin-bottom: 0;
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0;
  }
}
.wiki-page {
  padding-bottom: 48px;
}

.wiki-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border-radius: var(--radius-lg);
  background: rgba(43, 28, 61, 0.92);
  border: 1px solid rgba(255, 202, 97, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.wiki-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 24px 20px;
  background: rgba(23, 13, 34, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.wiki-sidebar.is-collapsed .wiki-nav {
  display: none;
}

.wiki-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wiki-sidebar-title {
  font-size: 18px;
  font-weight: 700;
}

.wiki-sidebar-toggle {
  font-size: 13px;
  color: var(--gold);
  white-space: nowrap;
}

.wiki-sidebar-toggle:hover {
  color: var(--gold-hover);
}

.wiki-search-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(23, 13, 34, 0.55);
  color: var(--white);
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.wiki-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.wiki-search-input:focus {
  outline: none;
  border-color: rgba(255, 202, 97, 0.35);
  background: rgba(23, 13, 34, 0.8);
}

.wiki-nav {
  flex: 1;
  overflow: auto;
  min-height: 0;
  max-height: min(58vh, 640px);
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--black-hover) transparent;
}

.wiki-category + .wiki-category {
  margin-top: 10px;
}

.wiki-category-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.wiki-category-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.wiki-category-toggle-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.wiki-category.is-collapsed .wiki-category-toggle-btn svg {
  transform: rotate(-90deg);
}

.wiki-category-list {
  display: grid;
  gap: 4px;
  padding: 8px 0 4px 10px;
}

.wiki-category.is-collapsed .wiki-category-list {
  display: none;
}

.wiki-nav-link {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}

.wiki-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.wiki-nav-link.is-active {
  background: rgba(255, 202, 97, 0.12);
  color: var(--gold);
  font-weight: 600;
}



.wiki-main {
  min-width: 0;
  padding: 32px 36px;
}

.wiki-panel {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.wiki-article-title {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}









.wiki-article-content {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.wiki-article-content h2 {
  margin: 28px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 700;
}

.wiki-article-content h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.wiki-article-content p,
.wiki-article-content ul,
.wiki-article-content ol {
  margin-bottom: 14px;
}

.wiki-article-content ul,
.wiki-article-content ol {
  padding-left: 24px;
}

.wiki-article-content li + li {
  margin-top: 6px;
}

.wiki-article-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(97, 213, 255, 0.35);
}

.wiki-article-content a:hover {
  color: #9de8ff;
}

.wiki-article-content blockquote {
  margin: 20px 0;
  padding: 14px 18px;
  border-left: 4px solid rgba(255, 202, 97, 0.45);
  border-radius: 0 10px 10px 0;
  background: rgba(23, 13, 34, 0.45);
  font-style: italic;
  color: var(--muted);
}

.wiki-article-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  background: rgba(23, 13, 34, 0.35);
}

.wiki-article-content th,
.wiki-article-content td {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.wiki-article-content th {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

.wiki-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--muted);
}

.wiki-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wiki-article-tags span {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 202, 97, 0.1);
  color: var(--gold);
  font-size: 13px;
}

.wiki-search-count {
  margin-bottom: 18px;
  color: var(--muted);
}

.wiki-search-results {
  display: grid;
  gap: 12px;
}

.wiki-search-result {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(23, 13, 34, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.wiki-search-result:hover {
  background: rgba(23, 13, 34, 0.65);
  border-color: rgba(255, 202, 97, 0.22);
  transform: translateY(-1px);
}

.wiki-search-result-title {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.wiki-search-result-snippet {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.wiki-empty p,
.wiki-welcome p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
.wiki-shell {
    grid-template-columns: 1fr;
  }

  .wiki-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 18px;
  }

  .wiki-nav {
    max-height: none;
  }

  .wiki-main {
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
.wiki-sidebar-head {
    flex-direction: column;
    align-items: stretch;
  }

  .wiki-article-content {
    font-size: 15px;
  }

  .wiki-article-content table {
    display: block;
    overflow-x: auto;
  }
}











































:root {
  --header-h: 70px;
  --header-offset: 0px;
}

.site-header {
  padding: 0;
  background: #17101f;
  border-bottom: 3px solid #705129;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

.header-shell {
  padding: 0;
  gap: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 0;
  background: #1c1424;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled .header-shell {
  border-color: transparent;
  background: #160f1d;
  box-shadow: none;
}

.header-start,
.main-nav {
  align-self: stretch;
  gap: 0;
}

.brand {
  align-self: stretch;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand img {
  height: 36px;
}



.main-nav {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.main-nav a.is-active {
  color: var(--gold);
  background: #261b30;
  box-shadow: inset 0 -4px 0 #c9983e;
}

.header-actions {
  align-self: stretch;
  gap: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}

.lang-switch {
  justify-content: center;
  min-width: 62px;
  height: var(--header-h);
  padding: 0 13px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #18111f;
  font-weight: 700;
}

.lang-switch:hover,
.header-link:hover {
  color: var(--gold);
  background: #21172a;
}

.lang-menu {
  top: 100%;
  min-width: 94px;
  padding: 0;
  border: 1px solid #705129;
  border-radius: 0;
  background: #17101f;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}

.lang-menu button {
  padding: 10px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
}

.lang-menu button:hover {
  background: #2a1e34;
}

.header-link {
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-account-stat {
  display: flex;
  min-width: 66px;
  height: var(--header-h);
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  background: #18111f;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.header-account-stat img {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  opacity: 0.78;
}

.header-crystal-icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.header-account-stat:hover {
  color: var(--gold);
  background: #21172a;
}

.header-account-stat:hover img {
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 27px;
  border-radius: 0;
  color: var(--black);
  background: #d5aa54;
  box-shadow: inset 0 -4px 0 #9f7226, inset 1px 0 0 #f2cf86;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.header-cta:hover {
  background: #edc46f;
  transform: none;
}

.menu-toggle {
  border: 1px solid #705129;
  border-radius: 0;
  background: #18111f;
}

.menu-toggle span {
  border-radius: 0;
}

.mobile-menu {
  top: var(--header-h);
  left: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 3px solid #705129;
  border-radius: 0;
  background: #1b1323;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

.site-header.is-menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu-links a {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.mobile-menu-links a.is-active {
  color: var(--gold);
  background: #261b30;
  box-shadow: inset 4px 0 0 #c9983e;
}

.mobile-account-summary {
  padding: 14px 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-account-name {
  display: block;
  margin: 0 0 9px;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-account-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-account-stat {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 202, 97, 0.23);
  color: #fff;
  background: #18111f;
}

.mobile-account-stat img {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  opacity: 0.8;
}

.mobile-account-stat .header-crystal-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  font-size: 17px;
}

.mobile-account-stat span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.mobile-account-stat small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
}

.mobile-account-stat strong {
  overflow: hidden;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-lang-options button,
.mobile-menu-actions .btn {
  border-radius: 0;
}

.mobile-lang-options button {
  background: #18111f;
}

@media (max-width: 1100px) {
.main-nav {
    gap: 0;
    padding: 0;
  }

  .main-nav a {
    padding: 0 11px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
.main-nav,
.header-link,
.header-cta,
.header-account-stat,
.lang-dropdown {
    display: none;
  }

  .header-shell {
    gap: 12px;
    padding: 0 14px 0 0;
    border-left: 0;
    border-right: 0;
  }

  .brand {
    padding-left: 16px;
    border-right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}
.hero-panel {
  padding: 25px 26px 22px;
  border: 1px solid rgba(255, 202, 97, 0.28);
  border-left: 4px solid #b88738;
  border-radius: 5px;
  background: rgba(27, 18, 35, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.hero-panel::before {
  display: none;
}

.hero-panel h2 {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-panel h2::before {
  content: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: transparent;
}

.stat-card {
  display: block;
  min-height: 96px;
  padding: 22px 20px 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.stat-card:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.stat-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stat-card strong {
  display: block;
  min-width: 0;
  margin: 0 0 7px;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.9;
  text-shadow: none;
}

.stat-card span {
  display: block;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 560px) {
.hero-panel {
    padding: 21px 20px 16px;
  }

  .hero-panel h2 {
    padding-bottom: 14px;
    font-size: 23px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card,
.stat-card:nth-child(even) {
    min-height: 0;
    padding: 17px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-card:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .stat-card strong {
    font-size: 29px;
  }
}
.classes-faq {
  min-height: 560px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #8f6931;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.classes-faq::before {
  display: none;
}

.classes-faq-body {
  gap: 0;
}

.classes-faq-body h3 {
  margin-bottom: 7px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
}

.classes-faq-lead {
  margin-bottom: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.faq-list {
  gap: 0;
  padding-right: 0;
  counter-reset: faq-item;
}

.faq-item {
  counter-increment: faq-item;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: transparent;
  overflow: visible;
  transition: background-color 0.18s ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 3px 0 0 rgba(255, 202, 97, 0.68);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 12px 15px 44px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-item summary::before {
  content: counter(faq-item, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 50%;
  color: rgba(255, 202, 97, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
}

.faq-item summary::after {
  content: "+";
  display: block;
  width: auto;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.18s ease;
}

.faq-item[open] summary {
  color: #fff;
}

.faq-item[open] summary::after {
  content: "\2212";
  color: var(--gold);
  background: transparent;
}

.faq-item summary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
}

.faq-item summary:hover::after {
  color: var(--gold);
}

.faq-item p {
  max-width: 680px;
  padding: 0 42px 19px 44px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 560px) {
.classes-faq {
    min-height: 0;
    padding: 24px 20px;
  }

  .classes-faq-body h3 {
    font-size: 25px;
  }

  .faq-item summary {
    min-height: 54px;
    padding: 14px 6px 14px 36px;
    font-size: 15px;
  }

  .faq-item summary::before {
    left: 6px;
  }

  .faq-item p {
    padding: 0 28px 17px 36px;
    font-size: 14px;
  }
}
.btn {
  padding: 13px 27px;
  border-radius: 4px;
  font-size: 16px;
}

.btn-primary {
  background: #d5aa54;
  box-shadow: inset 0 -3px 0 #9f7226;
}

.btn-primary:hover {
  background: #edc46f;
  transform: none;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(17, 12, 23, 0.28);
}

.btn-outline:hover {
  color: #fff;
  border-color: rgba(255, 202, 97, 0.6);
  background: rgba(255, 202, 97, 0.08);
}

.btn-outline:hover svg path {
  stroke: #fff;
}

.hero-badge {
  padding: 8px 11px;
  border: 1px solid rgba(126, 240, 141, 0.24);
  border-left: 3px solid #4aa859;
  border-radius: 3px;
  color: #8fd49a;
  background: rgba(18, 25, 20, 0.62);
  font-size: 13px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(24, 17, 31, 0.78);
}

.social-link:hover {
  border-color: #d5aa54;
  background: #d5aa54;
}

.section-head {
  max-width: 760px;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 42px;
  padding-left: 18px;
  border-left: 4px solid #9f7434;
  text-align: left;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 750;
}

.section-subtitle {
  max-width: 680px;
  font-size: 17px;
}
.class-selector {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #8f6931;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.class-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 8, 17, 0.28);
}

.class-tab {
  min-height: 72px;
  aspect-ratio: auto;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
  opacity: 0.56;
  transition: opacity 0.18s ease, background-color 0.18s ease;
}

.class-tab:last-child {
  border-right: 0;
}

.class-tab img {
  width: 40px;
  height: 40px;
}

.class-tab:hover,
.class-tab.is-active {
  opacity: 1;
  transform: none;
  background: rgba(255, 255, 255, 0.04);
}

.class-tab[data-color="purple"].is-active,
.class-tab[data-color="green"].is-active,
.class-tab[data-color="blue-violet"].is-active,
.class-tab[data-color="cyan"].is-active,
.class-tab[data-color="red"].is-active,
.class-tab[data-color="orange"].is-active {
  border-color: rgba(255, 255, 255, 0.09);
  background: #261b30;
  box-shadow: inset 0 -3px 0 #c9983e;
}

.class-info {
  flex: 1;
  gap: 12px;
  padding: 29px 30px;
  animation: fadeUp 0.22s ease;
}

.class-info h3 {
  font-size: 27px;
  font-weight: 700;
}

.class-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.62;
}
.news {
  padding: 54px 0 110px;
}

.news-grid {
  display: grid;
  max-width: 1040px;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 18px auto 0;
}

.news-card {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 28px;
  row-gap: 10px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  transition: background-color 0.18s ease;
}

.news-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.022);
  box-shadow: none;
  transform: none;
}

.news-thumb {
  grid-row: 1 / span 2;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #1b1323;
}

.news-thumb img {
  transition: opacity 0.2s ease;
}

.news-card:hover .news-thumb img {
  opacity: 0.88;
  transform: none;
}

.news-meta {
  align-self: end;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.news-card h3 {
  max-width: 650px;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.25;
}

.news-more-wrap {
  max-width: 1040px;
  justify-content: flex-start;
  margin: 28px auto 0;
}
.site-footer {
  padding: 50px 0 34px;
  border-top: 3px solid #705129;
  background: #15101b;
}

.footer-top {
  gap: 48px;
}

.footer-title {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social-links {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-social-link {
  gap: 11px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.09);
  background: transparent;
}

.footer-social-icon {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  background: transparent;
}

.footer-block {
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  gap: 6px;
}

.footer-bottom {
  align-items: flex-start;
  border-color: rgba(255, 255, 255, 0.1);
  text-align: left;
}






@media (max-width: 720px) {
.section-head {
    margin-bottom: 32px;
    padding-left: 14px;
  }

  .class-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .class-tab {
    min-height: 62px;
  }

  .class-tab:nth-child(3) {
    border-right: 0;
  }

  .class-tab:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .class-tab img {
    width: 36px;
    height: 36px;
  }

  .class-info {
    padding: 24px 22px;
  }

  .news-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    padding: 20px 0 22px;
  }

  .news-thumb {
    grid-row: auto;
    width: 100%;
  }

  .news-meta {
    margin-top: 2px;
  }

  .news-card h3 {
    font-size: 20px;
  }

  .news-more-wrap .btn {
    width: 100%;
  }
}
.news-grid {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 18px 0 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 97, 0.18);
  border-top: 3px solid #7f5d2f;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.88);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.news-card:first-child {
  border-top: 3px solid #7f5d2f;
}

.news-card:hover {
  border-color: rgba(255, 202, 97, 0.38);
  background: rgba(34, 23, 43, 0.94);
  box-shadow: none;
  transform: none;
}

.news-thumb {
  width: 100%;
  grid-row: auto;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: #1b1323;
}

.news-thumb img {
  transition: opacity 0.2s ease;
}

.news-card:hover .news-thumb img {
  opacity: 0.9;
  transform: none;
}

.news-meta {
  align-self: auto;
  padding: 16px 18px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.news-card h3 {
  max-width: none;
  padding: 10px 18px 20px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.28;
}

.news-more-wrap {
  max-width: none;
  justify-content: center;
  margin: 32px 0 0;
}

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

@media (max-width: 620px) {
.news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    display: flex;
    gap: 0;
    padding: 0;
  }

  .news-card h3 {
    font-size: 20px;
  }
}
.wiki-page {
  padding-bottom: 58px;
}

.wiki-shell {
  min-height: 650px;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #8f6931;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.93);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
}

.wiki-sidebar {
  gap: 14px;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(18, 12, 24, 0.72);
}

.wiki-search-input {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: #18111f;
  font-size: 14px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.wiki-search-input:focus {
  border-color: rgba(255, 202, 97, 0.55);
  background: #1d1425;
  box-shadow: inset 3px 0 0 #a97b35;
}

.wiki-sidebar-head {
  padding: 4px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.wiki-sidebar-title {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wiki-sidebar-toggle {
  padding: 5px 7px;
  border: 1px solid rgba(255, 202, 97, 0.24);
  border-radius: 2px;
  color: rgba(255, 202, 97, 0.78);
  font-size: 11px;
}

.wiki-sidebar-toggle:hover {
  color: var(--gold);
  border-color: rgba(255, 202, 97, 0.5);
  background: rgba(255, 202, 97, 0.06);
}

.wiki-nav {
  padding-right: 2px;
  scrollbar-color: #705129 transparent;
}

.wiki-category + .wiki-category {
  margin-top: 0;
}

.wiki-category-toggle-btn {
  padding: 11px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.wiki-category-toggle-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
}

.wiki-category-list {
  gap: 1px;
  padding: 5px 0 10px;
}

.wiki-nav-link {
  padding: 8px 10px 8px 13px;
  border-left: 3px solid transparent;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.wiki-nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.wiki-nav-link.is-active {
  border-left-color: #b88738;
  color: var(--gold);
  background: rgba(255, 202, 97, 0.07);
  font-weight: 600;
}

.wiki-main {
  min-width: 0;
  padding: 38px 42px 44px;
  background: rgba(34, 23, 43, 0.34);
}

.wiki-panel {
  max-width: 920px;
}

.wiki-article-title {
  margin-bottom: 24px;
  padding: 0 0 17px;
  border-bottom: 1px solid rgba(255, 202, 97, 0.24);
  font-size: clamp(29px, 4vw, 37px);
  font-weight: 720;
  letter-spacing: -0.015em;
}



.wiki-welcome p,
.wiki-empty p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}











.wiki-article-content {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.76;
}

.wiki-article-content h2 {
  margin: 32px 0 15px;
  padding-bottom: 9px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  font-size: 23px;
  font-weight: 700;
}

.wiki-article-content h3 {
  font-size: 19px;
  font-weight: 650;
}

.wiki-article-content a {
  color: var(--gold);
  text-decoration-color: rgba(255, 202, 97, 0.38);
}

.wiki-article-content a:hover {
  color: #ffe0a0;
}

.wiki-article-content blockquote {
  padding: 14px 18px;
  border-left: 3px solid #9f7434;
  border-radius: 0;
  background: rgba(15, 10, 20, 0.36);
}

.wiki-article-content table {
  background: rgba(18, 12, 24, 0.45);
}

.wiki-article-content th {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.045);
}

.wiki-article-meta {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.48);
}

.wiki-article-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 202, 97, 0.22);
  border-radius: 2px;
  color: rgba(255, 202, 97, 0.82);
  background: transparent;
  font-size: 12px;
}

.wiki-search-results {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.wiki-search-result {
  padding: 17px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: transparent;
  transition: background-color 0.18s ease;
}

.wiki-search-result:hover {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.025);
  transform: none;
}

.wiki-search-result-title {
  font-size: 17px;
  font-weight: 650;
}

.wiki-search-result-snippet {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 991px) {
.wiki-shell {
    grid-template-columns: 1fr;
  }

  .wiki-sidebar {
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .wiki-main {
    padding: 30px 26px 36px;
  }
}

@media (max-width: 560px) {
.wiki-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .wiki-sidebar-head {
    flex-direction: row;
    align-items: center;
  }

  .wiki-main {
    padding: 25px 20px 30px;
  }

  .wiki-article-title {
    font-size: 28px;
  }

  .wiki-article-content {
    font-size: 15px;
  }
}
.ranking {
  padding-bottom: 58px;
}

.ranking-panel {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #8f6931;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.93);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
}

.ranking-head {
  margin: 0;
  padding: 27px 30px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 12, 24, 0.42);
}

.ranking-title {
  font-size: clamp(29px, 4vw, 35px);
  font-weight: 720;
  letter-spacing: -0.015em;
}

.ranking-sort-label {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.4;
}

.ranking-table-wrap {
  max-height: min(66vh, 700px);
  overflow: auto;
  border-radius: 0;
  scrollbar-color: #705129 transparent;
}

.ranking-table-wrap::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #705129;
}

.ranking-table {
  min-width: 820px;
  background: rgba(24, 16, 31, 0.4);
}

.ranking-table thead th {
  top: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  color: rgba(255, 255, 255, 0.62);
  background: #18111f;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.ranking-table th,
.ranking-table td {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.ranking-table tbody tr {
  background: transparent;
  transition: background-color 0.16s ease;
}

.ranking-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.018);
}

.ranking-table tbody tr:hover {
  background: rgba(255, 202, 97, 0.045);
}

.ranking-table th.sortable {
  transition: color 0.16s ease, background-color 0.16s ease;
}

.ranking-table th.sortable:hover {
  color: rgba(255, 202, 97, 0.82);
  background: #21172a;
}

.ranking-table th.sortable.is-active {
  color: var(--gold);
  background: #21172a;
  box-shadow: inset 0 -3px 0 #b88738;
}

.ranking-table th.sortable svg {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  opacity: 0.72;
}

.ranking-table td img {
  width: 17px;
  height: 17px;
  margin-right: 5px;
  opacity: 0.72;
}

.ranking-col-rank {
  width: 68px;
  text-align: center;
}

.ranking-col-name {
  width: 36%;
}

.ranking-player {
  gap: 3px;
}

.ranking-player b {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 650;
}

.ranking-player span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.ranking-col-rank .ranking-player {
  align-items: center;
}

.ranking-col-rank .ranking-player b {
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
}

.ranking-col-rank .ranking-player span {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}

.ranking-table tbody tr:nth-child(-n + 3) .ranking-col-rank .ranking-player span {
  color: #ffe0a0;
}

@media (max-width: 991px) {
.ranking-panel {
    padding: 0;
  }

  .ranking-head {
    align-items: flex-start;
    gap: 8px;
    padding: 23px 20px 20px;
    text-align: left;
  }

  .ranking-sort-label {
    text-align: left;
  }

  .ranking-table th,
.ranking-table td {
    padding: 13px 12px;
  }
}

@media (max-width: 560px) {
.ranking-panel {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .ranking-title {
    font-size: 29px;
  }

  .ranking-table {
    min-width: 760px;
  }
}
.payment-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.payment-page {
  padding-bottom: 58px;
}

.payment-shell {
  overflow: hidden;
  border: 1px solid rgba(197, 164, 105, 0.34);
  border-top: 3px solid #c5a469;
  border-radius: 6px;
  background: rgba(9, 12, 17, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}







































































































































@media (max-width: 650px) {
.payment-page {
    padding-bottom: 36px;
  }

  .payment-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}


.payment-shell {
  max-width: 960px;
  margin: 0 auto;
}
























































































































.payment-shell {
  max-width: 1080px;
}










































































































.payment-shell {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(197, 164, 105, 0.34);
  border-top: 3px solid #c5a469;
  border-radius: 6px;
  background: #0b0f15;
}





























































.payment-method-option {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-left: 2px solid transparent;
  background: transparent;
  color: #8e96a2;
  font-size: 12px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.payment-method-option:hover,
.payment-method-option.is-active {
  border-left-color: #c5a469;
  background: rgba(197, 164, 105, 0.08);
  color: #e2d8c5;
}
















.payment-page .container {
  display: flex;
  justify-content: center;
}

.payment-shell {
  width: min(100%, 610px);
  max-width: 610px;
  min-height: 357px;
  margin: 0 auto;
  overflow: visible;
  border: 1px solid rgba(197, 164, 105, 0.28);
  border-top: 2px solid #c5a469;
  border-radius: 16px;
  background: #11151d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.payment-reference-form {
  box-sizing: border-box;
  width: 100%;
  min-height: 355px;
  padding: 32px 40px 28px;
}

.payment-reference-form h1 {
  margin: 0 0 18px;
  color: #f4f0e8;
  font-family: Jost, Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.02em;
}

.payment-reference-input {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #080b10;
  transition: border-color 150ms ease;
}

.payment-reference-input:focus-within {
  border-color: rgba(197, 164, 105, 0.7);
}

.payment-reference-input > span {
  padding-left: 18px;
  color: #c5a469;
  font-size: 14px;
}

.payment-reference-input input {
  min-width: 0;
  width: 100%;
  height: 46px;
  padding: 0 18px 0 5px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #e6e2db;
  font-size: 14px;
  font-weight: 500;
}

.payment-reference-input input::placeholder {
  color: #646b76;
  opacity: 1;
}

.payment-reference-input input::-webkit-outer-spin-button,
.payment-reference-input input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.payment-reference-bonus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 14px;
  background: #665f18;
  color: #f6f1e4;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.payment-reference-bonus > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #a18a32;
  transition: width 180ms ease;
}

.payment-reference-bonus > span {
  position: relative;
  z-index: 1;
}

.payment-reference-select {
  position: relative;
  z-index: 12;
  margin-top: 16px;
}

.payment-reference-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 0 25px 0 33px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #080b10;
  color: #777e89;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    color 150ms ease;
}

.payment-reference-select-toggle:hover,
.payment-reference-select-toggle.is-open {
  border-color: rgba(197, 164, 105, 0.65);
  color: #d4d0c8;
}

.payment-reference-select-toggle > i {
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border-right: 1px solid #ded9d0;
  border-bottom: 1px solid #ded9d0;
  transform: rotate(45deg);
  transition: transform 150ms ease;
}

.payment-reference-select-toggle.is-open > i {
  margin-top: 5px;
  transform: rotate(225deg);
}

.payment-reference-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  display: grid;
  padding: 6px;
  border: 1px solid rgba(197, 164, 105, 0.35);
  border-radius: 15px;
  background: #0a0e14;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.payment-reference-select-menu[hidden] {
  display: none;
}

.payment-reference-select-menu .payment-method-option {
  min-height: 39px;
  padding: 0 19px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #9097a2;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.payment-reference-select-menu .payment-method-option:hover,
.payment-reference-select-menu .payment-method-option.is-active {
  background: rgba(197, 164, 105, 0.1);
  color: #e1d5bf;
}

.payment-reference-submit {
  width: 100%;
  height: 52px;
  margin-top: 16px;
  border: 1px solid #dfbf70;
  border-radius: 26px;
  background: #d0ae5c;
  color: #111319;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.payment-reference-submit:hover {
  border-color: #ecd28f;
  background: #dfbf70;
}

@media (max-width: 650px) {
.payment-shell {
    min-height: 0;
    border-radius: 12px;
  }

  .payment-reference-form {
    min-height: 0;
    padding: 28px 24px 25px;
  }

  .payment-reference-form h1 {
    margin-bottom: 20px;
    font-size: clamp(34px, 10vw, 43px);
  }

  .payment-reference-submit {
    height: auto;
    min-height: 52px;
    padding: 10px 20px;
    font-size: 14px;
  }
}
.payment-page {
  padding-top: calc(var(--header-total) + 90px);
}

@media (max-width: 650px) {
.payment-page {
    padding-top: calc(var(--header-total) + 58px);
  }
}
.payment-page {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: var(--header-total) 0 0;
}

.payment-page .container {
  width: 100%;
}

































.register-warning {
  margin: -2px 0 2px;
  color: #d97979;
  font-size: 10px;
  line-height: 1.45;
}

.register-warning[hidden] {
  display: none;
}















.register-message {
  margin-top: 15px;
  padding: 11px 13px;
  border: 1px solid;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.register-message[hidden] {
  display: none;
}

.register-message.is-success {
  border-color: rgba(104, 174, 119, 0.55);
  background: rgba(104, 174, 119, 0.1);
  color: #9ed0aa;
}

.register-message.is-error {
  border-color: rgba(209, 106, 106, 0.55);
  background: rgba(209, 106, 106, 0.1);
  color: #e19a9a;
}







.register-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(17, 19, 25, 0.35);
  border-top-color: #111319;
  border-radius: 50%;
  animation: register-spin 750ms linear infinite;
}

.register-loader[hidden] {
  display: none;
}

@keyframes register-spin {
  to {
    transform: rotate(360deg);
  }
}











.onboarding-page {
  min-height: 100vh;
  padding: calc(var(--header-total) + 45px) 0 78px;
}

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

.onboarding-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.onboarding-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0 18px 48px;
}

.onboarding-progress::before,
.onboarding-progress-line {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
}

.onboarding-progress::before {
  background: rgba(255, 255, 255, 0.12);
}

.onboarding-progress-line {
  width: 0;
  background: #c5a469;
}

.onboarding-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 84px;
  color: #727b88;
}

.onboarding-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #111620;
  font-size: 12px;
  font-weight: 800;
}

.onboarding-step > strong {
  font-size: 10px;
  font-weight: 650;
}

.onboarding-step.is-active {
  color: #c5a469;
}

.onboarding-step.is-active > span {
  border-color: #c5a469;
  background: #c5a469;
  color: #111319;
  box-shadow: 0 0 0 4px rgba(197, 164, 105, 0.12);
}

.onboarding-card {
  padding: 42px 46px 40px;
  border: 1px solid rgba(197, 164, 105, 0.32);
  border-top: 3px solid #c5a469;
  border-radius: 6px;
  background: rgba(11, 15, 21, 0.97);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.onboarding-heading {
  margin-bottom: 29px;
  text-align: center;
}

.onboarding-heading h1 {
  margin: 0;
  color: #f2eee6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

.onboarding-heading p {
  margin: 11px 0 0;
  color: #7e8793;
  font-size: 12px;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.onboarding-form {
  min-width: 0;
}

.onboarding-fields {
  display: grid;
  gap: 10px;
}

.onboarding-field {
  display: block;
  min-width: 0;
}

.onboarding-field input {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  outline: 0;
  background: #070a0f;
  color: #e8e4dd;
  font-size: 11px;
  font-weight: 550;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.onboarding-field input::placeholder {
  color: #626a76;
  opacity: 1;
}

.onboarding-field input:focus {
  border-color: #c5a469;
  background: #090d13;
}

.onboarding-passwords {
  position: relative;
  display: grid;
  gap: 10px;
}

.onboarding-password-toggle {
  position: absolute;
  top: 7px;
  right: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #737b86;
  cursor: pointer;
}

.onboarding-password-toggle:hover,
.onboarding-password-toggle[aria-pressed="true"] {
  color: #c5a469;
}

.onboarding-passwords .onboarding-field:first-child input {
  padding-right: 43px;
}

.onboarding-form .register-warning {
  margin: -4px 2px 1px;
  font-size: 9px;
}

.onboarding-consents {
  display: grid;
  gap: 11px;
  margin-top: 15px;
}

.onboarding-check {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #8a929d;
  font-size: 9px;
  line-height: 1.55;
  cursor: pointer;
}

.onboarding-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #c5a469;
}

.onboarding-check a {
  color: #c5a469;
  text-decoration: none;
}

.onboarding-check a:hover {
  text-decoration: underline;
}

.onboarding-form .register-message {
  margin-top: 13px;
  padding: 9px 11px;
  font-size: 9px;
}

.onboarding-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 225px;
  min-height: 47px;
  margin-top: 25px;
  padding: 0 22px;
  border: 1px solid #d9bb73;
  border-radius: 3px;
  background: #c5a469;
  color: #111319;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.onboarding-submit:hover:not(:disabled) {
  border-color: #ecd18d;
  background: #d5b877;
}

.onboarding-submit:disabled {
  border-color: rgba(255, 255, 255, 0.13);
  background: #242a32;
  color: #69717c;
  cursor: default;
}

.onboarding-side {
  display: grid;
  gap: 18px;
}

.onboarding-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(197, 164, 105, 0.3);
  border-radius: 4px;
  background: #070a0f;
}

.onboarding-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onboarding-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(5, 8, 12, 0.35);
  cursor: pointer;
  transition: background 150ms ease;
}

.onboarding-video-play::before {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 2px solid #c5a469;
  border-radius: 50%;
  background: rgba(8, 11, 16, 0.82);
  content: "";
}

.onboarding-video-play > span {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #c5a469;
}

.onboarding-video-play:hover {
  background: rgba(5, 8, 12, 0.18);
}

.onboarding-video-play.is-playing {
  opacity: 0;
}

.onboarding-video:hover .onboarding-video-play.is-playing,
.onboarding-video-play.is-playing:focus-visible {
  opacity: 1;
}

.onboarding-video-play.is-playing > span {
  width: 13px;
  height: 17px;
  margin-left: 0;
  border: 0;
  border-right: 4px solid #c5a469;
  border-left: 4px solid #c5a469;
}

.onboarding-support {
  padding: 18px;
  border: 1px solid rgba(197, 164, 105, 0.24);
  border-radius: 4px;
  background: #0a0e14;
  text-align: center;
}

.onboarding-support p {
  margin: 0 0 13px;
  color: #c5a469;
  font-size: 10px;
  font-weight: 800;
}

.onboarding-support > div {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.onboarding-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  color: #d5d9df;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.onboarding-support a:hover {
  border-color: rgba(197, 164, 105, 0.62);
  color: #dfc999;
}

@media (max-width: 900px) {
.onboarding-wrap {
    max-width: 700px;
  }

  .onboarding-card {
    padding: 36px 38px 38px;
  }

  .onboarding-layout {
    grid-template-columns: 1fr;
  }

  .onboarding-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

@media (max-width: 650px) {
.onboarding-page {
    padding: calc(var(--header-total) + 32px) 0 48px;
  }

  .onboarding-progress {
    margin: 0 8px 34px;
  }

  .onboarding-step {
    min-width: 54px;
  }

  .onboarding-step > span {
    width: 32px;
    height: 32px;
  }

  .onboarding-step > strong {
    font-size: 8px;
  }

  .onboarding-progress::before,
.onboarding-progress-line {
    top: 15px;
  }

  .onboarding-card {
    padding: 29px 20px 31px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .onboarding-heading h1 {
    font-size: 29px;
  }

  .onboarding-side {
    grid-template-columns: 1fr;
  }

  .onboarding-submit {
    width: 100%;
  }
}
.onboarding-wrap {
  max-width: 990px;
}

.onboarding-progress {
  margin-bottom: 53px;
}

.onboarding-step {
  min-width: 92px;
  gap: 10px;
}

.onboarding-step > span {
  width: 41px;
  height: 41px;
  font-size: 13px;
}

.onboarding-step > strong {
  font-size: 11px;
}

.onboarding-progress::before,
.onboarding-progress-line {
  top: 20px;
}

.onboarding-card {
  padding: 46px 52px 45px;
}

.onboarding-heading {
  margin-bottom: 33px;
}

.onboarding-heading h1 {
  font-size: clamp(32px, 4.2vw, 41px);
}

.onboarding-heading p {
  margin-top: 12px;
  font-size: 13px;
}

.onboarding-layout {
  gap: 39px;
}

.onboarding-fields {
  gap: 11px;
}

.onboarding-field input {
  height: 50px;
  padding: 0 17px;
  font-size: 12px;
}

.onboarding-passwords {
  gap: 11px;
}

.onboarding-password-toggle {
  top: 9px;
  right: 8px;
  width: 32px;
  height: 32px;
}

.onboarding-consents {
  gap: 12px;
  margin-top: 17px;
}

.onboarding-check {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  font-size: 10px;
}

.onboarding-check input {
  width: 18px;
  height: 18px;
}

.onboarding-submit {
  min-width: 240px;
  min-height: 51px;
  margin-top: 27px;
  font-size: 12px;
}

.onboarding-side {
  gap: 20px;
}

.onboarding-support {
  padding: 20px;
}

.onboarding-support p {
  margin-bottom: 15px;
  font-size: 11px;
}

.onboarding-support a {
  min-width: 110px;
  min-height: 41px;
  font-size: 11px;
}

@media (max-width: 900px) {
.onboarding-wrap {
    max-width: 740px;
  }

  .onboarding-card {
    padding: 40px 43px 42px;
  }

  .onboarding-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
.onboarding-step {
    min-width: 54px;
  }

  .onboarding-step > span {
    width: 34px;
    height: 34px;
  }

  .onboarding-step > strong {
    font-size: 8px;
  }

  .onboarding-progress::before,
.onboarding-progress-line {
    top: 16px;
  }

  .onboarding-card {
    padding: 31px 20px 33px;
  }

  .onboarding-heading h1 {
    font-size: 30px;
  }

  .onboarding-side {
    grid-template-columns: 1fr;
  }

  .onboarding-submit {
    width: 100%;
  }
}

/* Download page */
.downloads-page {
  padding-bottom: 72px;
}

.downloads-container {
  max-width: 1280px;
}

.downloads-header {
  margin-bottom: 24px;
  padding: 25px 28px 27px;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #8f6931;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.93);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.downloads-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.downloads-subtitle {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.5;
}

.downloads-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.download-card {
  display: flex;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #7f5d2f;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.93);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.download-card:hover {
  border-color: rgba(255, 202, 97, 0.38);
  background: rgba(34, 23, 43, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  transform: none;
}

.download-card-header {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 25px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  text-align: left;
}

.download-icon {
  display: flex;
  width: 68px;
  min-width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 202, 97, 0.24);
  border-radius: 4px;
  background: rgba(255, 202, 97, 0.065);
}

.download-icon svg {
  width: 38px;
  height: 38px;
}

.download-info {
  min-width: 0;
  width: auto;
}

.download-name {
  margin: 0 0 5px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.download-description {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.download-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 18px;
  flex-wrap: wrap;
}

.download-size,
.download-version {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d8b66d;
  font-size: 13px;
  font-weight: 650;
}

.download-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 202, 97, 0.34);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 202, 97, 0.055);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.download-archive-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.download-archive-link:hover,
.download-archive-link:focus-visible {
  color: #170d22;
  border-color: #ffca61;
  background: #ffca61;
  outline: none;
}

.download-mirrors {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 26px 26px;
}

.mirrors-title {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 650;
  text-align: left;
}

.mirrors-grid {
  display: grid;
  gap: 8px;
}

.mirror-card {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  background: rgba(10, 7, 14, 0.28);
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.mirror-card:hover {
  border-color: rgba(255, 202, 97, 0.42);
  background: rgba(255, 202, 97, 0.055);
  transform: none;
}

.mirror-icon {
  display: flex;
  width: 42px;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.mirror-icon svg {
  width: 27px;
  height: 27px;
}

.mirror-info {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.mirror-name {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.mirror-hint {
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.mirror-arrow {
  opacity: 0.5;
  transition: opacity 0.18s ease;
}

.mirror-card:hover .mirror-arrow {
  opacity: 1;
  transform: none;
}

.manual-patch-feature {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 202, 97, 0.24);
  border-left: 4px solid #b78a3b;
  border-radius: 5px;
  background: #1b1223;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.manual-patch-visual {
  display: flex;
  width: 74px;
  height: 74px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 202, 97, 0.3);
  background: #130d19;
  color: #d8b66d;
}

.manual-patch-visual span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.manual-patch-visual strong {
  margin-top: 1px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.manual-patch-copy {
  min-width: 0;
}

.manual-patch-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: #d8b66d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.manual-patch-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62c87a;
  box-shadow: 0 0 0 3px rgba(98, 200, 122, 0.1);
  content: '';
}

.manual-patch-copy h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 24px;
  font-weight: 750;
}

.manual-patch-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.45;
}

.manual-patch-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  margin-top: 13px;
}

.manual-patch-meta span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.manual-patch-meta small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.manual-patch-meta strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

.manual-patch-meta code {
  overflow: hidden;
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  background: #130d19;
  font-family: Consolas, Monaco, monospace;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manual-patch-cta {
  display: flex;
  min-width: 168px;
  min-height: 58px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 11px 20px;
  border: 1px solid #d9aa50;
  border-radius: 3px;
  color: #1a1020;
  background: #d9aa50;
  text-decoration: none;
}

.manual-patch-cta:hover {
  color: #140c1a;
  border-color: #ffca61;
  background: #ffca61;
}

.manual-patch-cta-disabled,
.manual-patch-cta-disabled:hover {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.045);
  cursor: default;
}

.manual-patch-cta span {
  font-size: 13px;
  font-weight: 850;
}

.manual-patch-cta small {
  margin-top: 2px;
  color: rgba(26, 16, 32, 0.62);
  font-size: 10px;
  font-weight: 700;
}

.downloads-requirements {
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #7f5d2f;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.93);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.requirements-title {
  margin: 0;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

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

.requirement-card {
  padding: 22px 26px 25px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.requirement-card + .requirement-card {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.requirement-card h3 {
  margin: 0 0 12px;
  color: #d8b66d;
  font-size: 18px;
  font-weight: 700;
}

.requirement-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirement-card li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.requirement-card li:last-child {
  border-bottom: 0;
}

.requirement-card li strong {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.downloads-help {
  margin-top: 0;
}

.help-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 202, 97, 0.2);
  border-top: 3px solid #7f5d2f;
  border-radius: 6px;
  background: rgba(27, 18, 35, 0.93);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.help-icon {
  display: flex;
  width: 58px;
  min-width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 202, 97, 0.24);
  border-radius: 4px;
  background: rgba(255, 202, 97, 0.065);
}

.help-icon svg {
  width: 32px;
  height: 32px;
}

.help-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 24px;
  flex: 1;
}

.help-content h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.help-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.45;
}

.downloads-help .main_tab {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 12px 20px;
  border: 1px solid #d5aa54;
  border-radius: 4px;
  background: #d5aa54;
  box-shadow: inset 0 -3px 0 #9f7226;
  color: #170d22;
  font-size: 14px;
  white-space: nowrap;
}

.downloads-help .main_tab:hover {
  border-color: #edc46f;
  background: #edc46f;
  color: #170d22;
}

@media (max-width: 900px) {
  .downloads-content,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .requirement-card + .requirement-card {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .help-content {
    grid-template-columns: 1fr;
  }

  .downloads-help .main_tab {
    grid-column: 1;
    grid-row: auto;
    width: fit-content;
    margin-top: 10px;
  }
}

@media (max-width: 620px) {
  .downloads-page {
    padding-bottom: 40px;
  }

  .downloads-header {
    padding: 22px 20px 23px;
  }

  .downloads-title {
    font-size: 29px;
  }

  .download-card-header {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .download-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .download-icon svg {
    width: 31px;
    height: 31px;
  }

  .download-name {
    font-size: 21px;
  }

  .download-mirrors,
  .requirement-card {
    padding: 20px;
  }

  .manual-patch-feature {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 19px 20px;
  }

  .manual-patch-visual {
    width: 56px;
    height: 56px;
  }

  .manual-patch-copy h2 {
    font-size: 21px;
  }

  .manual-patch-copy > p {
    font-size: 12px;
  }

  .manual-patch-meta {
    gap: 7px 12px;
  }

  .manual-patch-meta code {
    width: 100%;
  }

  .manual-patch-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 54px;
  }

  .requirements-title {
    padding: 18px 20px;
    font-size: 21px;
  }

  .help-card {
    align-items: flex-start;
    padding: 20px;
  }

  .help-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .downloads-help .main_tab {
    width: 100%;
    justify-content: center;
  }
}


/* Crypto payment flow */
.crypto-payment-page {
  min-height: 100vh;
  padding: calc(var(--header-total) + 42px) 0 58px;
}

.crypto-payment-page .container {
  position: relative;
  z-index: 1;
}

.crypto-payment-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(197, 164, 105, 0.28);
  border-top: 3px solid #c5a469;
  border-radius: 8px;
  background: rgba(17, 21, 29, 0.97);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
}

.crypto-payment-heading {
  position: relative;
  padding-right: 190px;
}

.crypto-payment-back {
  position: absolute;
  top: 2px;
  right: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.crypto-payment-back:hover {
  color: #dfbf70;
}

.crypto-payment-kicker {
  display: block;
  margin-bottom: 6px;
  color: #c5a469;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.crypto-payment-heading h1 {
  margin: 0 0 6px;
  color: #f4f0e8;
  font-family: Jost, Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.crypto-payment-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.crypto-payment-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0e14;
}

.crypto-summary-item {
  min-height: 90px;
  padding: 17px 21px;
}

.crypto-summary-item + .crypto-summary-item {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.crypto-summary-item > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-summary-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crypto-summary-value input {
  width: 170px;
  border: 0;
  border-bottom: 1px solid rgba(197, 164, 105, 0.35);
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
}

.crypto-summary-value b {
  font-size: 18px;
}

.crypto-summary-total {
  position: relative;
}

.crypto-summary-total strong {
  color: #dfbf70;
  font-size: 28px;
  font-weight: 850;
}

.crypto-summary-total small {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 700;
}

.crypto-payment-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 25px 0 11px;
}

.crypto-payment-section-title h2 {
  margin: 0;
  color: #f1ede6;
  font-size: 16px;
  font-weight: 750;
}

.crypto-payment-section-title > span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.crypto-wallet-choices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.crypto-wallet-choice {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 8px;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  background: #0a0e14;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.crypto-wallet-choice:hover,
.crypto-wallet-choice.is-active {
  border-color: rgba(197, 164, 105, 0.75);
  background: rgba(197, 164, 105, 0.08);
}

.crypto-wallet-choice:disabled {
  cursor: default;
  opacity: 0.65;
}

.crypto-wallet-choice.is-active:disabled {
  opacity: 1;
}

.crypto-wallet-choice img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 2px solid #fff;
}

.crypto-wallet-choice span {
  min-width: 0;
}

.crypto-wallet-choice strong,
.crypto-wallet-choice small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-wallet-choice strong {
  font-size: 12px;
}

.crypto-wallet-choice small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.crypto-wallet-choice i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.crypto-wallet-choice.is-active i {
  border-color: #dfbf70;
  background: #dfbf70;
  box-shadow: 0 0 0 3px rgba(223, 191, 112, 0.12);
}

.crypto-wallet-details {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  margin-top: 13px;
  padding: 22px;
  border: 1px solid rgba(197, 164, 105, 0.22);
  background: #121720;
}

.crypto-wallet-details[hidden] {
  display: none;
}

.crypto-wallet-qr {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.crypto-wallet-qr img {
  width: 160px;
  height: 160px;
  padding: 6px;
  border: 1px solid rgba(197, 164, 105, 0.45);
  background: #fff;
  object-fit: cover;
}

.crypto-wallet-info {
  min-width: 0;
}

.crypto-wallet-info-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crypto-wallet-info-head small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-wallet-info-head h3 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 750;
}

.crypto-wallet-info-head > span {
  color: #dfbf70;
  font-size: 21px;
  font-weight: 850;
  white-space: nowrap;
}

.crypto-address-label {
  display: block;
  margin: 13px 0 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.crypto-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.crypto-address-row input {
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: 0;
  background: #080b10;
  color: rgba(255, 255, 255, 0.74);
  font-family: Consolas, Monaco, monospace;
  font-size: 11px;
}

.crypto-address-row button {
  min-width: 92px;
  border: 1px solid #8f7544;
  background: #2b251d;
  color: #dfbf70;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.crypto-address-row button:hover,
.crypto-address-row button.is-copied {
  background: #c5a469;
  color: #11151d;
}

.crypto-network-warning {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  line-height: 1.45;
}

.crypto-network-warning strong,
.crypto-network-warning span {
  color: #d8b66d;
}

.crypto-sent-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 14px;
  border: 1px solid #dfbf70;
  border-radius: 3px;
  background: #d0ae5c;
  color: #111319;
  cursor: pointer;
}

.crypto-sent-button:hover:not(:disabled) {
  border-color: #ecd28f;
  background: #dfbf70;
}

.crypto-sent-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.crypto-sent-button.is-success {
  border-color: #5d9e6a;
  background: #5d9e6a;
  opacity: 1;
}

.crypto-sent-button span {
  font-size: 13px;
  font-weight: 850;
}

.crypto-sent-button small {
  margin-top: 1px;
  font-size: 9px;
  font-weight: 650;
  opacity: 0.65;
}

.crypto-payment-status {
  min-height: 15px;
  margin: 7px 0 -5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-align: center;
}

.crypto-payment-status.is-success {
  color: #73bd81;
}

.crypto-payment-status.is-error {
  color: #df7c72;
}

@media (max-width: 800px) {
  .crypto-wallet-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .crypto-payment-page {
    padding: calc(var(--header-total) + 24px) 0 32px;
  }

  .crypto-payment-shell {
    padding: 21px 18px;
    border-radius: 5px;
  }

  .crypto-payment-heading {
    padding: 30px 0 0;
  }

  .crypto-payment-back {
    top: 0;
    right: auto;
    left: 0;
  }

  .crypto-payment-heading h1 {
    font-size: 27px;
  }

  .crypto-payment-summary {
    grid-template-columns: 1fr;
  }

  .crypto-summary-item {
    min-height: 78px;
    padding: 14px 16px;
  }

  .crypto-summary-item + .crypto-summary-item {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .crypto-payment-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .crypto-wallet-choices {
    grid-template-columns: 1fr;
  }

  .crypto-wallet-details {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 17px;
  }

  .crypto-wallet-qr img {
    width: 148px;
    height: 148px;
  }

  .crypto-wallet-info-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .crypto-address-row {
    grid-template-columns: 1fr;
  }

  .crypto-address-row input {
    font-size: 9px;
  }

  .crypto-address-row button {
    min-height: 38px;
  }
}


/* Inline crypto payment panel */
.payment-shell {
  transition: max-width 180ms ease, width 180ms ease;
}

.payment-page.has-crypto-method {
  align-items: flex-start;
  padding-top: calc(var(--header-total) + 34px);
  padding-bottom: 42px;
}

.payment-shell.has-crypto-panel {
  width: min(100%, 920px);
  max-width: 920px;
}

.payment-shell.has-crypto-panel .payment-reference-form {
  padding-bottom: 34px;
}

.payment-crypto-panel {
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(197, 164, 105, 0.28);
}

.payment-crypto-panel[hidden] {
  display: none;
}

.payment-crypto-panel:not([hidden]) {
  animation: paymentCryptoReveal 180ms ease-out both;
}

@keyframes paymentCryptoReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-crypto-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.payment-crypto-heading span {
  display: block;
  margin-bottom: 3px;
  color: #c5a469;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.payment-crypto-heading h2 {
  margin: 0;
  color: #f4f0e8;
  font-size: 21px;
  font-weight: 800;
}

.payment-crypto-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.payment-crypto-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0e14;
}

.payment-crypto-summary > div {
  min-height: 70px;
  padding: 13px 17px;
}

.payment-crypto-summary > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.payment-crypto-summary small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.payment-crypto-summary strong {
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

.payment-crypto-summary-total strong {
  color: #dfbf70;
  font-size: 24px;
}

.payment-crypto-summary-total > span {
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 700;
}

.payment-crypto-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 8px;
}

.payment-crypto-label strong {
  color: #f1ede6;
  font-size: 13px;
}

.payment-crypto-label span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.payment-crypto-panel .crypto-wallet-details {
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 18px;
}

.payment-crypto-panel .crypto-wallet-qr img {
  width: 140px;
  height: 140px;
}

@media (max-width: 650px) {
  .payment-crypto-heading,
  .payment-crypto-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .payment-crypto-summary {
    grid-template-columns: 1fr;
  }

  .payment-crypto-summary > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .payment-crypto-panel .crypto-wallet-details {
    grid-template-columns: 1fr;
  }
}


/* Enlarged inline crypto payment */
.payment-shell.has-crypto-panel {
  width: min(100%, 1040px);
  max-width: 1040px;
}

.payment-shell.has-crypto-panel .payment-reference-form {
  padding: 38px 46px 42px;
}

.payment-shell.has-crypto-panel .payment-reference-form h1 {
  margin-bottom: 23px;
  font-size: 52px;
}

.payment-crypto-panel {
  margin-top: 27px;
  padding-top: 29px;
}

.payment-crypto-heading {
  margin-bottom: 18px;
}

.payment-crypto-heading span {
  margin-bottom: 5px;
  font-size: 11px;
}

.payment-crypto-heading h2 {
  font-size: 29px;
}

.payment-crypto-heading p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.payment-crypto-summary > div {
  min-height: 98px;
  padding: 19px 23px;
}

.payment-crypto-summary small {
  margin-bottom: 7px;
  font-size: 11px;
}

.payment-crypto-summary strong {
  font-size: 29px;
}

.payment-crypto-summary-total strong {
  font-size: 36px;
}

.payment-crypto-summary-total > span {
  margin-left: 10px;
  font-size: 11px;
}

.payment-crypto-label {
  margin: 25px 0 12px;
}

.payment-crypto-label strong {
  font-size: 17px;
}

.payment-crypto-label span {
  font-size: 11px;
}

.payment-crypto-panel .crypto-wallet-choices {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-crypto-panel .crypto-wallet-choice {
  grid-template-columns: 54px minmax(0, 1fr) 10px;
  gap: 14px;
  min-height: 78px;
  padding: 11px 15px;
}

.payment-crypto-panel .crypto-wallet-choice img {
  width: 54px;
  height: 54px;
}

.payment-crypto-panel .crypto-wallet-choice strong {
  font-size: 15px;
}

.payment-crypto-panel .crypto-wallet-choice small {
  margin-top: 4px;
  font-size: 11px;
}

.payment-crypto-panel .crypto-wallet-choice i {
  width: 9px;
  height: 9px;
}

.payment-crypto-panel .crypto-wallet-details {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  margin-top: 18px;
  padding: 27px;
}

.payment-crypto-panel .crypto-wallet-qr img {
  width: 200px;
  height: 200px;
  padding: 8px;
}

.payment-crypto-panel .crypto-wallet-info-head {
  padding-bottom: 17px;
}

.payment-crypto-panel .crypto-wallet-info-head small {
  font-size: 11px;
}

.payment-crypto-panel .crypto-wallet-info-head h3 {
  margin-top: 5px;
  font-size: 22px;
}

.payment-crypto-panel .crypto-wallet-info-head > span {
  font-size: 30px;
}

.payment-crypto-panel .crypto-address-label {
  margin: 17px 0 8px;
  font-size: 12px;
}

.payment-crypto-panel .crypto-address-row input {
  height: 51px;
  padding: 0 16px;
  font-size: 13px;
}

.payment-crypto-panel .crypto-address-row button {
  min-width: 122px;
  font-size: 12px;
}

.payment-crypto-panel .crypto-network-warning {
  margin-top: 13px;
  font-size: 12px;
  line-height: 1.55;
}

.payment-crypto-panel .crypto-sent-button {
  min-height: 64px;
  margin-top: 18px;
}

.payment-crypto-panel .crypto-sent-button span {
  font-size: 16px;
}

.payment-crypto-panel .crypto-sent-button small {
  margin-top: 3px;
  font-size: 11px;
}

.payment-crypto-panel .crypto-payment-status {
  min-height: 18px;
  margin-top: 9px;
  font-size: 12px;
}

@media (max-width: 700px) {
  .payment-shell.has-crypto-panel .payment-reference-form {
    padding: 29px 24px 30px;
  }

  .payment-shell.has-crypto-panel .payment-reference-form h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .payment-crypto-heading h2 {
    font-size: 25px;
  }

  .payment-crypto-heading p {
    font-size: 12px;
    text-align: left;
  }

  .payment-crypto-summary-total strong {
    font-size: 31px;
  }

  .payment-crypto-panel .crypto-wallet-choices {
    grid-template-columns: 1fr;
  }

  .payment-crypto-panel .crypto-wallet-details {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .payment-crypto-panel .crypto-wallet-qr img {
    width: 180px;
    height: 180px;
  }

  .payment-crypto-panel .crypto-wallet-info-head > span {
    font-size: 27px;
  }
}


/* Blurred crypto wallet previews */
.payment-crypto-panel .crypto-wallet-choice img {
  filter: blur(5px);
  transform: scale(1.06);
}

.payment-crypto-panel .crypto-wallet-qr img {
  filter: none;
  transform: none;
}
