:root {
  --ink: #09070c;
  --ink-2: #120b12;
  --ink-3: #1d1118;
  --surface: #0b080d;
  --surface-2: #100b11;
  --paper: #151017;
  --red: #ed1c24;
  --red-dark: #a90e18;
  --orange: #ff6a1a;
  --gold: #ffc342;
  --mint: #8cf0bd;
  --text: #f6f0ed;
  --muted: #aa9fa5;
  --muted-strong: #c8bcc2;
  --light: #fff8f4;
  --line: rgba(255, 255, 255, .11);
  --dark-line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --radius: 26px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(237, 28, 36, .08), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(255, 195, 66, .035), transparent 24rem),
    var(--surface);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(.media-dialog[open]) {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: normal;
  text-align: left;
  text-wrap: balance;
  word-break: normal;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
a,
select,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.narrow {
  width: min(calc(100% - 40px), 850px);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--light);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--dark-line);
  background: rgba(9, 7, 12, .92);
  color: var(--light);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  width: 154px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand > img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 16px rgba(237, 28, 36, .3));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 22px);
  margin-inline: auto;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav > a,
.nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-block: 27px;
  color: rgba(255, 248, 244, .73);
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-item > a:hover,
.nav-item > a.is-active {
  color: #fff;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-item > a:hover::after,
.nav-item > a.is-active::after {
  transform: none;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 230px;
  display: grid;
  visibility: hidden;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 17px;
  background: rgba(18, 11, 18, .98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  min-height: 42px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.2;
}

.nav-dropdown a:not(.nav-help-featured) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-help-featured strong,
.language-name strong {
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active,
.nav-dropdown a.is-current {
  border-color: rgba(255, 195, 66, .2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 600;
}

.nav-dropdown-games {
  width: 390px;
  grid-template-columns: repeat(2, 1fr);
}

.nav-dropdown-games > a:first-child {
  grid-column: 1 / -1;
}

.nav-dropdown-games > a:not(:first-child) {
  min-height: 54px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 10px;
}

.nav-game-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 195, 66, .2);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(237, 28, 36, .18), rgba(255, 195, 66, .08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  font-size: 17px;
  line-height: 1;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.nav-game-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-dropdown-games > a:hover .nav-game-icon,
.nav-dropdown-games > a.is-current .nav-game-icon {
  border-color: rgba(255, 195, 66, .58);
  background-color: rgba(255, 195, 66, .1);
  transform: translateY(-1px) scale(1.05);
}

.nav-dropdown-help {
  width: min(720px, calc(100vw - 32px));
  max-height: min(68vh, 570px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 195, 66, .45) transparent;
}

.nav-dropdown-help .nav-help-featured {
  grid-column: 1 / -1;
  border-color: rgba(255, 195, 66, .2);
  background: linear-gradient(90deg, rgba(237, 28, 36, .16), rgba(255, 195, 66, .07));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.language-picker {
  position: relative;
  z-index: 6;
}

.language-trigger {
  min-width: 104px;
  height: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 0 12px 0 10px;
  border: 1px solid var(--dark-line);
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  color: #fff;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(255, 195, 66, .55);
  background: rgba(255, 195, 66, .09);
}

.language-flag {
  width: 25px;
  display: inline-grid;
  place-items: center;
  font-size: 19px;
  line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .35));
}

.language-current {
  display: grid;
  line-height: 1;
}

.language-current small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.language-current strong {
  font-size: 11px;
  font-weight: 850;
}

.language-chevron {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  transform: translateY(-1px);
  transition: transform .2s ease;
}

.language-trigger[aria-expanded="true"] .language-chevron {
  transform: translateY(2px) rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 264px;
  max-height: min(72vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background: rgba(18, 11, 18, .98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
  backdrop-filter: blur(20px);
}

.language-menu::-webkit-scrollbar {
  width: 6px;
}

.language-menu::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(255, 195, 66, .34);
}

.language-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 0%, rgba(237, 28, 36, .22), transparent 42%);
  pointer-events: none;
}

.language-menu-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 10px;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.language-menu-title small {
  color: var(--gold);
  font-size: 8px;
}

.language-menu > a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(255, 255, 255, .72);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.language-menu > a:hover,
.language-menu > a:focus-visible {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  outline: none;
}

.language-menu > a.is-current {
  border-color: rgba(255, 195, 66, .26);
  background: linear-gradient(90deg, rgba(237, 28, 36, .18), rgba(255, 195, 66, .07));
  color: #fff;
}

.language-name {
  display: grid;
  line-height: 1.1;
}

.language-name strong {
  font-size: 13px;
}

.language-name small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  opacity: 0;
}

.language-menu > a.is-current .language-check {
  opacity: 1;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--red), #ff4c20);
  box-shadow: 0 12px 30px rgba(237, 28, 36, .24);
  color: #fff;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover {
  box-shadow: 0 16px 36px rgba(237, 28, 36, .34);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 12px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  color: inherit;
}

.button-wide {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.menu-toggle {
  width: 43px;
  height: 43px;
  display: none;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 2px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  max-height: calc(100vh - 66px);
  overflow-y: auto;
  padding: 8px 20px 22px;
  border-top: 1px solid var(--dark-line);
  background: var(--ink);
}

.mobile-menu > a {
  display: flex;
  padding: 13px 4px;
  border-bottom: 1px solid var(--dark-line);
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-menu > a.is-active {
  color: var(--gold);
}

.mobile-menu-group {
  border-bottom: 1px solid var(--dark-line);
}

.mobile-menu-group > a {
  display: flex;
  padding: 13px 4px 8px;
  font-size: 15px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-menu-group > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 0 0 12px;
}

.mobile-menu-group > div a {
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-menu-group-help > div {
  max-height: 46vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu-group-help > div a.is-active {
  background: rgba(255, 195, 66, .12);
  color: var(--gold);
}

.mobile-menu-group-games > div a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.mobile-menu-group-games .nav-game-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 14px;
}

.mobile-menu-group-games > div a.is-current {
  background: rgba(255, 195, 66, .12);
  color: var(--gold);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 52px;
  background:
    radial-gradient(circle at 15% 100%, rgba(237, 28, 36, .36), transparent 36%),
    radial-gradient(circle at 80% 0%, rgba(255, 106, 26, .13), transparent 29%),
    var(--ink);
  color: var(--light);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -140px;
  height: 240px;
  border-radius: 50%;
  background: rgba(237, 28, 36, .18);
  filter: blur(90px);
}

.hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .11);
  background: #20090c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.hero-track {
  position: relative;
  aspect-ratio: 3.2 / 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.018);
  transition: opacity .45s ease, transform .65s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: rgba(9, 7, 12, .65);
  color: #fff;
  font-size: 31px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 15px;
  display: flex;
  gap: 6px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .48);
  transition: width .2s ease, background .2s ease;
}

.carousel-dots button.is-active {
  width: 25px;
  background: var(--gold);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  gap: clamp(38px, 6vw, 78px);
  padding: clamp(42px, 5vw, 66px) 0 14px;
}

.hero-heading,
.hero-summary {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 9px 0 0;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
}

.hero-summary {
  width: min(100%, 500px);
  justify-self: end;
  padding-bottom: 4px;
}

.hero-summary > p {
  margin: 0;
  color: rgba(255, 248, 244, .72);
  font-size: 17px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.section-dark .eyebrow,
.subpage-hero .eyebrow,
.responsible-panel .eyebrow {
  color: var(--gold);
}

.section {
  position: relative;
  padding: clamp(74px, 8vw, 118px) 0;
}

.section-dark {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px),
    var(--ink-2);
  background-size: 46px 46px;
  color: var(--light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: start;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 40px;
}

.section-heading > div {
  min-width: 0;
}

.section-heading h2,
.faq-section h2,
.split-story h2,
.responsible-copy h2,
.account-guide h2,
.login-safety h2,
.account-form h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading > div:last-child {
  width: min(100%, 520px);
  justify-self: end;
}

.section-heading > div:last-child > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 550;
  line-height: 1.68;
  text-wrap: pretty;
}

.section:not(.section-dark) .section-heading > div:last-child {
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--red);
}

.section:not(.section-dark) .section-heading h2 {
  color: var(--ink);
}

.section:not(.section-dark) .eyebrow {
  color: var(--red-dark);
}

.section-dark .section-heading > div:last-child > p {
  color: rgba(255, 248, 244, .66);
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 850;
}

.section-dark .text-link {
  color: var(--gold);
}

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

.quick-card {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: minmax(120px, 1fr) auto;
  align-items: end;
  gap: 16px;
  overflow: hidden;
  padding: 18px 20px 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--ink-3);
  box-shadow: var(--shadow);
  color: #fff;
  transition: transform .25s ease, border-color .25s ease;
}

.quick-card:hover {
  border-color: rgba(255, 195, 66, .56);
  transform: translateY(-5px);
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 25%, rgba(237, 28, 36, .45));
}

.quick-card img {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  height: 140px;
  padding: 8px;
  object-fit: contain;
  transition: filter .3s ease;
}

.quick-card:hover img {
  filter: drop-shadow(0 12px 22px rgba(237, 28, 36, .3));
}

.quick-card span,
.quick-card b {
  position: relative;
  z-index: 2;
}

.quick-card span {
  max-width: 160px;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.1;
}

.quick-card b {
  margin-left: auto;
  color: var(--gold);
  font-size: 20px;
}

.game-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scrollbar-color: var(--red) transparent;
  scroll-snap-type: x proximity;
}

.game-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(28, 4, 10, .09);
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}

.section-dark .game-card {
  border-color: var(--dark-line);
  background: #1a1018;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
}

.game-card:hover {
  box-shadow: 0 20px 55px rgba(56, 3, 13, .18);
  transform: translateY(-4px);
}

.game-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1a0b0d;
}

.provider-card .game-art {
  aspect-ratio: 203 / 307;
}

.game-art img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
  transition: filter .35s ease;
}

.game-card:hover .game-art img {
  filter: brightness(1.08);
}

.hot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.game-card-copy {
  padding: 14px 15px 17px;
}

.game-card-copy span {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-dark .game-card-copy span {
  color: var(--gold);
}

.game-card-copy h3 {
  margin: 4px 0 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(237, 28, 36, .08), transparent 30%),
    var(--surface);
}

.catalogue-groups {
  display: block;
}

.catalogue-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(7, 5, 9, .72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(14px);
}

.catalogue-tab {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 248, 244, .62);
  line-height: 1.15;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.catalogue-tab > span {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(237, 28, 36, .22);
  border-radius: 9px;
  background: rgba(237, 28, 36, .07);
  font-size: 15px;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.catalogue-tab > strong {
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-tab:hover,
.catalogue-tab:focus-visible {
  border-color: rgba(237, 28, 36, .38);
  background: rgba(237, 28, 36, .07);
  color: #fff;
  transform: translateY(-2px);
}

.catalogue-tab.is-active {
  border-color: rgba(255, 195, 66, .42);
  background: linear-gradient(135deg, rgba(237, 28, 36, .2), rgba(255, 195, 66, .08));
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 8px 24px rgba(0, 0, 0, .22);
}

.catalogue-tab.is-active > span {
  border-color: rgba(255, 195, 66, .5);
  background: rgba(255, 195, 66, .09);
  transform: scale(1.06);
}

.catalogue-group:not([hidden]) {
  animation: catalogue-panel-in .32s ease both;
}

@keyframes catalogue-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .catalogue-tabs {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 42vw);
    justify-content: start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .catalogue-tabs::-webkit-scrollbar {
    display: none;
  }

  .catalogue-tab {
    scroll-snap-align: start;
  }
}

.catalogue-group {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 246, .78);
  box-shadow: 0 22px 65px rgba(35, 5, 12, .09);
}

.catalogue-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 28%);
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}

.catalogue-banner-media {
  --catalogue-art: none;
  position: relative;
  min-width: 0;
  aspect-ratio: 2.5 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #14070a;
}

.catalogue-banner-media::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: linear-gradient(rgba(9, 7, 12, .2), rgba(9, 7, 12, .2)), var(--catalogue-art) center / cover;
  filter: blur(18px) saturate(.8);
  opacity: .72;
}

.catalogue-banner-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalogue-banner-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, #1b0c12, #09070c);
}

.catalogue-banner-copy span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalogue-banner-copy h3 {
  margin: 5px 0 22px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
}

.catalogue-game-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.catalogue-game-card {
  border-radius: 16px;
  box-shadow: none;
}

.catalogue-game-card .game-card-copy {
  padding: 10px 11px 12px;
}

.catalogue-game-card .game-card-copy h3 {
  font-size: 12px;
}

.promo-preview {
  background: #e8dfd8;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

.promo-preview-card {
  display: block;
  line-height: 0;
}

.promo-preview-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.promo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(32, 6, 12, .09);
}

.promo-card > img,
.promo-card > button:first-child {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #23080a;
}

.promo-card > img,
.promo-card > button:first-child img {
  width: 100%;
  aspect-ratio: 3.2 / 1;
  object-fit: contain;
}

.promo-card > div {
  padding: 18px 20px 21px;
}

.promo-card span,
.guide-card small {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.promo-card h3 {
  margin: 3px 0 0;
  font-size: 20px;
  line-height: 1.2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border: 0;
}

.benefit-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.benefit-grid h3 {
  margin: 65px 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: var(--paper);
}

.faq-section h2 {
  margin-bottom: 32px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

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

.faq-list summary span {
  color: var(--red);
  font-size: 26px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -7px 0 22px;
  color: var(--muted);
}

.home-seo-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(237, 28, 36, .13), transparent 31rem),
    radial-gradient(circle at 8% 72%, rgba(255, 195, 66, .04), transparent 24rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .016) 0 1px, transparent 1px 19px),
    #080609;
}

.home-seo-shell {
  width: min(calc(100% - 40px), 1080px);
  display: grid;
  gap: clamp(58px, 8vw, 92px);
}

.home-seo-topic {
  position: relative;
  padding-left: clamp(22px, 4vw, 46px);
  border-left: 1px solid rgba(237, 28, 36, .42);
}

.home-seo-topic::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid #080609;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(237, 28, 36, .65);
}

.home-seo-topic h2 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--light);
  font-size: clamp(29px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.home-seo-topic > p:not(.eyebrow) {
  max-width: 850px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.78;
}

.home-seo-topic > p:not(.eyebrow) + p {
  margin-top: 12px;
}

.home-seo-grid,
.home-seo-category-grid {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

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

.home-seo-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-seo-card,
.home-seo-link-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(237, 28, 36, .065), transparent 52%),
    rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 16px 42px rgba(0, 0, 0, .2);
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-seo-card {
  min-height: 190px;
  padding: 24px;
}

.home-seo-card > span,
.home-seo-link-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.home-seo-card h3,
.home-seo-link-card h3 {
  margin: 38px 0 8px;
  color: var(--light);
  font-size: 18px;
  line-height: 1.2;
}

.home-seo-card p,
.home-seo-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-seo-link-card {
  min-height: 154px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: start;
  gap: 13px;
  padding: 20px;
}

.home-seo-link-card > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 195, 66, .22);
  border-radius: 11px;
  background: rgba(255, 195, 66, .06);
  font-size: 16px;
}

.home-seo-link-card h3 {
  margin: 2px 0 7px;
  font-size: 16px;
}

.home-seo-link-card > b {
  color: var(--red);
  font-size: 16px;
  transition: color .22s ease, transform .22s ease;
}

.home-seo-card:hover,
.home-seo-link-card:hover,
.home-seo-link-card:focus-visible {
  border-color: rgba(255, 195, 66, .42);
  background-color: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 22px 56px rgba(0, 0, 0, .3), 0 0 25px rgba(237, 28, 36, .08);
  transform: translateY(-5px);
}

.home-seo-link-card:hover > b,
.home-seo-link-card:focus-visible > b {
  color: var(--gold);
  transform: translate(3px, -3px);
}

@media (max-width: 820px) {
  .home-seo-grid,
  .home-seo-category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .home-seo-shell {
    width: min(calc(100% - 28px), 1080px);
  }

  .home-seo-topic {
    padding-left: 18px;
  }

  .home-seo-topic > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.72;
  }

  .home-seo-grid,
  .home-seo-category-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .home-seo-card {
    min-height: 0;
  }

  .home-seo-card h3 {
    margin-top: 25px;
  }

  .home-seo-link-card {
    min-height: 0;
  }
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 110px) 0;
  background:
    linear-gradient(120deg, rgba(237, 28, 36, .2), transparent 38%),
    var(--ink);
  color: var(--light);
}

.subpage-glow {
  position: absolute;
  top: -180px;
  left: 28%;
  width: 580px;
  height: 580px;
  border: 110px solid rgba(237, 28, 36, .18);
  border-radius: 50%;
  filter: blur(28px);
}

.subpage-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 248, 244, .72);
  font-size: 19px;
}

.subpage-art {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .38);
  transform: rotate(2deg);
}

.subpage-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  pointer-events: none;
}

.subpage-art img {
  width: 100%;
  aspect-ratio: 3.2 / 1;
  object-fit: contain;
  background: #23080a;
}

.subpage-art.is-generated {
  --hero-art: none;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: #16080b;
}

.subpage-art.is-generated::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: linear-gradient(rgba(9, 7, 12, .25), rgba(9, 7, 12, .25)), var(--hero-art) center / cover;
  filter: blur(18px) saturate(.78);
  opacity: .7;
}

.subpage-art.is-generated img {
  position: relative;
  z-index: 1;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.category-link-row {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin: -24px 0 30px;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.category-link-row::-webkit-scrollbar {
  display: none;
}

.category-link-row a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.game-tools {
  position: sticky;
  z-index: 10;
  top: 91px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 242, 238, .92);
  backdrop-filter: blur(14px);
}

.filter-row {
  display: flex;
  flex: 1 1 auto;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.game-search {
  flex: 0 0 260px;
}

.game-search input {
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  font-size: 13px;
}

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

.games-grid .game-card[hidden] {
  display: none;
}

.empty-state {
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.responsible-section {
  padding-top: 0;
}

.responsible-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 28px;
  background: linear-gradient(135deg, #a70f17, var(--ink));
  color: #fff;
}

.responsible-panel > span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.responsible-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.responsible-panel p:last-child {
  max-width: 700px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .72);
}

.notice-banner {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(237, 28, 36, .3);
  border-radius: 16px;
  background: #fff1ec;
  color: #86101a;
  font-weight: 700;
}

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

.steps-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
}

.steps-grid span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 850;
}

.steps-grid h3 {
  margin: 48px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.related-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-category-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-weight: 800;
}

.related-category-grid b {
  color: var(--gold);
}

.category-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.category-guide-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 250, 246, .7);
}

.category-guide-grid h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.category-guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.results-section {
  background: linear-gradient(180deg, var(--surface), #e8ded6);
}

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

.result-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(32, 6, 12, .08);
}

.result-card > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-digits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 24px 0 18px;
}

.result-digits b {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #231017, #09070c);
  color: var(--gold);
  font-size: clamp(22px, 3vw, 34px);
}

.result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.official-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(32, 120, 75, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.official-notice > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #177348;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.official-notice h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.official-notice p {
  margin: 0;
  color: var(--muted);
}

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

.support-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(28, 4, 10, .07);
}

.support-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.support-grid h3 {
  margin: 52px 0 9px;
  font-size: 20px;
  line-height: 1.15;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.support-security {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 24px;
  background: linear-gradient(135deg, #9f111a, var(--ink));
  color: #fff;
}

.support-security h2 {
  margin: 0 0 8px;
  font-size: clamp(25px, 3vw, 36px);
}

.support-security p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
}

.split-story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.brand-display {
  position: relative;
  width: 100%;
  height: clamp(340px, 34vw, 460px);
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 50px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(237, 28, 36, .35), transparent 38%),
    repeating-conic-gradient(from 45deg, rgba(255,255,255,.025) 0 10deg, transparent 10deg 20deg),
    var(--ink);
  box-shadow: var(--shadow);
}

.brand-display::after {
  content: "";
  position: absolute;
  width: min(68%, 310px);
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 195, 66, .25);
  border-radius: 50%;
}

.brand-display img {
  position: relative;
  z-index: 1;
  width: min(82%, 440px);
  height: auto;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .45));
}

.brand-display p {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
}

.large-copy {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.split-story .button-ghost {
  border-color: var(--line);
  color: var(--text);
}

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

.values-grid article {
  min-height: 225px;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--dark-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
}

.values-grid img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.values-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.22;
}

.values-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

.responsible-copy {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.age-orbit {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.age-orbit::before,
.age-orbit::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(237, 28, 36, .25);
  border-radius: 50%;
}

.age-orbit::after {
  width: 220px;
  height: 220px;
  border-style: dashed;
}

.age-orbit strong {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 60px;
}

.age-orbit span {
  position: absolute;
  margin-top: 92px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(34px, 6vw, 80px);
}

.account-form {
  position: sticky;
  top: 112px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.account-form h2 {
  margin-bottom: 28px;
  font-size: 30px;
  line-height: 1.1;
}

.form-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.account-form label {
  display: block;
  margin-bottom: 17px;
}

.account-form label > span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
}

.account-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  outline: 0;
}

.account-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, .12);
}

.form-notice,
.form-status {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.form-status {
  padding: 10px 12px;
  border-radius: 10px;
  background: #e9f8ef;
  color: #176c3c;
  font-weight: 750;
}

.account-guide,
.login-safety {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.guide-cover-button {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.guide-cover-button img {
  width: 100%;
  height: auto;
}

.guide-cover-button > span,
.guide-card-media > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 99px;
  background: rgba(9, 7, 12, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.account-guide h2,
.login-safety h2 {
  margin-bottom: 28px;
  font-size: clamp(30px, 3.4vw, 43px);
  line-height: 1.08;
}

.numbered-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.numbered-steps li {
  position: relative;
  padding: 0 0 24px 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  counter-increment: steps;
}

.numbered-steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.numbered-steps h3,
.safety-list h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.numbered-steps p,
.safety-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.safety-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.safety-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.guide-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(28, 4, 10, .08);
  color: var(--text);
}

.guide-card-media {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #190b0e;
}

.guide-card img {
  width: 100%;
  height: auto;
  padding: 0;
  transition: filter .35s ease;
}

.guide-card-media > span {
  top: 12px;
  right: 12px;
  bottom: auto;
  left: auto;
  padding: 8px 10px;
  font-size: 10px;
}

.guide-card:hover img {
  filter: brightness(1.08);
}

.guide-card-copy {
  display: block;
  padding: 16px 17px 19px;
}

.guide-card-copy small,
.guide-card-copy strong {
  display: block;
}

.guide-card-copy strong {
  margin: 3px 0 0;
  font-size: 16px;
  line-height: 1.3;
}

.home-help-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(237, 28, 36, .09), transparent 28%),
    var(--surface);
}

.home-help-carousel {
  position: relative;
}

.home-help-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 5);
  gap: 14px;
  overflow-x: auto;
  padding: 5px 3px 16px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.home-help-scroll::-webkit-scrollbar {
  display: none;
}

.home-help-scroll-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(237, 28, 36, .62);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(35, 20, 29, .96), rgba(8, 6, 10, .97));
  color: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .44), 0 0 0 4px rgba(9, 7, 12, .7), 0 0 22px rgba(237, 28, 36, .16);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color .22s ease, color .22s ease, opacity .22s ease, box-shadow .22s ease, transform .22s ease;
  backdrop-filter: blur(12px);
}

.home-help-scroll-arrow.is-previous {
  left: 10px;
}

.home-help-scroll-arrow.is-next {
  right: 10px;
}

.home-help-scroll-arrow:hover,
.home-help-scroll-arrow:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 17px 44px rgba(0, 0, 0, .5), 0 0 0 4px rgba(9, 7, 12, .76), 0 0 28px rgba(237, 28, 36, .34);
  transform: translateY(-50%) scale(1.08);
}

.home-help-scroll-arrow:active {
  transform: translateY(-50%) scale(.94);
}

.home-help-scroll-arrow:disabled {
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .28);
  box-shadow: 0 9px 24px rgba(0, 0, 0, .25);
  opacity: .62;
  cursor: default;
  transform: translateY(-50%) scale(.9);
}

.home-help-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(28, 4, 10, .08);
  color: var(--text);
  scroll-snap-align: start;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), border-color .28s ease, box-shadow .28s ease;
}

.home-help-card > img {
  display: block;
  width: 100%;
  height: auto;
  background: #180a0d;
  object-fit: contain;
  transition: filter .35s ease;
}

.home-help-card:hover,
.home-help-card:focus-visible {
  z-index: 2;
  border-color: rgba(237, 28, 36, .5);
  box-shadow: 0 22px 52px rgba(79, 4, 17, .17);
  transform: translateY(-6px);
}

.home-help-card:hover > img,
.home-help-card:focus-visible > img {
  filter: brightness(1.08) saturate(1.05);
}

@media (max-width: 1120px) {
  .home-help-scroll {
    grid-auto-columns: calc((100% - 42px) / 4);
  }
}

@media (max-width: 860px) {
  .home-help-scroll {
    grid-auto-columns: calc((100% - 28px) / 3);
  }
}

.guide-detail-section {
  background: linear-gradient(180deg, var(--surface), #e7ddd5);
}

.guide-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.guide-detail-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.guide-detail-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #170a0d;
  box-shadow: var(--shadow);
}

.guide-detail-cover img {
  width: 100%;
  height: auto;
  padding: 7px;
}

.guide-detail-cover span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  padding: 9px 12px;
  border-radius: 99px;
  background: rgba(9, 7, 12, .84);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(8px);
}

.guide-tutorial-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.guide-tutorial-heading h2 {
  margin: 6px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.guide-tutorial-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.guide-tutorial-heading > p:not(.eyebrow) + p {
  margin-top: 14px;
}

.guide-long-frame {
  width: min(100%, 1080px);
  overflow: hidden;
  padding: clamp(7px, 1.4vw, 14px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(39, 5, 13, .13);
}

.guide-long-frame img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.guide-check-section {
  overflow: hidden;
}

.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-related-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  padding: 10px 16px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(28, 4, 10, .07);
  color: var(--text);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.guide-related-card img {
  width: 78px;
  height: 102px;
  border-radius: 12px;
  background: #16090c;
  object-fit: contain;
}

.guide-related-card span {
  font-size: 14px;
  font-weight: 820;
  line-height: 1.28;
}

.guide-related-card b {
  color: var(--red);
  font-size: 20px;
  transition: color .22s ease, transform .22s ease;
}

.guide-related-card:hover,
.guide-related-card:focus-visible {
  border-color: rgba(237, 28, 36, .5);
  box-shadow: 0 20px 48px rgba(79, 4, 17, .15);
  transform: translateY(-5px);
}

.guide-related-card:hover b,
.guide-related-card:focus-visible b {
  color: var(--gold);
  transform: translateX(4px);
}

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

.extras-grid article {
  min-height: 280px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .04);
}

.extras-grid img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.extras-grid h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 18px;
}

/* Official dark visual system */
.section:not(.section-dark) {
  border-top: 1px solid rgba(255, 255, 255, .045);
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 28, 36, .095), transparent 31rem),
    radial-gradient(circle at 9% 92%, rgba(255, 195, 66, .035), transparent 24rem),
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    var(--surface);
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
  color: var(--text);
}

.section-dark {
  border-top: 1px solid rgba(255, 195, 66, .055);
  background:
    radial-gradient(circle at 8% 20%, rgba(237, 28, 36, .11), transparent 29rem),
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px),
    var(--ink-2);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.section:not(.section-dark) .section-heading h2,
.faq-section h2,
.split-story h2,
.responsible-copy h2,
.account-guide h2,
.login-safety h2,
.account-form h2,
.guide-tutorial-heading h2 {
  color: var(--light);
}

.section:not(.section-dark) .section-heading > div:last-child {
  border-left-color: var(--red);
}

.section:not(.section-dark) .section-heading > div:last-child > p,
.section-heading > div:last-child > p,
.large-copy,
.guide-tutorial-heading > p:not(.eyebrow) {
  color: var(--muted-strong);
}

.section:not(.section-dark) .eyebrow,
.promo-card span,
.guide-card small,
.result-card > span,
.support-grid span,
.form-kicker,
.numbered-steps li::before,
.guide-card-copy small {
  color: #ff555b;
}

.catalogue-section,
.home-help-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(237, 28, 36, .13), transparent 30rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 18px),
    #0a070b;
}

.promo-preview,
.faq-section,
.results-section,
.guide-detail-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 28, 36, .085), transparent 28rem),
    radial-gradient(circle at 8% 92%, rgba(255, 195, 66, .03), transparent 20rem),
    linear-gradient(120deg, rgba(255, 255, 255, .015), transparent 38%),
    #0d090e;
}

:where(
  .catalogue-group,
  .game-card,
  .promo-card,
  .result-card,
  .support-grid article,
  .account-form,
.safety-list article,
.guide-card,
.home-help-card,
.guide-related-card
) {
  border-color: rgba(255, 255, 255, .11);
  background: linear-gradient(150deg, rgba(30, 20, 28, .98), rgba(14, 10, 15, .98));
  box-shadow: 0 18px 52px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .035);
  color: var(--text);
}

.catalogue-group {
  border-color: rgba(255, 195, 66, .11);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, .055), transparent 38%),
    rgba(15, 10, 15, .94);
}

.game-card-copy h3,
.promo-card h3,
.result-card h2,
.support-grid h3,
.guide-card-copy strong,
.guide-related-card span {
  color: var(--light);
}

.benefit-grid {
  border-color: var(--line);
}

.benefit-grid article {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .024), rgba(237, 28, 36, .025));
}

.benefit-grid article:hover span,
.support-grid article:hover span,
.result-card:hover > span,
.category-guide-grid article:hover h3,
.safety-list article:hover h3 {
  color: var(--gold);
}

.category-guide-grid article,
.official-notice {
  border-color: rgba(255, 255, 255, .11);
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(237, 28, 36, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.category-guide-grid h3,
.official-notice h2 {
  color: var(--light);
}

.official-notice {
  border-color: rgba(48, 178, 109, .28);
}

.official-notice > span {
  border: 1px solid rgba(140, 240, 189, .26);
  background: rgba(23, 115, 72, .45);
  color: var(--mint);
}

.game-tools {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(13, 9, 14, .9);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .28);
}

.category-link-row a,
.filter-chip {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  color: var(--light);
}

.category-link-row a:hover,
.category-link-row a:focus-visible {
  border-color: rgba(255, 195, 66, .5);
  background: rgba(255, 195, 66, .08);
  color: var(--gold);
}

.game-search input,
.account-form input {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(5, 4, 7, .68);
  color: var(--light);
}

.game-search input::placeholder,
.account-form input::placeholder {
  color: rgba(255, 248, 244, .42);
}

.notice-banner {
  border-color: rgba(237, 28, 36, .36);
  background: linear-gradient(100deg, rgba(237, 28, 36, .12), rgba(237, 28, 36, .035));
  color: #ffb8bb;
}

.form-status {
  border: 1px solid rgba(140, 240, 189, .22);
  background: rgba(23, 115, 72, .18);
  color: var(--mint);
}

.age-orbit {
  border-color: rgba(255, 195, 66, .18);
  background:
    radial-gradient(circle, rgba(237, 28, 36, .13), transparent 60%),
    linear-gradient(145deg, #1b1119, #09070c);
}

.split-story .button-ghost {
  border-color: rgba(255, 255, 255, .18);
  color: var(--light);
}

.guide-long-frame {
  border-color: rgba(255, 195, 66, .13);
  background: linear-gradient(145deg, #1a1118, #09070c);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.faq-list details,
.numbered-steps li {
  border-color: var(--line);
}

.faq-list summary {
  color: var(--light);
}

.faq-list details:hover,
.numbered-steps li:hover {
  background: linear-gradient(90deg, rgba(237, 28, 36, .09), transparent 76%);
}

.empty-state {
  border-color: rgba(255, 195, 66, .2);
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
}

/* Shared card interaction system */
:where(
  .quick-card,
  .game-card,
  .promo-card,
  .guide-card,
  .guide-cover-button,
  .benefit-grid article,
  .steps-grid article,
  .category-guide-grid article,
  .result-card,
  .support-grid article,
  .values-grid article,
  .safety-list article,
  .extras-grid article,
  .related-category-grid a,
  .official-notice
) {
  position: relative;
  transition:
    transform .28s cubic-bezier(.2, .8, .2, 1),
    border-color .28s ease,
    background-color .28s ease,
    box-shadow .28s ease;
}

:where(
  .quick-card,
  .game-card,
  .promo-card,
  .guide-card,
  .guide-cover-button,
  .benefit-grid article,
  .steps-grid article,
  .category-guide-grid article,
  .result-card,
  .support-grid article,
  .values-grid article,
  .safety-list article,
  .extras-grid article,
  .related-category-grid a,
  .official-notice
):hover,
:where(
  .quick-card,
  a.game-card,
  .promo-card,
  .guide-card,
  .guide-cover-button,
  .related-category-grid a
):focus-visible,
:where(.promo-card, .guide-card):focus-within {
  z-index: 2;
  border-color: rgba(237, 28, 36, .5);
  box-shadow: 0 22px 58px rgba(79, 4, 17, .18), 0 0 0 1px rgba(237, 28, 36, .08);
  transform: translateY(-6px);
}

.section-dark :where(
  .game-card,
  .steps-grid article,
  .values-grid article,
  .extras-grid article,
  .related-category-grid a
):hover,
.section-dark :where(a.game-card, .related-category-grid a):focus-visible {
  border-color: rgba(255, 195, 66, .58);
  background-color: rgba(255, 255, 255, .075);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .34), 0 0 25px rgba(255, 195, 66, .1);
}

:where(.quick-card, a.game-card, .guide-cover-button, .related-category-grid a):active,
:where(.promo-card, .guide-card):active {
  transform: translateY(-1px) scale(.985);
}

.promo-card > button:first-child {
  cursor: pointer;
  overflow: hidden;
}

.promo-card > img,
.promo-card > button:first-child img {
  transition: filter .35s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
}

.promo-card:hover > img,
.promo-card:hover > button:first-child img,
.promo-card:focus-within > button:first-child img {
  filter: brightness(1.08) saturate(1.06);
  transform: scale(1.025);
}

.promo-card .text-link,
.quick-card b,
.related-category-grid b {
  transition: color .22s ease, transform .22s ease;
}

.promo-card:hover .text-link,
.promo-card:focus-within .text-link,
.quick-card:hover b,
.quick-card:focus-visible b,
.related-category-grid a:hover b,
.related-category-grid a:focus-visible b {
  color: var(--gold);
  transform: translateX(4px);
}

.game-card .game-art img,
.guide-card img,
.guide-cover-button img,
.values-grid img,
.extras-grid img {
  transition: filter .35s ease, transform .42s cubic-bezier(.2, .8, .2, 1);
}

.game-card:hover .game-art img,
a.game-card:focus-visible .game-art img,
.guide-card:hover img,
.guide-card:focus-within img,
.guide-cover-button:hover img,
.guide-cover-button:focus-visible img,
.values-grid article:hover img,
.extras-grid article:hover img {
  filter: brightness(1.08) saturate(1.05);
  transform: scale(1.035);
}

.benefit-grid article:hover span,
.support-grid article:hover span,
.result-card:hover > span,
.category-guide-grid article:hover h3,
.safety-list article:hover h3 {
  color: var(--gold);
}

.numbered-steps li,
.faq-list details {
  transition: background-color .22s ease, transform .22s ease;
}

.numbered-steps li:hover {
  background: linear-gradient(90deg, rgba(237, 28, 36, .09), transparent);
  transform: translateX(5px);
}

.faq-list details:hover {
  background: linear-gradient(90deg, rgba(237, 28, 36, .09), transparent 75%);
}

.media-dialog {
  width: min(100% - 28px, 780px);
  max-height: calc(100vh - 28px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: #180d12;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}

.media-dialog::backdrop {
  background: rgba(5, 2, 4, .86);
  backdrop-filter: blur(8px);
}

.media-dialog > button {
  position: absolute;
  z-index: 2;
  top: -11px;
  right: -11px;
  width: 43px;
  height: 43px;
  padding: 0 0 3px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.dialog-scroll {
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 20px;
}

.dialog-scroll img {
  width: 100%;
  height: auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  border-top: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(237, 28, 36, .18), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(255, 195, 66, .06), transparent 23rem),
    #070509;
  color: var(--light);
}

.site-footer::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 35%, var(--gold) 72%, var(--red-dark));
  box-shadow: 0 0 24px rgba(237, 28, 36, .52);
  content: "";
}

.site-footer::after {
  position: absolute;
  top: -260px;
  left: 12%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 195, 66, .09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(150px, .68fr) minmax(150px, .68fr) minmax(280px, 1fr);
  align-items: start;
  gap: clamp(34px, 4vw, 58px);
}

.footer-logo {
  display: block;
  width: 182px;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 20px rgba(237, 28, 36, .34));
  transition: filter .24s ease, transform .24s ease;
}

.footer-logo:hover img,
.footer-logo:focus-visible img {
  filter: drop-shadow(0 0 28px rgba(237, 28, 36, .58));
  transform: translateY(-2px);
}

.footer-brand h2 {
  max-width: 410px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.08;
  letter-spacing: -.03em;
  text-transform: none;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 248, 244, .64);
  font-size: 14px;
  line-height: 1.75;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  transition: color .22s ease, transform .22s ease;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible {
  color: #fff;
  transform: translateX(4px);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h2,
.footer-member-card > h2,
.footer-categories h2 {
  margin: 6px 0 17px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 195, 66, .36);
  color: rgba(255, 248, 244, .82);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-column > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: rgba(255, 248, 244, .62);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.footer-column > a b {
  color: var(--red);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-column > a:hover,
.footer-column > a:focus-visible,
.footer-column > a.is-active {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-column > a:hover b,
.footer-column > a:focus-visible b,
.footer-column > a.is-active b {
  opacity: 1;
  transform: none;
}

.footer-member-card {
  padding: 22px;
  border: 1px solid rgba(255, 195, 66, .18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(237, 28, 36, .13), rgba(255, 255, 255, .035));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.footer-member-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-member-identity > span,
.footer-bottom-brand > span {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 195, 66, .46);
  border-radius: 50%;
  background: #120b12;
  box-shadow: 0 0 20px rgba(237, 28, 36, .24);
}

.footer-member-identity img,
.footer-bottom-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-member-identity small,
.footer-member-identity strong {
  display: block;
}

.footer-member-identity small {
  color: rgba(255, 248, 244, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-member-identity strong {
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
}

.footer-member-card > p {
  margin: -4px 0 18px;
  color: rgba(255, 248, 244, .58);
  font-size: 12px;
  line-height: 1.65;
}

.footer-member-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.footer-member-actions .button {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 11px;
}

.footer-member-actions .button-ghost {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.footer-categories {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 54px;
  padding: 27px 0 31px;
  border-top: 1px solid var(--dark-line);
}

.footer-categories h2 {
  margin: 0 0 4px;
  padding: 0;
  border: 0;
}

.footer-categories p {
  margin: 0;
  color: rgba(255, 248, 244, .42);
  font-size: 11px;
}

.footer-categories nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-categories a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 99px;
  color: rgba(255, 248, 244, .66);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 750;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

.footer-categories a:hover,
.footer-categories a:focus-visible,
.footer-categories a.is-active {
  border-color: rgba(255, 195, 66, .48);
  background: rgba(237, 28, 36, .12);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 195, 66, .38);
  background: linear-gradient(96deg, #8f0d16, var(--red) 48%, #b5121b);
  box-shadow: 0 -10px 32px rgba(237, 28, 36, .14);
}

.footer-bottom {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding-block: 10px;
  color: #fff;
}

.footer-bottom-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 15px;
  letter-spacing: -.01em;
}

.footer-bottom-brand > span {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(8, 6, 11, .88);
}

.footer-bottom-brand img {
  width: 31px;
  height: 31px;
}

.footer-languages {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-languages small {
  margin-right: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-languages a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 99px;
  color: rgba(255, 255, 255, .74);
  font-size: 9px;
  font-weight: 850;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.footer-languages a:hover,
.footer-languages a:focus-visible,
.footer-languages a.is-current {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(8, 6, 11, .18);
  color: #fff;
}

.footer-bottom > p {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 700;
}

.official-overview-section,
.official-method-section,
.official-vip-rules,
.official-winner-snapshots,
.official-related-section {
  position: relative;
  overflow: clip;
}

.official-overview-section::before,
.official-method-section::before,
.official-vip-rules::before,
.official-winner-snapshots::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(237, 28, 36, .14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  right: -210px;
  top: 90px;
  box-shadow: 0 0 0 54px rgba(237, 28, 36, .025), 0 0 0 110px rgba(255, 195, 66, .018);
}

.official-method-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.official-method-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(237, 28, 36, .12), rgba(255, 255, 255, .025));
  color: #fff;
  font-weight: 850;
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.official-method-nav a b {
  color: var(--gold);
  font-size: 20px;
}

.official-method-nav a:hover,
.official-method-nav a:focus-visible {
  border-color: rgba(255, 195, 66, .5);
  background: linear-gradient(135deg, rgba(237, 28, 36, .22), rgba(255, 195, 66, .055));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
  transform: translateY(-4px);
}

.official-material-grid,
.official-vip-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  margin-top: 34px;
}

.official-material-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.official-material-grid-single .official-material-card {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.official-material-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(31, 15, 23, .98), rgba(9, 7, 12, .98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.official-material-card:hover,
.official-material-card:focus-within {
  border-color: rgba(237, 28, 36, .58);
  box-shadow: 0 28px 78px rgba(0, 0, 0, .44), 0 0 38px rgba(237, 28, 36, .08);
  transform: translateY(-6px);
}

.official-material-card > button {
  position: relative;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #050407;
}

.official-material-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter .35s ease, transform .45s cubic-bezier(.2, .7, .2, 1);
}

.official-material-card > button > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 99px;
  background: rgba(7, 5, 9, .82);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(10px);
}

.official-material-card:hover img,
.official-material-card:focus-within img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.official-material-card:hover > button > span,
.official-material-card:focus-within > button > span {
  opacity: 1;
  transform: translateY(0);
}

.official-material-card figcaption {
  display: grid;
  gap: 3px;
  padding: 16px 18px 18px;
}

.official-material-card figcaption small {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.official-material-card figcaption strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.official-vip-intro {
  grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
}

.official-material-card.is-badge > button {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 28px;
  background: radial-gradient(circle at 50% 40%, rgba(237, 28, 36, .2), transparent 62%), #08060a;
}

.official-material-card.is-badge img {
  max-height: 460px;
  object-fit: contain;
}

.official-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.official-info-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.official-info-grid-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.official-info-grid article,
.official-tab-copy article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(237, 28, 36, .095), rgba(255, 255, 255, .02));
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.official-info-grid article:hover,
.official-tab-copy article:hover {
  border-color: rgba(255, 195, 66, .42);
  background: linear-gradient(150deg, rgba(237, 28, 36, .17), rgba(255, 195, 66, .035));
  transform: translateY(-4px);
}

.official-info-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.official-info-grid h3,
.official-tab-copy h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.22;
}

.official-info-grid p,
.official-tab-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.65;
}

.official-current-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 25px;
  border: 1px solid rgba(237, 28, 36, .35);
  border-radius: 20px;
  background: linear-gradient(110deg, rgba(237, 28, 36, .19), rgba(255, 195, 66, .035));
}

.official-current-note > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(237, 28, 36, .1);
  font-size: 22px;
  font-weight: 900;
}

.official-current-note h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 22px;
}

.official-current-note p,
.official-current-note small {
  display: block;
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
}

.official-current-note small {
  margin-top: 8px;
  color: var(--gold);
}

.official-rule-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.official-rule-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.official-rule-list article:hover {
  border-color: rgba(237, 28, 36, .5);
  background: rgba(237, 28, 36, .08);
  transform: translateX(4px);
}

.official-rule-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.official-rule-list p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
}

.official-rule-list-conditions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.official-rule-list-conditions article {
  grid-template-columns: 1fr;
  min-height: 150px;
}

.official-banner-grid .official-material-card img {
  aspect-ratio: 800 / 537;
}

.official-tab-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.official-tab-copy article {
  min-height: 0;
}

.app-icon-picker-section,
.app-icon-reference {
  position: relative;
  overflow: clip;
}

.app-icon-picker-section::before,
.app-icon-reference::before {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(237, 28, 36, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(237, 28, 36, .025), 0 0 0 128px rgba(255, 195, 66, .015);
  content: "";
  pointer-events: none;
}

.app-icon-picker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
  margin-top: 38px;
}

.app-icon-current {
  position: sticky;
  top: 100px;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 32px 26px;
  overflow: hidden;
  border: 1px solid rgba(237, 28, 36, .4);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 36%, rgba(237, 28, 36, .24), transparent 46%),
    linear-gradient(150deg, #1d0b14, #080609 72%);
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.app-icon-current::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .07), transparent 65%);
  content: "";
  pointer-events: none;
  transform: translateX(-100%);
  animation: app-icon-sheen 5s ease-in-out infinite;
}

.app-icon-current > small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.app-icon-current > span {
  width: min(190px, 70%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 35px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .42), 0 0 35px rgba(237, 28, 36, .14);
}

.app-icon-current img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: contain;
}

.app-icon-current strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.app-icon-current p,
.app-icon-choices > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.65;
}

.app-icon-choices h2 {
  margin: 7px 0 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

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

.app-icon-option {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  min-height: 82px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(237, 28, 36, .055));
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .13);
  transition: border-color .24s ease, background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.app-icon-option img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .3);
}

.app-icon-option span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
}

.app-icon-option b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  opacity: 0;
  transform: scale(.65);
  transition: opacity .2s ease, transform .2s ease;
}

.app-icon-option:hover,
.app-icon-option:focus-visible {
  border-color: rgba(255, 195, 66, .48);
  background: linear-gradient(145deg, rgba(237, 28, 36, .14), rgba(255, 195, 66, .04));
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
  transform: translateY(-4px);
}

.app-icon-option.is-selected {
  border-color: var(--red);
  background: linear-gradient(145deg, rgba(237, 28, 36, .24), rgba(255, 195, 66, .055));
  box-shadow: 0 0 0 2px rgba(237, 28, 36, .12), 0 18px 42px rgba(0, 0, 0, .32);
}

.app-icon-option.is-selected b {
  opacity: 1;
  transform: scale(1);
}

@keyframes app-icon-sheen {
  0%, 68%, 100% { transform: translateX(-100%); }
  82% { transform: translateX(100%); }
}

.information-overview-section,
.policy-content-section,
.information-source-section,
.information-related-section {
  position: relative;
  overflow: clip;
}

.information-overview-section::before,
.policy-content-section::before {
  position: absolute;
  top: 190px;
  right: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(237, 28, 36, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(237, 28, 36, .025), 0 0 0 124px rgba(255, 195, 66, .015);
  content: "";
  pointer-events: none;
}

.problem-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.problem-card-grid article {
  min-height: 200px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(237, 28, 36, .11), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.problem-card-grid article:hover {
  border-color: rgba(255, 195, 66, .45);
  background: linear-gradient(150deg, rgba(237, 28, 36, .2), rgba(255, 195, 66, .04));
  box-shadow: 0 26px 65px rgba(0, 0, 0, .32);
  transform: translateY(-5px);
}

.problem-card-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.problem-card-grid h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.problem-card-grid p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.65;
}

.technical-support-callout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(237, 28, 36, .42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 15%, rgba(255, 195, 66, .12), transparent 25%),
    linear-gradient(120deg, rgba(237, 28, 36, .25), rgba(15, 9, 14, .98) 65%);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .3);
}

.technical-support-callout h2 {
  margin: 6px 0 10px;
  color: #fff;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.technical-support-callout > div > p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.75;
}

.policy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 52px);
  margin-top: 38px;
}

.policy-toc {
  position: sticky;
  top: 98px;
  max-height: calc(100vh - 122px);
  padding: 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(31, 15, 23, .98), rgba(9, 7, 12, .98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .25);
  scrollbar-width: thin;
  scrollbar-color: rgba(237, 28, 36, .75) rgba(255, 255, 255, .05);
}

.policy-toc > p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.policy-toc nav {
  display: grid;
  gap: 4px;
}

.policy-toc a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 248, 244, .72);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.policy-toc a span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  border-color: rgba(255, 195, 66, .3);
  background: rgba(237, 28, 36, .11);
  color: #fff;
  transform: translateX(3px);
}

.policy-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(22, 12, 18, .98), rgba(7, 6, 9, .98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

.policy-section {
  scroll-margin-top: 100px;
  padding: clamp(26px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section > header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.policy-section > header > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 28, 36, .38);
  border-radius: 50%;
  background: rgba(237, 28, 36, .1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.policy-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.policy-prose > p {
  margin: 0 0 14px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.78;
}

.policy-prose > p:last-child {
  margin-bottom: 0;
}

.policy-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.policy-item-grid article {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.policy-item-grid article:hover {
  border-color: rgba(237, 28, 36, .42);
  background: rgba(237, 28, 36, .075);
  transform: translateY(-3px);
}

.policy-item-grid article > span {
  color: rgba(255, 195, 66, .62);
  font-size: 9px;
  font-weight: 900;
}

.policy-item-grid h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.policy-item-grid p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.6;
}

.policy-ordered-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: agreement;
}

.policy-ordered-list li {
  position: relative;
  min-height: 58px;
  padding: 17px 18px 17px 62px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
  counter-increment: agreement;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.policy-ordered-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(237, 28, 36, .16);
  color: var(--gold);
  content: counter(agreement, decimal-leading-zero);
  font-size: 9px;
  font-weight: 900;
}

.policy-ordered-list li:hover {
  border-color: rgba(237, 28, 36, .42);
  background: rgba(237, 28, 36, .07);
  transform: translateX(4px);
}

.policy-ordered-list p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.7;
}

.information-source-note {
  width: min(100%, 1040px);
  margin: 22px auto 0;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(237, 28, 36, .07);
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.65;
}

.chat-features-section,
.chat-shortcuts-section,
.chat-safety-section {
  position: relative;
  overflow: clip;
}

.chat-feature-explorer {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(28, 13, 20, .98), rgba(7, 6, 9, .98));
  box-shadow: 0 32px 86px rgba(0, 0, 0, .34);
}

.chat-feature-tablist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}

.chat-feature-tab {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 248, 244, .62);
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.chat-feature-tab > span {
  color: var(--gold);
  font-size: 12px;
}

.chat-feature-tab:hover,
.chat-feature-tab:focus-visible {
  border-color: rgba(255, 195, 66, .35);
  background: rgba(237, 28, 36, .09);
  color: #fff;
  transform: translateY(-2px);
}

.chat-feature-tab.is-active {
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(110deg, #bd0b16, var(--red), #ff342c);
  color: #fff;
  box-shadow: 0 12px 30px rgba(237, 28, 36, .3);
}

.chat-feature-tab.is-active > span {
  color: #fff;
}

.chat-feature-panels {
  min-height: 310px;
  display: grid;
}

.chat-feature-panel {
  grid-area: 1 / 1;
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(140px, .5fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(30px, 6vw, 72px);
  background:
    radial-gradient(circle at 13% 50%, rgba(237, 28, 36, .22), transparent 25%),
    linear-gradient(120deg, rgba(237, 28, 36, .08), transparent 55%);
}

.chat-feature-panel[hidden] {
  display: none;
}

.chat-feature-panel > span {
  width: clamp(115px, 15vw, 170px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 195, 66, .32);
  border-radius: 35%;
  background: linear-gradient(145deg, rgba(237, 28, 36, .34), rgba(12, 8, 12, .96));
  color: var(--gold);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .38), 0 0 45px rgba(237, 28, 36, .14);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
}

.chat-feature-panel h3 {
  margin: 7px 0 12px;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}

.chat-feature-panel div > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.75;
}

.chat-shortcut-dock {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(78, 10, 18, .62), rgba(15, 8, 12, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.chat-shortcut-dock article {
  min-height: 180px;
  padding: 22px 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  text-align: center;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.chat-shortcut-dock article:hover,
.chat-shortcut-dock article.is-active {
  border-color: rgba(237, 28, 36, .5);
  background: linear-gradient(145deg, rgba(237, 28, 36, .22), rgba(255, 195, 66, .035));
  transform: translateY(-4px);
}

.chat-shortcut-dock article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 195, 66, .28);
  border-radius: 50%;
  background: rgba(237, 28, 36, .13);
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.chat-shortcut-dock article.is-active > span {
  border-color: transparent;
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 7px rgba(237, 28, 36, .1);
}

.chat-shortcut-dock h3,
.chat-utility-grid h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 15px;
}

.chat-shortcut-dock p,
.chat-utility-grid p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 11px;
  line-height: 1.55;
}

.chat-utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.chat-utility-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.chat-utility-grid article:hover {
  border-color: rgba(255, 195, 66, .4);
  background: rgba(237, 28, 36, .08);
  transform: translateY(-4px);
}

.chat-utility-grid article > span {
  display: block;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.home-news-section,
.latest-news-list-section,
.news-article-section {
  position: relative;
  overflow: hidden;
}

.home-news-section::before,
.latest-news-list-section::before,
.news-article-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(237, 28, 36, .14), transparent 29%),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .018) 48% 49%, transparent 49% 100%);
  background-size: auto, 54px 54px;
  content: "";
  pointer-events: none;
}

.home-news-section .shell,
.latest-news-list-section .shell,
.news-article-section .shell {
  position: relative;
}

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

.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(36, 10, 16, .98), rgba(12, 8, 12, .98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(255, 195, 66, .48);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35), 0 0 30px rgba(237, 28, 36, .13);
  transform: translateY(-7px);
}

.news-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.news-card-art {
  position: relative;
  aspect-ratio: 3 / 2;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070507;
}

.news-card-art::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(8, 5, 8, .74));
  content: "";
  pointer-events: none;
}

.news-card-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .3s ease, transform .45s cubic-bezier(.2, .75, .25, 1);
}

.news-card:hover .news-card-art img,
.news-card:focus-visible .news-card-art img {
  filter: saturate(1.1) brightness(1.05);
  transform: scale(1.035);
}

.news-card-art b {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #a4000a);
  color: #fff;
  box-shadow: 0 8px 24px rgba(237, 28, 36, .28);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-card-copy {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 24px;
}

.news-card-copy small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.news-card-copy strong {
  color: #fff;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.news-card-copy > span {
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.65;
}

.news-card-copy em {
  margin-top: auto;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.news-card:hover .news-card-copy em,
.news-card:focus-visible .news-card-copy em {
  color: var(--gold);
}

.latest-news-source-section .official-material-grid {
  max-width: 940px;
  margin-inline: auto;
}

.news-article-shell {
  width: min(100%, 980px);
}

.news-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.news-article-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(237, 28, 36, .32);
  border-radius: 999px;
  background: rgba(237, 28, 36, .11);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.news-article-meta p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 11px;
}

.news-article-content {
  display: grid;
  gap: 16px;
}

.news-article-block {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(35, 9, 15, .78), rgba(13, 8, 12, .92));
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.news-article-block:hover {
  border-color: rgba(237, 28, 36, .42);
  background: linear-gradient(145deg, rgba(55, 10, 20, .85), rgba(13, 8, 12, .96));
  transform: translateY(-3px);
}

.news-article-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.news-article-block h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.news-article-block p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.85;
}

.news-article-block ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.news-article-block li {
  position: relative;
  padding: 13px 16px 13px 41px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  background: rgba(255, 255, 255, .026);
  color: rgba(255, 248, 244, .82);
  font-size: 12px;
  line-height: 1.55;
}

.news-article-block li::before {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.news-article-notice {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 195, 66, .33);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 195, 66, .1), rgba(237, 28, 36, .09));
}

.news-article-notice > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #16090c;
  font-size: 22px;
  font-weight: 950;
}

.news-article-notice h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 21px;
}

.news-article-notice p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.7;
}

.news-article-actions {
  margin-top: 24px;
}

.news-back-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  transition: color .2s ease, transform .2s ease;
}

.news-back-link:hover,
.news-back-link:focus-visible {
  color: #fff;
  transform: translateX(-4px);
}

.news-related-section .news-grid {
  margin-top: 30px;
}

@media (min-width: 861px) {
  .footer-bottom > p {
    padding-right: clamp(125px, 11vw, 175px);
  }
}

.mobile-dock {
  display: none;
}

.tpower-mascot {
  position: fixed;
  z-index: 70;
  right: clamp(8px, 1.7vw, 24px);
  bottom: clamp(10px, 1.5vw, 22px);
  width: clamp(132px, 11vw, 172px);
  display: block;
  border-radius: 42%;
  filter: drop-shadow(0 17px 22px rgba(0, 0, 0, .5));
  transition: filter .22s ease, transform .22s ease;
  -webkit-tap-highlight-color: transparent;
}

.tpower-mascot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: 50% 90%;
  animation: tpower-mascot-live 3.7s ease-in-out infinite;
}

.tpower-mascot-callout {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 78%;
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 195, 66, .62);
  border-radius: 999px 999px 12px 999px;
  background: rgba(14, 10, 16, .94);
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4), 0 0 18px rgba(237, 28, 36, .2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, 6px) scale(.9);
  transform-origin: right bottom;
  transition: opacity .22s ease, transform .22s ease;
}

.tpower-mascot:hover,
.tpower-mascot:focus-visible {
  filter:
    drop-shadow(0 20px 25px rgba(0, 0, 0, .54))
    drop-shadow(0 0 17px rgba(237, 28, 36, .38))
    drop-shadow(0 0 10px rgba(255, 195, 66, .24));
  transform: translateY(-5px) scale(1.035);
}

.tpower-mascot:hover .tpower-mascot-callout,
.tpower-mascot:focus-visible .tpower-mascot-callout {
  opacity: 1;
  transform: translate(0) scale(1);
}

.tpower-mascot:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.tpower-mascot:active {
  transform: translateY(-1px) scale(.97);
}

@keyframes tpower-mascot-live {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}

.gateway {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 15%, rgba(237, 28, 36, .28), transparent 35%),
    var(--ink);
  color: #fff;
}

.gateway-card {
  width: min(100%, 650px);
  padding: clamp(34px, 7vw, 70px);
  border: 1px solid var(--dark-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, .04);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.gateway-card > img {
  width: 250px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 30px rgba(237, 28, 36, .3));
}

.gateway-card > p {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.gateway-card h1 {
  margin: 30px 0;
  font-size: clamp(32px, 7vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}

.gateway-card > div {
  display: grid;
  gap: 11px;
}

.gateway-card small {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, .48);
}

@media (max-width: 1280px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    width: 138px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 1120px) {

  .catalogue-game-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .games-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .guides-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .account-guide,
  .login-safety {
    grid-template-columns: 210px 1fr;
  }
}

@media (max-width: 860px) {
  .shell,
  .narrow {
    width: min(calc(100% - 28px), var(--shell));
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    width: 138px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-track {
    aspect-ratio: 3.2 / 1;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-copy,
  .section-heading,
  .subpage-layout,
  .split-story,
  .responsible-copy {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 20px;
    padding: 36px 0 10px;
  }

  .hero-copy h1,
  .subpage-hero h1 {
    font-size: clamp(36px, 7.2vw, 48px);
    line-height: 1.04;
  }

  .section-heading {
    gap: 18px;
  }

  .section:not(.section-dark) .section-heading > div:last-child {
    padding-left: 17px;
  }

  .hero-summary,
  .section-heading > div:last-child {
    width: min(100%, 640px);
    justify-self: start;
  }

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

  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .catalogue-banner {
    grid-template-columns: 1fr;
  }

  .catalogue-banner-copy {
    min-height: 150px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  .catalogue-game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-tools {
    top: 78px;
    align-items: stretch;
    flex-direction: column;
  }

  .game-search {
    flex: auto;
  }

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

  .steps-grid article {
    min-height: auto;
  }

  .steps-grid h3 {
    margin-top: 28px;
  }

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

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

  .category-guide-grid {
    grid-template-columns: 1fr;
  }

  .support-security {
    grid-template-columns: 1fr;
  }

  .subpage-layout {
    gap: 40px;
  }

  .subpage-art {
    transform: none;
  }

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

  .responsible-copy {
    justify-items: start;
    text-align: left;
  }

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

  .account-form {
    position: static;
  }

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

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

  .guide-detail-aside {
    position: static;
    grid-template-columns: 190px minmax(220px, 340px);
    align-items: end;
    justify-content: start;
  }

  .guide-related-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    gap: 40px;
  }

  .footer-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr;
  }

  .footer-languages {
    justify-self: end;
  }

  .footer-bottom > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    width: 104px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .language-trigger {
    min-width: 78px;
    height: 36px;
    padding-inline: 8px;
    gap: 6px;
  }

  .language-current small {
    display: none;
  }

  .language-menu {
    right: -53px;
    width: min(280px, calc(100vw - 28px));
  }

  .home-hero {
    padding-top: 0;
  }

  .hero-carousel {
    border-radius: 0;
  }

  .hero-track {
    aspect-ratio: 3.2 / 1;
  }

  .hero-slide img {
    object-position: center;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .hero-copy h1,
  .subpage-hero h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.06;
  }

  .hero-summary > p,
  .lead,
  .large-copy {
    font-size: 16px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading h2,
  .faq-section h2,
  .split-story h2,
  .responsible-copy h2,
  .account-guide h2,
  .login-safety h2,
  .account-form h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
  }

  .quick-grid,
  .benefit-grid,
  .promo-grid,
  .promo-grid-preview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions.section {
    padding-block: 56px;
  }

  .quick-actions .section-heading {
    margin-bottom: 26px;
  }

  .quick-grid {
    gap: 12px;
  }

  .quick-card {
    min-height: 156px;
    grid-template-rows: minmax(76px, 1fr) auto;
    gap: 8px;
    padding: 12px 16px 16px;
    border-radius: 20px;
  }

  .quick-card img {
    height: 82px;
    padding: 2px;
  }

  .quick-card span {
    max-width: 210px;
    font-size: 17px;
  }

  .quick-card b {
    font-size: 18px;
  }

  .game-scroll {
    grid-auto-columns: 43%;
  }

  .catalogue-groups {
    gap: 28px;
  }

  .catalogue-group {
    padding: 10px;
    border-radius: 22px;
  }

  .catalogue-banner,
  .catalogue-banner-media {
    border-radius: 15px;
  }

  .catalogue-banner-copy {
    min-height: 130px;
    padding: 20px;
  }

  .catalogue-banner-copy h3 {
    margin-bottom: 16px;
  }

  .catalogue-game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 10px;
  }

  .benefit-grid article,
  .benefit-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .benefit-grid h3 {
    margin-top: 35px;
  }

  .subpage-hero {
    padding-block: 62px;
  }

  .subpage-art img {
    min-height: 0;
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .related-category-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .official-notice {
    grid-template-columns: 1fr;
  }

  .game-card-copy {
    padding: 11px 10px 13px;
  }

  .game-card-copy h3 {
    font-size: 12px;
  }

  .responsible-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .responsible-panel > span {
    width: 72px;
    height: 72px;
    font-size: 23px;
  }

  .responsible-panel h2 {
    font-size: 30px;
  }

  .brand-display {
    height: clamp(300px, 90vw, 360px);
    min-height: 0;
    padding: 30px;
  }

  .brand-display img {
    width: min(84%, 360px);
    max-height: 150px;
  }

  .values-grid article {
    grid-template-columns: 100px 1fr;
  }

  .values-grid img {
    width: 100px;
    height: 100px;
  }

  .age-orbit {
    width: 250px;
    justify-self: center;
  }

  .account-guide,
  .login-safety {
    grid-template-columns: 1fr;
  }

  .guide-cover-button {
    width: min(76%, 280px);
    margin-inline: auto;
  }

  .safety-list {
    grid-template-columns: 1fr;
  }

  .guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .guide-card-copy {
    padding: 12px;
  }

  .guide-card-copy strong {
    font-size: 13px;
  }

  .guide-card-media > span {
    font-size: 9px;
  }

  .home-help-scroll {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .guide-detail-aside {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .guide-detail-cover {
    width: min(72%, 250px);
  }

  .guide-detail-aside .button {
    width: min(100%, 340px);
  }

  .guide-long-frame {
    padding: 5px;
    border-radius: 17px;
  }

  .guide-long-frame img {
    border-radius: 11px;
  }

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

  .footer-grid {
    gap: 38px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-logo {
    margin-bottom: 18px;
  }

  .footer-brand h2 {
    max-width: 320px;
  }

  .footer-categories {
    margin-top: 42px;
    padding-block: 24px 28px;
  }

  .footer-categories nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-categories a {
    text-align: center;
  }

  .footer-bottom-band {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
    padding-block: 16px;
  }

  .footer-languages,
  .footer-bottom > p {
    grid-column: auto;
    justify-self: start;
  }

  .footer-languages {
    flex-wrap: wrap;
  }

  .mobile-dock {
    position: fixed;
    z-index: 75;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 70px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    padding: 7px 5px max(7px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--dark-line);
    background: linear-gradient(180deg, rgba(18, 14, 22, .97), rgba(8, 6, 11, .98));
    color: #fff;
    backdrop-filter: blur(18px);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, .3);
  }

  .mobile-dock-link {
    position: relative;
    min-width: 0;
    min-height: 51px;
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 5px 2px 3px;
    border-radius: 14px;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(8px, 2.2vw, 9px);
    font-weight: 750;
    line-height: 1.15;
    transition: color .22s ease, background-color .22s ease, transform .22s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-dock-link::after {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 195, 66, .8);
    content: "";
    opacity: 0;
    transform: translateX(50%) scaleX(.35);
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-dock-link > span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock-link:hover,
  .mobile-dock-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .07);
    transform: translateY(-2px);
  }

  .mobile-dock-link:active {
    transform: translateY(0) scale(.93);
  }

  .mobile-dock-link.is-active {
    color: var(--gold);
    background: linear-gradient(180deg, rgba(255, 195, 66, .1), transparent);
  }

  .mobile-dock-link.is-active::after {
    opacity: 1;
    transform: translateX(50%) scaleX(1);
  }

  .mobile-dock-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: filter .22s ease, transform .22s ease;
  }

  .mobile-dock-link:hover svg,
  .mobile-dock-link:focus-visible svg {
    transform: scale(1.08);
  }

  .mobile-dock-link.is-active svg {
    animation: dock-icon-live 1.9s ease-in-out infinite;
  }

  .mobile-dock-home {
    position: relative;
    z-index: 2;
    min-height: 58px;
    display: grid;
    place-items: center;
    align-self: start;
    transform: translateY(-22px);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-dock-logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 2px solid rgba(237, 28, 36, .82);
    border-radius: 50%;
    background: linear-gradient(145deg, #231924, #09070c);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .48), 0 0 0 5px rgba(9, 7, 12, .94), 0 0 22px rgba(237, 28, 36, .22);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  }

  .mobile-dock-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  .mobile-dock-home:hover .mobile-dock-logo,
  .mobile-dock-home:focus-visible .mobile-dock-logo {
    border-color: #ff3a42;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .52), 0 0 0 5px rgba(9, 7, 12, .94), 0 0 26px rgba(237, 28, 36, .48);
    transform: translateY(-3px) scale(1.05);
  }

  .mobile-dock-home:active .mobile-dock-logo {
    transform: translateY(1px) scale(.93);
  }

  .mobile-dock-home.is-active .mobile-dock-logo {
    border-color: var(--red);
    animation: dock-home-live 2.2s ease-in-out infinite;
  }

  .tpower-mascot {
    right: 3px;
    bottom: calc(79px + env(safe-area-inset-bottom));
    width: clamp(88px, 25vw, 106px);
  }

  .tpower-mascot-callout {
    top: 10%;
    right: 72%;
    padding: 6px 9px;
    font-size: 9px;
  }

  @keyframes dock-icon-live {
    0%,
    100% {
      filter: drop-shadow(0 0 0 rgba(255, 195, 66, 0));
      transform: translateY(0);
    }

    50% {
      filter: drop-shadow(0 0 7px rgba(255, 195, 66, .75));
      transform: translateY(-2px);
    }
  }

  @keyframes dock-home-live {
    0%,
    100% {
      box-shadow: 0 8px 24px rgba(0, 0, 0, .48), 0 0 0 5px rgba(9, 7, 12, .94), 0 0 16px rgba(237, 28, 36, .28);
    }

    50% {
      box-shadow: 0 10px 30px rgba(0, 0, 0, .52), 0 0 0 5px rgba(9, 7, 12, .94), 0 0 30px rgba(237, 28, 36, .62);
    }
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding-block: 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: 112px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: minmax(76px, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
    margin: 0;
  }

  .language-picker,
  .language-trigger,
  .header-cta {
    width: 100%;
  }

  .header-cta {
    min-width: 0;
    padding-inline: 7px;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .language-menu {
    right: auto;
    left: 0;
  }

  .mobile-menu {
    max-height: calc(100dvh - 110px);
  }
}

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

  .news-grid-home .news-card:last-child,
  .news-grid-related .news-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
  }

  .chat-feature-tablist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chat-shortcut-dock {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .policy-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .policy-toc {
    position: relative;
    top: auto;
    max-height: none;
  }

  .policy-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-icon-picker {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-icon-current {
    position: relative;
    top: auto;
    grid-template-columns: 130px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .app-icon-current > small,
  .app-icon-current > span {
    grid-row: 1 / span 3;
  }

  .app-icon-current > small {
    display: none;
  }

  .app-icon-current > span {
    width: 130px;
  }

  .official-info-grid,
  .official-info-grid-four,
  .official-info-grid-five,
  .official-rule-list,
  .official-rule-list-conditions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-vip-intro {
    grid-template-columns: minmax(190px, .7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 620px) {
  .news-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 26px;
  }

  .news-grid-home .news-card:last-child,
  .news-grid-related .news-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .news-card {
    border-radius: 18px;
  }

  .news-card-copy {
    min-height: 0;
    padding: 19px;
  }

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

  .news-card-copy > span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .news-card-copy em {
    margin-top: 8px;
  }

  .news-article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-article-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .news-article-block h2 {
    font-size: 27px;
  }

  .news-article-block p {
    font-size: 13px;
    line-height: 1.7;
  }

  .news-article-block li {
    padding-right: 12px;
  }

  .news-article-notice {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 17px;
    border-radius: 18px;
  }

  .news-article-notice > span {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .chat-feature-explorer {
    margin-top: 28px;
    border-radius: 18px;
  }

  .chat-feature-tablist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .chat-feature-tab {
    justify-content: flex-start;
    min-height: 44px;
    overflow: hidden;
    padding: 8px 10px;
    font-size: 10px;
    text-overflow: ellipsis;
  }

  .chat-feature-panel {
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 17px;
    padding: 28px 20px;
  }

  .chat-feature-panel > span {
    width: 78px;
    font-size: 26px;
  }

  .chat-feature-panel h3 {
    font-size: 28px;
  }

  .chat-feature-panel div > p:last-child {
    font-size: 12px;
    line-height: 1.6;
  }

  .chat-shortcut-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .chat-shortcut-dock article {
    min-height: 148px;
    padding: 18px 12px;
  }

  .chat-utility-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .chat-utility-grid article {
    min-height: 0;
  }

  .problem-card-grid,
  .policy-item-grid,
  .policy-toc nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-card-grid article {
    min-height: 0;
    padding: 20px;
  }

  .problem-card-grid span {
    margin-bottom: 18px;
  }

  .technical-support-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 23px;
  }

  .technical-support-callout .button {
    width: 100%;
  }

  .policy-layout {
    margin-top: 28px;
  }

  .policy-toc {
    padding: 15px;
    border-radius: 16px;
  }

  .policy-document {
    border-radius: 18px;
  }

  .policy-section {
    padding: 24px 18px;
  }

  .policy-section > header {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
  }

  .policy-section > header > span {
    width: 38px;
    height: 38px;
  }

  .policy-prose > p {
    font-size: 13px;
    line-height: 1.72;
  }

  .policy-ordered-list li {
    padding: 16px 15px 16px 54px;
  }

  .policy-ordered-list li::before {
    left: 13px;
  }

  .app-icon-picker {
    margin-top: 28px;
  }

  .app-icon-current {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 20px;
    border-radius: 20px;
  }

  .app-icon-current > span {
    width: 88px;
    border-radius: 23px;
  }

  .app-icon-current img {
    border-radius: 18px;
  }

  .app-icon-current strong {
    font-size: 18px;
  }

  .app-icon-current p {
    font-size: 11px;
    line-height: 1.5;
  }

  .app-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .app-icon-option {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    min-height: 112px;
    padding: 10px 6px;
    text-align: center;
  }

  .app-icon-option img {
    width: 54px;
    height: 54px;
  }

  .app-icon-option span {
    font-size: 10px;
  }

  .app-icon-option b {
    position: absolute;
    top: 7px;
    right: 7px;
  }

  .official-method-nav,
  .official-material-grid,
  .official-vip-intro,
  .official-info-grid,
  .official-info-grid-four,
  .official-info-grid-five,
  .official-rule-list,
  .official-rule-list-conditions,
  .official-tab-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .official-method-nav {
    margin-top: 24px;
  }

  .official-material-grid,
  .official-vip-intro {
    gap: 14px;
    margin-top: 24px;
  }

  .official-material-card {
    border-radius: 16px;
  }

  .official-material-card > button > span {
    opacity: 1;
    transform: none;
  }

  .official-info-grid article,
  .official-rule-list-conditions article {
    min-height: 0;
  }

  .official-current-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 21px;
  }

  .official-current-note > span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .official-current-note h2 {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
