:root {
  color-scheme: dark;
  font-family: "Play", "Rajdhani", "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070707;
  color: #f4f4f5;
}

@font-face {
  font-family: "Play";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/vendor/faceit-ref/fonts/6aez4K2oVqwIvtU2Hw.woff2") format("woff2");
}

@font-face {
  font-family: "Play";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/vendor/faceit-ref/fonts/6ae84K2oVqwItm4TCpAy2g.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000000;
  overflow-x: hidden;
}

.shell {
  min-height: 100vh;
  display: block;
  padding: 0;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(220deg, rgba(255, 85, 32, 0.52), rgba(0, 0, 0, 0.78), #000000) 0% 0% / 225% 225%;
  animation: background-fade 15s ease-in-out infinite;
}

.hero-art {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-color: #070707;
  background-image: url("/static/img/cs2-hero.webp?v=2");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  filter: saturate(1.18) contrast(1.16) brightness(1.1);
  transform: scale(1.03);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.46));
}

.shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    rgba(0, 0, 0, 0.38),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 31%, transparent 72%, rgba(0, 0, 0, 0.42)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 4px);
}

.landing-backdrop {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  color: #ffffff;
}

.site-header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(18, 18, 18, 0.72);
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo {
  gap: 10px;
}

.site-logo img {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 7px;
  object-fit: cover;
}

.site-logo strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.09em;
}

.site-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 1.1rem;
}

.site-stats span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-stats img {
  width: 24px;
  height: 24px;
}

.page-main {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 100px;
}

.hero-copy {
  width: min(100% - 32px, 1080px);
  margin: 132px auto 0;
  text-align: center;
}

.hero-copy p {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.hero-copy span {
  display: inline-block;
  max-width: 880px;
  color: #cccccc;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-shadow: rgba(255, 255, 255, 0.25) 0 1px 6px;
}

.feature-strip {
  width: 100%;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}

.feature-strip article {
  display: flex;
  align-items: start;
  gap: 10px;
  position: relative;
  padding-left: 0;
  min-height: 70px;
}

.feature-strip article::before {
  display: none;
}

.feature-strip img,
.feature-svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.feature-strip p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.feature-strip b {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 18px;
}

.feature-strip span {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.35;
}

.feature-strip x {
  color: #ff5500;
}

.start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 40px;
  padding: 0 100px;
  border-radius: 4px;
  background: #ff5500;
  border: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.start-button:hover {
  background: #ff6c20;
}

.start-button:focus,
.start-button:focus-visible,
.start-button:active {
  outline: none;
  box-shadow: none;
}

.content-section {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  background: rgb(18, 18, 18);
  margin-top: 50px;
}

.fade-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
}

.top-edge {
  top: -120px;
  background: linear-gradient(0deg, rgb(0, 0, 0) 1%, transparent 30.32%);
}

.rule-block {
  width: min(100% - 312px, 1685px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin: 54px 0 48px;
}

.rule-block div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1120px;
}

.rule-block p {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}

.rule-block span {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.42;
}

.rule-block a,
.rules-more {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff5500;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.rule-block > img {
  width: 486px;
  max-width: 32vw;
  border-radius: 4px;
}

.games-section,
.sponsors-section {
  width: min(100% - 32px, 1600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.games-section {
  margin-top: -10px;
}

.section-title {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.section-subtitle {
  color: #cccccc;
  font-size: 18px;
}

.maps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.game-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-decoration: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.game-card:hover {
  filter: grayscale(1);
  transform: translateY(-2px);
}

.game-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.game-card p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}

.game-card b {
  font-size: 24px;
  font-weight: 700;
}

.sponsors-section {
  margin-bottom: 30px;
}

.sponsors-section > div {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.sponsors-section img {
  max-width: 180px;
}

.sponsors-section a:hover {
  opacity: 0.6;
}

.loader-shell {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  animation: loader-hide 1.35s ease forwards;
  pointer-events: none;
}

.loader {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.inner.one {
  left: 0;
  top: 0;
  animation: rotate-one 1s linear infinite;
  border-bottom: 5px solid #ff5500;
}

.inner.two {
  right: 0;
  top: 0;
  animation: rotate-two 1s linear infinite;
  border-right: 5px solid #ff5500;
}

.inner.three {
  right: 0;
  bottom: 0;
  animation: rotate-three 1s linear infinite;
  border-top: 5px solid #ff5500;
}

.qr-flow-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.qr-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-width: 320px;
}

.qr-loader-label {
  color: #fff;
  font: 500 28px/1.25 Arial, sans-serif;
  text-align: center;
}

.qr-verification-error {
  width: min(520px, calc(100vw - 32px));
  padding: 34px 38px;
  border: 1px solid rgba(255, 85, 0, 0.55);
  border-radius: 8px;
  background: #181a21;
  color: #c7d5e0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.qr-verification-error h2 { margin: 12px 0 18px; color: #fff; font-size: 25px; }
.qr-verification-error p { margin: 10px 0; font-size: 16px; line-height: 1.5; }
.qr-error-mark {
  width: 48px; height: 48px; margin: 0 auto; display: grid; place-items: center;
  border: 2px solid #ff5500; border-radius: 50%; color: #ff6a21; font-size: 30px; font-weight: 700;
}
.qr-verification-error button {
  min-width: 150px; margin-top: 22px; padding: 11px 24px; border: 0; border-radius: 3px;
  background: #ff5500; color: #fff; font-size: 15px; cursor: pointer;
}

.phone-verification-overlay {
  padding: 20px;
  overflow-y: auto;
}

.phone-verification-modal {
  position: relative;
  width: min(530px, calc(100vw - 32px));
  min-height: 0;
  padding: 34px 38px 36px;
  border: 1px solid #34353b;
  border-top: 3px solid #ff5500;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.045), transparent 110px),
    #1b1c21;
  color: #d8d9dc;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
  font-family: "Play", Arial, sans-serif;
  overflow: visible;
  animation: phone-modal-in 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-recovery-modal {
  width: min(500px, calc(100vw - 32px));
  padding: 36px 38px 38px;
  border: 1px solid #34353b;
  border-top: 3px solid #ff5500;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.055), transparent 120px),
    #1b1c21;
  color: #d8d9dc;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.82);
  font-family: "Play", Arial, sans-serif;
  animation: phone-modal-in 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-recovery-modal h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(26px, 5vw, 31px);
  line-height: 1.14;
}

.phone-recovery-modal p {
  margin: 0 0 26px;
  color: #aeb1b8;
  font-size: 15px;
  line-height: 1.55;
}

.phone-recovery-modal .phone-primary-button {
  width: 100%;
}

.phone-restriction-modal {
  width: min(540px, calc(100vw - 32px));
  padding: 36px 38px 38px;
  border: 1px solid #4b4531;
  border-top: 3px solid #e6b94f;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(230, 185, 79, 0.07), transparent 130px),
    #1b1c21;
  color: #d8d9dc;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.82);
  font-family: "Play", Arial, sans-serif;
  animation: phone-modal-in 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-restriction-modal h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(26px, 5vw, 32px);
  line-height: 1.15;
}

.phone-restriction-lead,
.phone-restriction-copy {
  color: #aeb1b8;
  font-size: 14px;
  line-height: 1.58;
}

.phone-restriction-lead {
  margin: 0 0 20px;
}

.phone-restriction-copy {
  margin: 18px 0 25px;
}

.phone-restriction-warning {
  padding: 16px 17px;
  border: 1px solid rgba(230, 185, 79, 0.48);
  border-radius: 4px;
  background: rgba(230, 185, 79, 0.1);
}

.phone-restriction-warning strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffd875;
  font-size: 15px;
}

.phone-restriction-warning strong span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #e6b94f;
  color: #19160d;
  font-weight: 900;
}

.phone-restriction-warning p {
  margin: 9px 0 0;
  color: #d8c898;
  font-size: 13px;
  line-height: 1.5;
}

.phone-restriction-modal .phone-primary-button {
  width: 100%;
  background: #c99a2f;
}

.phone-restriction-modal .phone-primary-button:hover {
  background: #dcad3e;
}

.phone-session-loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 85, 0, 0.12), transparent 28%),
    rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(8px);
}

.phone-session-loader .loader {
  margin-bottom: 6px;
}

.phone-session-loader strong {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.phone-session-loader span {
  max-width: 360px;
  color: #989ba3;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.phone-code-loader {
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 85, 0, 0.13), transparent 30%),
    rgba(14, 15, 19, 0.97);
}

@keyframes phone-modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.phone-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 2px;
  background: #292a30;
  color: #b9bbc1;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.phone-modal-close:hover {
  background: rgba(255, 85, 0, 0.16);
  color: #fff;
}

.phone-modal-brand {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  overflow: hidden;
  background: #303030;
  box-shadow: 0 12px 32px rgba(255, 85, 0, 0.18);
}

.phone-modal-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-step[hidden] {
  display: none;
}

.phone-step-label {
  display: block;
  margin-bottom: 9px;
  color: #ff6b25;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.phone-step h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(26px, 5vw, 32px);
  line-height: 1.12;
}

.phone-step p {
  margin: 0;
  color: #aeb1b8;
  font-size: 15px;
  line-height: 1.5;
}

.phone-question {
  max-width: 420px;
  margin-top: 22px !important;
  color: #d9dade !important;
}

.suggested-phone {
  margin: 14px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  background: #121318;
  color: #fff;
  font-size: clamp(25px, 7vw, 34px);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-align: center;
}

.phone-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.phone-primary-button,
.phone-secondary-button,
.phone-back-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.phone-not-mine-button {
  width: 100%;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: #8b8d91;
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}

.phone-not-mine-button:hover {
  color: #b9bbc0;
}

.phone-primary-button {
  border: 1px solid #ff5500;
  background: #ff5500;
  color: #fff;
}

.phone-primary-button:hover {
  border-color: #ff6b25;
  background: #ff6b25;
  transform: translateY(-1px);
}

.phone-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f1f2;
}

.phone-secondary-button:hover {
  border-color: rgba(255, 85, 0, 0.65);
  background: rgba(255, 85, 0, 0.09);
}

.phone-field-label {
  display: block;
  margin: 18px 0 7px;
  color: #d7d8dc;
  font-size: 12px;
  font-weight: 700;
}

.phone-country-picker {
  position: relative;
}

.phone-country-trigger {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #101116;
  color: #fff;
  cursor: pointer;
  outline: none;
}

.phone-country-trigger:hover,
.phone-country-trigger[aria-expanded="true"] {
  border-color: #ff641d;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.phone-country-trigger > span {
  min-width: 0;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  text-align: left;
}

.phone-country-trigger em,
.phone-country-list em {
  font-style: normal;
  font-size: 20px;
}

.phone-country-trigger b {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-trigger small {
  color: #8f939c;
  font-size: 13px;
}

.phone-country-trigger > i {
  width: 8px;
  height: 8px;
  border-right: 2px solid #8f939c;
  border-bottom: 2px solid #8f939c;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.phone-country-trigger[aria-expanded="true"] > i {
  transform: translateY(2px) rotate(225deg);
}

.phone-country-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 8px;
  border: 1px solid rgba(255, 101, 30, 0.42);
  border-radius: 10px;
  background: #111217;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.72);
}

.phone-country-menu[hidden] {
  display: none;
}

.phone-country-search {
  height: 43px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-country-search span {
  color: #ff6b25;
  font-size: 22px;
}

.phone-country-search input {
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: 0;
}

.phone-country-list {
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #555 #17181d;
}

.phone-country-list button {
  width: 100%;
  min-height: 47px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.phone-country-list button:hover {
  background: rgba(255, 85, 0, 0.12);
}

.phone-country-list span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.phone-country-list b {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-list small,
.phone-country-list button > i {
  color: #777b84;
  font-size: 10px;
  font-style: normal;
}

.phone-country-list button > i {
  color: #c3c5ca;
  font-size: 12px;
}

.phone-country-select,
.phone-number-control {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #101116;
  color: #f5f5f6;
  outline: none;
}

.phone-country-select {
  padding: 0 13px;
  color-scheme: dark;
  font-size: 14px;
}

.phone-country-select:focus,
.phone-number-control:focus-within {
  border-color: #ff5500;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.12);
}

.phone-number-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.phone-number-control span {
  padding: 0 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  color: #ff7a3b;
  font-weight: 700;
}

.phone-number-control input {
  min-width: 0;
  height: 100%;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.04em;
  outline: none;
}

.phone-number-control input::placeholder {
  color: #565961;
}

.phone-submit-button {
  width: 100%;
  margin-top: 6px;
}

.phone-back-button {
  width: 100%;
  min-height: 38px;
  margin-top: 7px;
  border: 0;
  background: transparent;
  color: #8f929a;
}

.phone-back-button:hover {
  color: #fff;
}

.phone-form-error {
  min-height: 22px;
  margin-top: 7px !important;
  color: #ff8c8c !important;
  font-size: 12px !important;
}

.phone-form-error.is-success {
  color: #66d89a !important;
}

.phone-code-step strong {
  color: #fff;
}

.phone-code-inputs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0 13px;
}

.phone-code-inputs input {
  width: 100%;
  min-width: 0;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: #0e0f13;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  outline: none;
}

.phone-code-inputs input:focus {
  border-color: #ff5500;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.13);
}

.phone-code-hint {
  color: #777a82 !important;
  font-size: 12px !important;
}

.authenticated-transition {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 85, 0, 0.1), transparent 32%),
    rgba(0, 0, 0, 0.78);
}

.authenticated-loader-stage {
  position: absolute;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 26px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.authenticated-loader-stage p {
  margin: 0;
  color: #e6e6e8;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.profile-visible .authenticated-loader-stage {
  z-index: 3;
  transform: translateY(195px) scale(0.55);
}

.profile-visible .authenticated-loader-stage p {
  opacity: 0;
}

.steam-profile-reveal {
  position: relative;
  z-index: 2;
  width: min(440px, calc(100vw - 32px));
  display: grid;
  justify-items: center;
  padding: 38px 38px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 101, 30, 0.75);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 85, 0, 0.14), transparent 42%),
    rgba(24, 25, 30, 0.97);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.48s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-visible .steam-profile-reveal {
  opacity: 1;
  transform: translateY(-12px) scale(1);
}

.steam-profile-avatar {
  position: relative;
  width: 94px;
  height: 94px;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff7a39, #ff4f00);
  box-shadow: 0 16px 40px rgba(255, 85, 0, 0.22);
}

.steam-profile-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border: 4px solid #18191e;
  border-radius: 50%;
  object-fit: cover;
}

.steam-profile-avatar i {
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 17px;
  height: 17px;
  border: 3px solid #18191e;
  border-radius: 50%;
  background: #35d07f;
}

.steam-profile-reveal > span {
  color: #ff6b25;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.steam-profile-reveal h2 {
  max-width: 100%;
  margin: 8px 0 10px;
  overflow: hidden;
  color: #fff;
  font-size: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.steam-profile-reveal p {
  margin: 0;
  color: #9fa2aa;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.profile-progress {
  position: absolute;
  right: 36px;
  bottom: 25px;
  left: 36px;
  height: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.profile-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff4f00, #ff854d);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.16s cubic-bezier(0.2, 0.8, 0.25, 1);
}

@media (max-width: 560px) {
  .phone-verification-modal {
    min-height: 0;
    padding: 30px 22px 28px;
  }

  .phone-modal-brand {
    margin-bottom: 20px;
  }

  .phone-choice-actions {
    grid-template-columns: 1fr;
  }

  .phone-code-inputs {
    gap: 7px;
  }
}

.connect-modal {
  width: 680px;
  max-width: calc(100vw - 32px);
  height: 432px;
  background: rgba(24, 24, 24, 0.97);
  border: 0;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.66), 0 0 0 1px rgba(255, 85, 0, 0.04);
  overflow: hidden;
  backdrop-filter: blur(16px);
  animation: modal-enter 0.72s cubic-bezier(0.2, 0.9, 0.18, 1) both;
  position: relative;
  z-index: 2;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.58);
}

.modal-overlay[hidden] {
  display: none;
}

.modal-header {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 0;
  background: #000000;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ff5a16;
}

.brand-mark img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.brand-name {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.brand-name:hover {
  color: #ff5500;
}

.modal-kicker {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.modal-kicker:hover {
  color: #ff5500;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 38px 24px;
}

.requirements {
  display: grid;
  align-content: start;
  gap: 18px;
}

.notice-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}

.notice-icon {
  color: #959aa2;
}

.notice-row p,
.rules-card p,
.rules-card span {
  min-width: 0;
  margin: 0;
  color: #959aa2;
  font-size: 0.94rem;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.notice-row b,
.rules-card b {
  display: block;
  margin-bottom: 3px;
  color: #f6f7f9;
  font-size: 1.04rem;
}

.rules-card {
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  background: rgba(13, 14, 17, 0.72);
}

.rules-link {
  margin-top: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #ff650f;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.connect-actions {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 17px;
  margin-top: 16px;
  min-width: 0;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 8px;
  color: #ff6a24;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #b8c0cc;
  text-align: center;
}

.muted {
  color: #b7bdc6;
  line-height: 1.45;
  margin: 0;
  font-size: 0;
  height: 0;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: max-content;
  min-height: 40px;
  padding: 4px 14px;
  border-radius: 2px;
  background: #ff5500;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  border: 0;
  box-shadow: 0 18px 38px rgba(255, 85, 0, 0.24);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding-right: 8px;
  box-sizing: content-box;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.button span {
  padding: 0 15px;
}

.button:hover {
  background: #fd6e35;
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(255, 85, 0, 0.3);
}

.button.secondary {
  background: #2d3037;
  color: #ffffff;
  box-shadow: none;
}

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.64);
}

.success-overlay[hidden] {
  display: none;
}

.success-modal {
  width: 610px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #17181c;
  border: 1px solid rgba(255, 85, 0, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72);
  animation: modal-enter 0.42s cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.success-body {
  padding: 28px;
}

.success-info {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #ffffff;
  text-align: center;
}

.success-hub-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: #f5f6f8;
  font-size: 0.95rem;
  font-weight: 700;
}

.success-hub-id b {
  color: #ff5500;
}

.success-info h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.2;
}

.success-checks {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #101115;
}

.success-checks p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  color: #d6d9df;
  font-size: 0.94rem;
  line-height: 1.35;
}

.success-checks span {
  flex: 0 0 auto;
  color: #ffb088;
  font-weight: 700;
}

.success-note {
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  background: rgba(255, 85, 0, 0.1);
  color: #d7dce5;
}

.success-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.success-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.success-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px 16px;
  border: 0;
  border-radius: 2px;
  background: #ff5500;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(255, 85, 0, 0.24);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.success-button svg {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  padding-right: 9px;
  box-sizing: content-box;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.success-button span {
  padding: 0 14px;
}

.success-button:hover,
.success-button:focus-visible {
  background: #fd6e35;
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(255, 85, 0, 0.3);
  outline: none;
}

.success-button:active {
  transform: translateY(0);
}

.details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.details div {
  padding: 12px;
  border: 1px solid #303238;
  border-radius: 6px;
  background: #101115;
}

dt {
  color: #959aa2;
  font-size: 0.78rem;
  margin-bottom: 4px;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
  color: #f8fafc;
}

.support-copy {
  margin: 0;
  color: #959aa2;
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: center;
}

.support-copy a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.support-copy a:hover {
  color: #ff5500;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 8;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 28px));
  padding: 13px;
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  animation: cookie-enter 0.35s ease both;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 3px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.25;
}

.cookie-banner span {
  color: #aeb4bd;
  font-size: 0.78rem;
  line-height: 1.3;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-link,
.cookie-accept {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 2px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-link {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-accept {
  color: #ffffff;
  background: #ff5500;
  border: 1px solid #ff5500;
}

@keyframes background-fade {
  0% {
    background-position: 0% 81%;
  }

  50% {
    background-position: 50% 20%;
  }

  100% {
    background-position: 0% 81%;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(-8px, -4px, 0);
  }

  to {
    transform: scale(1.07) translate3d(10px, 6px, 0);
  }
}

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loader-hide {
  0%,
  58% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes cookie-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

@media (max-width: 720px) {
  .modal-header {
    padding: 0 20px;
  }

  .modal-body {
    grid-template-columns: 1fr;
    padding: 22px;
    overflow: hidden;
  }

  .connect-actions {
    border-top: 1px solid #292b31;
    padding-top: 22px;
  }

  .connect-modal {
    height: auto;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .notice-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .notice-row p,
  .support-copy,
  h1 {
    font-size: 0.95rem;
  }

  .button {
    max-width: 100%;
  }

  .success-body {
    padding: 22px 18px;
  }

  .success-info h2 {
    font-size: 1.12rem;
  }

  .success-checks p {
    display: grid;
    justify-items: center;
    gap: 4px;
  }

  .success-button {
    width: 100%;
  }

  .feature-strip {
    width: min(100% - 32px, 480px);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-stats {
    display: none;
  }

  .hero-copy {
    margin-top: 96px;
  }

  .cookie-banner {
    left: auto;
    right: 12px;
    bottom: 12px;
    width: min(340px, calc(100vw - 24px));
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}
