:root {
  --bg: #040404;
  --text-main: #d8d0c3;
  --text-soft: #d1cbc1;
  --text-dim: #b8b0a3;
  --line: rgba(232, 225, 214, 0.22);
  --white-soft: rgba(255, 255, 255, 0.84);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
}

body {
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(8, 9, 10, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -18px 34px rgba(255, 255, 255, 0.035),
    0 18px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transform: translateX(-50%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0.05) 34%,
    rgba(255, 255, 255, 0.16) 66%,
    rgba(255, 255, 255, 0.04)
  );
  opacity: 0.45;
  pointer-events: none;
}

.mobile-contact-btn {
  display: none;
}

@media (max-width: 640px) {
  .mobile-contact-btn {
    display: inline-flex;
    position: relative;
    top: auto;
    left: auto;
    z-index: 100;
    min-width: 92px;
    min-height: 40px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.18)),
      rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 12px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
  }

  .mobile-contact-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 34%),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent 54%);
    opacity: 0.9;
    pointer-events: none;
  }
}

.store-name,
.nav-links,
.login-button {
  position: relative;
  z-index: 1;
}

.store-name {
  color: rgba(255, 255, 255, 0.94);
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.nav-links a,
.login-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
}

.login-button {
  position: relative;
  overflow: hidden;
  justify-self: end;
  min-width: 96px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -10px 22px rgba(255, 255, 255, 0.05),
    0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.login-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent 54%);
  opacity: 0.9;
  pointer-events: none;
}

.login-button:hover {
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -10px 24px rgba(255, 255, 255, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.3);
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.11), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(255, 139, 32, 0.08), transparent 20%),
    linear-gradient(180deg, #030403 0%, #000 100%);
  color: #f4f1e8;
}

.auth-shell {
  display: grid;
  width: min(100%, 448px);
  min-height: 100vh;
  margin: 0 auto;
  align-content: center;
  padding: 48px 18px;
}

.auth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(8, 9, 10, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -36px 70px rgba(255, 255, 255, 0.025),
    0 28px 80px rgba(0, 0, 0, 0.5);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
}

.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 36%);
  pointer-events: none;
}

.auth-panel > * {
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.34), transparent 24%),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.auth-brand {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.auth-brand span {
  color: #d8d0c3;
}

.auth-kicker {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  padding: 5px;
}

.auth-tab {
  min-height: 44px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.is-active {
  background: rgba(255, 255, 255, 0.88);
  color: #090909;
}

.auth-panel h1 {
  margin: 0 0 10px;
  color: #f8f5ed;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.auth-intro {
  width: min(310px, 100%);
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.45;
}

.social-login,
.auth-field,
.auth-submit {
  width: 100%;
  border-radius: 14px;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.social-login {
  display: grid;
  width: 46px;
  min-height: 46px;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.google-mark {
  color: #4285f4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 26px 0;
}

.auth-divider span {
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.auth-divider strong {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 600;
}

.login-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.auth-field {
  display: grid;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
}

.auth-field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.auth-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.28);
  color: #fff;
  font: inherit;
  padding: 0 16px;
}

.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.form-row a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.auth-submit {
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #080808;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.series-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: var(--text-soft);
  --hero-media-y: 0px;
  --hero-copy-y: 0px;
  --hero-detail-y: 0px;
}

.series-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: var(--bg);
  transform: translate3d(0, var(--hero-media-y), 0) scale(1.06);
  will-change: transform;
}

.series-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 38vh;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 7, 0) 0%,
    rgba(5, 6, 7, 0.42) 42%,
    rgba(5, 6, 7, 0.86) 74%,
    #050607 100%
  );
  pointer-events: none;
}

.frame {
  position: relative;
  z-index: 2;
  width: min(1024px, 100%);
  min-height: 694px;
  margin: 0 auto;
}

.hero {
  position: absolute;
  top: 94px;
  left: 29px;
  width: 440px;
  text-align: left;
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.hero h1 {
  margin: 0;
  color: var(--text-main);
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero p {
  width: 355px;
  margin: 15px 0 0;
  color: var(--white-soft);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.15;
}

.specs {
  position: absolute;
  top: 181px;
  right: 31px;
  width: 330px;
  transform: translate3d(0, var(--hero-detail-y), 0);
  will-change: transform;
}

.specs h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  min-height: 20px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 300;
}

.spec-row:first-of-type {
  border-top: 0;
}

.spec-row dt,
.spec-row dd {
  margin: 0;
}

.spec-row dd {
  text-align: right;
}

.product {
  position: absolute;
  bottom: 34px;
  left: 111px;
  width: 340px;
  text-align: left;
  transform: translate3d(0, var(--hero-detail-y), 0);
  will-change: transform;
}

.product h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product p {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.15;
}

.product a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  font-weight: 300;
  text-decoration: none;
}

.corner-mark {
  position: absolute;
  right: 35px;
  bottom: 36px;
  width: 23px;
  height: 23px;
  transform: rotate(45deg);
}

.corner-mark::before,
.corner-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.corner-mark::before {
  width: 100%;
  height: 44%;
}

.corner-mark::after {
  width: 44%;
  height: 100%;
}

@media (min-width: 901px) {
  .specs,
  .product {
    display: none;
  }
}

.offers-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #050607;
  color: #f5f5f5;
  padding: 28px 7vw 48px;
}

.services-section {
  position: relative;
  width: 100%;
  background: #050607;
  color: #f5f5f5;
  padding: 0 7vw 56px;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(to bottom, #050607 0%, rgba(5, 6, 7, 0) 100%);
  pointer-events: none;
}

.offers-wrap {
  position: relative;
  z-index: 1;
  width: min(1216px, 100%);
  margin: 0 auto;
}

.offers-title {
  margin: 0;
  scroll-margin-top: 104px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.offers-subtitle {
  margin: 13px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

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

.game-card {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.game-art {
  position: relative;
  display: block;
  min-height: 240px;
  overflow: hidden;
  border-radius: 13px;
  background: var(--art);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.game-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, transparent 45%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.16), transparent 28%);
  pointer-events: none;
}

.game-art::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.68) 100%);
  pointer-events: none;
}

.game-card.mlbb {
  --art: url("./images/mlbb.jpeg");
}

.game-card.magic-chess {
  --art: url("./images/magic_chess_gogo.jpeg");
}

.game-card.pubg {
  --art: url("./images/pubg.jpeg");
}

.game-card.genshin {
  --art: url("./images/genshin.jpeg");
}

.game-card.instagram-likes {
  --art:
    radial-gradient(circle at 22% 18%, rgba(255, 209, 102, 0.28), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(255, 105, 180, 0.32), transparent 24%),
    linear-gradient(135deg, #ffb347 0%, #ff4f81 45%, #8a3ab9 100%);
}

.game-card.instagram-followers {
  --art:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(255, 143, 177, 0.22), transparent 22%),
    linear-gradient(135deg, #405de6 0%, #5851db 24%, #833ab4 56%, #c13584 78%, #fd1d1d 100%);
}

.service-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 92px;
  height: 92px;
  pointer-events: none;
}

.instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Crect x='9' y='9' width='46' height='46' rx='13' stroke='white' stroke-width='4.5'/%3E%3Ccircle cx='32' cy='32' r='10.5' stroke='white' stroke-width='4.5'/%3E%3Ccircle cx='45.5' cy='18.5' r='2.8' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.product-hero-icon {
  width: 220px;
  height: 220px;
  opacity: 0.95;
}

.promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  border-radius: 999px;
  background: #00bf69;
  padding: 7px 12px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.flag-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: linear-gradient(#ff9933 0 33%, #fff 33% 66%, #138808 66%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.flag-badge::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1a4fa3;
}

.game-name {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  z-index: 3;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.85);
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.98),
    0 0 12px rgba(0, 0, 0, 0.82);
}


.topup-panel {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: #202124;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

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

.topup-panel > * {
  position: relative;
  z-index: 1;
}

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

.product-page {
  min-height: 100svh;
  background: #050607;
  color: #fff;
}

.product-page .site-header {
  border-color: #535353;
  background: #2d2d2f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.product-page .site-header::before,
.product-page .login-button::before {
  display: none;
}

.product-page .nav-links a {
  background: #444447;
}

.product-page .login-button {
  border-color: #8a8a8e;
  background: #5a5a5f;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.product-shell {
  width: 100%;
  padding: 0 0 76px;
}

.product-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(5, 6, 7, 0.86) 0%, rgba(5, 6, 7, 0.36) 42%, rgba(5, 6, 7, 0.82) 100%),
    linear-gradient(to bottom, rgba(5, 6, 7, 0.04) 0%, rgba(5, 6, 7, 0.2) 48%, rgba(5, 6, 7, 0.88) 82%, #050607 100%);
  pointer-events: none;
}

.product-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-cover {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--art);
  background-size: cover;
  background-position: center 28%;
}

.product-cover.mlbb {
  --art: url("./images/mlbb.jpeg");
}

.product-cover.magic-chess {
  --art: url("./images/magic_chess_gogo.jpeg");
}

.product-cover.genshin {
  --art: url("./images/genshin.jpeg");
}

.product-cover.insta-likes {
  --art:
    radial-gradient(circle at 22% 18%, rgba(255, 209, 102, 0.28), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(255, 105, 180, 0.32), transparent 24%),
    linear-gradient(135deg, #ffb347 0%, #ff4f81 45%, #8a3ab9 100%);
}

.product-cover.insta-followers {
  --art:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(255, 143, 177, 0.22), transparent 22%),
    linear-gradient(135deg, #405de6 0%, #5851db 24%, #833ab4 56%, #c13584 78%, #fd1d1d 100%);
}

.product-summary h1 {
  max-width: 680px;
  margin: 0;
  color: var(--text-main);
  font-family: "Oxanium", Arial, sans-serif;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-summary {
  position: relative;
  z-index: 1;
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 210px;
  padding-bottom: 124px;
}

.product-summary p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--white-soft);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.16;
}

.product-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.product-topup {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}

.topup-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.topup-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.64);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topup-heading h2,
.topup-heading h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.pack-section + .pack-section {
  margin-top: 28px;
}

.pack-section-header {
  margin-bottom: 16px;
}

.pack-section-header h3 {
  margin: 0;
  color: #fff;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pack-section-header p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.topup-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #45464a;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

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

.diamond-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  min-height: 82px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #3a332a;
  color: #fff;
  padding: 13px 12px;
  text-align: left;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.diamond-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 139, 32, 0.4), transparent);
  pointer-events: none;
}

.diamond-card:hover,
.diamond-card:focus-visible {
  border-color: rgba(255, 139, 32, 0.4);
  background: #47392c;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  outline: none;
  transform: translateY(-2px);
}

.diamond-card.is-selected {
  border-color: #ff8b20;
  background: #5a4330;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.diamond-icon {
  width: 32px;
  height: 32px;
  fill: rgba(73, 204, 255, 0.24);
  stroke: #73deff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 8px rgba(75, 205, 255, 0.45))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.diamond-info {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.diamond-name {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.diamond-price {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

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

.purchase-dialog {
  position: relative;
  width: min(100%, 500px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #ff8b20;
  border-radius: 40px 40px 0 0;
  background: #09090b;
  padding: 42px 24px 32px;
  box-shadow: 
    0 -20px 60px rgba(0, 0, 0, 0.8),
    0 -10px 25px rgba(255, 139, 32, 0.05);
  color: #fff;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-close {
  position: absolute;
  top: -18px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 4px solid #09090b;
  border-radius: 999px;
  background: #ff8b20;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-close:hover {
  background: #e67a1a;
  transform: scale(1.1);
}

.purchase-summary {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-bottom: 30px;
}

.purchase-icon {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 139, 32, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.purchase-icon::before {
  content: "";
  width: 56px;
  height: 56px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%23ff8b20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.2 3.8h11.6L25 10.1 14 24.2 3 10.1 8.2 3.8Z'/%3E%3Cpath d='M3 10.1h22'/%3E%3Cpath d='m8.2 3.8 3 6.3L14 24.2l2.8-14.1 3-6.3'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 139, 32, 0.3));
}

.purchase-summary h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.purchase-summary p {
  margin: 5px 0 7px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.purchase-summary strong {
  color: #ff8b20;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.purchase-check-id {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 139, 32, 0.4);
  border-radius: 18px;
  background: rgba(255, 139, 32, 0.05);
  color: #ff8b20;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.purchase-check-id:hover {
  background: rgba(255, 139, 32, 0.1);
  border-color: #ff8b20;
}

.purchase-check-id:disabled,
.purchase-login:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

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

.purchase-fields input,
.purchase-fields select {
  min-height: 58px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 0 20px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: all 0.2s ease;
}

.purchase-fields select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 24px,
    calc(100% - 18px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.purchase-fields input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.purchase-fields input:focus,
.purchase-fields select:focus {
  border-color: #ff8b20;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 5px rgba(255, 139, 32, 0.08);
}

.purchase-fields select option {
  background: #1f1b16;
  color: #ffffff;
}

.purchase-coupon-wrap {
  margin-top: 14px;
}

.purchase-coupon-wrap input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  padding: 0 18px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

.purchase-coupon-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.purchase-coupon-wrap input:focus {
  border-color: rgba(255, 139, 32, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.purchase-status {
  min-height: 22px;
  margin: 12px 2px 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.purchase-status[data-state="success"] {
  color: #5ef2b3;
}

.purchase-status[data-state="warning"] {
  color: #ffd166;
}

.purchase-status[data-state="error"] {
  color: #ff8f8f;
}

.purchase-status-page {
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 139, 32, 0.22);
  border-radius: 20px;
  background: rgba(15, 10, 7, 0.72);
  backdrop-filter: blur(18px);
}

.purchase-login {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 0;
  margin-top: 30px;
  border-radius: 26px;
  background: #ff8b20;
  color: #ffffff;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 
    0 12px 30px rgba(255, 139, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-login:hover {
  background: #f07a10;
  transform: translateY(-3px);
  box-shadow: 
    0 18px 40px rgba(255, 139, 32, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .purchase-dialog {
    max-width: 100%;
    border-radius: 32px 32px 0 0;
    padding: 36px 18px 24px;
  }
}

.site-footer {
  width: 100%;
  background: #000;
  color: rgba(255, 255, 255, 0.88);
  padding: 36px 7vw 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 12vw, 180px);
  width: min(1216px, 100%);
  margin: 0 auto;
}

.footer-logo {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-brand address {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.footer-contact div,
.footer-links div {
  display: grid;
  gap: 12px;
}

.footer-contact span,
.footer-links h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 400;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-decoration: none;
}

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

.footer-payments {
  min-width: max-content;
  width: 100%;
  overflow: hidden;
}

.footer-links .payment-icons {
  position: relative;
  display: block;
  width: 100%;
  min-width: 100%;
  height: 34px;
  overflow: hidden;
}

.footer-links .payment-icons img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 58px;
  height: 34px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px 7px;
  object-fit: contain;
  animation: payment-marquee 5s linear infinite;
}

.footer-links .payment-icons img:nth-child(2) {
  animation-delay: -1.25s;
}

.footer-links .payment-icons img:nth-child(3) {
  animation-delay: -2.5s;
}

.footer-links .payment-icons img:nth-child(4) {
  animation-delay: -3.75s;
}

.footer-legal {
  gap: 18px;
}

.footer-legal-item {
  display: grid;
  gap: 6px;
}

.footer-copy {
  display: grid;
  gap: 6px;
  width: min(1216px, 100%);
  margin: 150px auto 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-align: center;
}

@keyframes payment-marquee {
  from {
    left: calc(100% + 24px);
  }

  to {
    left: -82px;
  }
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

@media (max-width: 640px) {
  .site-header,
  .site-header::before {
    display: none;
  }

  .home-page .site-header {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
  }

  .home-page .site-header::before,
  .home-page .store-name,
  .home-page .nav-links {
    display: none;
  }

  .home-page .login-button {
    min-width: 92px;
    min-height: 40px;
    padding: 0 16px;
  }

  .frame {
    min-height: 100svh;
    padding: 0 24px 56px;
  }

  .hero {
    top: 170px;
    width: min(520px, calc(100% - 48px));
  }

  .hero h1 {
    font-size: clamp(42px, 9vw, 62px);
  }

  .hero p {
    width: min(400px, 100%);
    margin-top: 22px;
    font-size: 20px;
  }

  .specs {
    position: static;
    width: min(420px, 100%);
    margin: 430px auto 0;
  }

  .product {
    position: static;
    transform: none;
    width: min(300px, 100%);
    margin: 108px auto 0;
  }

  .corner-mark {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 560px) {
  .series-section {
    background: #050607;
    min-height: auto;
    overflow: hidden;
  }

  .series-video {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 430px;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, var(--hero-media-y), 0) scale(1.08);
  }

  .series-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 430px;
    background:
      linear-gradient(to right, rgba(5, 6, 7, 0.58) 0%, rgba(5, 6, 7, 0) 13%, rgba(5, 6, 7, 0) 87%, rgba(5, 6, 7, 0.58) 100%),
      linear-gradient(to bottom, rgba(5, 6, 7, 0) 0%, rgba(5, 6, 7, 0.02) 48%, rgba(5, 6, 7, 0.28) 68%, rgba(5, 6, 7, 0.72) 86%, #050607 100%);
    pointer-events: none;
  }

  .series-section::after {
    display: block;
    right: 0;
    left: 0;
    top: 285px;
    bottom: auto;
    height: 170px;
    background: linear-gradient(to bottom, rgba(5, 6, 7, 0) 0%, rgba(5, 6, 7, 0.36) 48%, #050607 100%);
  }

  .frame {
    min-height: auto;
    background: linear-gradient(to bottom, transparent 0 405px, #050607 444px, #050607 100%);
    padding: 0 15px 48px;
  }

  .hero {
    position: static;
    width: 100%;
    padding-top: 446px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: clamp(30px, 10vw, 40px);
    line-height: 0.98;
  }

  .hero p {
    display: none;
  }

  .specs,
  .product {
    display: none;
  }

  .corner-mark {
    right: 18px;
    bottom: 18px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 900px) {
  .offers-section {
    padding-inline: 22px;
  }

  .services-section {
    padding: 0 22px 48px;
  }

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

  .footer-links {
    gap: 28px;
  }

  .game-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .game-grid::-webkit-scrollbar {
    display: none;
  }

  .game-card {
    flex: 0 0 193px;
    scroll-snap-align: start;
  }

  .game-art {
    min-height: 240px;
  }

  .topup-panel {
    padding: 20px;
  }

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

  .product-shell {
    width: 100%;
    padding-top: 0;
  }

  .product-hero {
    min-height: 560px;
  }

  .product-cover {
    background-position: center top;
  }

  .product-summary {
    width: min(100% - 36px, 760px);
    padding-top: 250px;
    padding-bottom: 108px;
  }

  .product-summary h1 {
    font-size: clamp(38px, 8vw, 56px);
  }

  .product-topup {
    width: min(100% - 36px, 760px);
  }
}

@media (max-width: 560px) {
  .offers-section {
    min-height: auto;
    padding: 12px 18px 44px;
  }

  .services-section {
    padding: 0 18px 44px;
  }

  .site-footer {
    padding: 24px 18px 44px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-logo {
    margin-bottom: 0;
    font-size: 17px;
  }

  .footer-brand address,
  .footer-contact {
    display: none;
  }

  .footer-contact span,
  .footer-links h3 {
    font-size: 12px;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .footer-payments {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .footer-links .payment-icons {
    min-width: 100%;
    height: 32px;
  }

  .footer-links .payment-icons img {
    left: 100%;
    width: 54px;
    height: 32px;
    padding: 6px;
  }

  .footer-links div {
    gap: 8px;
  }

  .footer-legal {
    gap: 14px;
  }

  .footer-legal-item {
    gap: 5px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-copy {
    margin-top: 42px;
    font-size: 11px;
    text-align: center;
  }

  .offers-title {
    font-size: 24px;
  }

  .offers-subtitle {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .game-card {
    min-height: 146px;
    scroll-snap-align: none;
  }

  .game-art {
    min-height: 146px;
    border-radius: 11px;
  }

  .promo-badge {
    top: 8px;
    left: 8px;
    padding: 6px 10px;
    font-size: 8px;
  }

  .game-name {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 12px;
    line-height: 1.08;
  }

  .topup-panel {
    margin-top: 18px;
    padding: 16px;
    border-radius: 15px;
  }

  .topup-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .topup-heading h3 {
    font-size: 20px;
  }

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

  .diamond-card {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 74px;
    gap: 8px;
    padding: 11px 9px;
  }

  .diamond-icon {
    width: 27px;
    height: 27px;
  }

  .diamond-name {
    font-size: 11px;
  }

  .diamond-price {
    font-size: 14px;
  }

  .purchase-dialog {
    width: min(100%, 330px);
    border-radius: 24px;
    padding: 28px 24px 26px;
  }

  .purchase-summary {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .purchase-icon {
    width: 48px;
    height: 48px;
  }

  .product-shell {
    width: 100%;
    padding: 0 0 56px;
  }

  .product-hero {
    min-height: 585px;
  }

  .product-cover {
    background-position: center top;
  }

  .product-summary {
    width: calc(100% - 36px);
    padding-top: 315px;
    padding-bottom: 72px;
  }

  .product-summary h1 {
    font-size: 34px;
  }

  .product-summary p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.3;
  }

  .product-kicker {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .product-tags {
    margin-top: 16px;
  }

  .product-topup {
    width: calc(100% - 36px);
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .frame {
    padding-inline: 14px;
    padding-bottom: 44px;
  }

  .hero {
    padding-top: 438px;
  }
}


/* --- Login Page Redesign (v2) --- */

.auth-page-v2 {
  background-color: #000;
  color: #ffffff;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.auth-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: 0;
  overflow: hidden;
}

.auth-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.auth-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.auth-header {
  padding: 40px 24px 30px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  margin-bottom: 24px;
}

.auth-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}

.auth-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.auth-card {
  background: #000000;
  color: #ffffff;
  border-radius: 40px 40px 0 0;
  flex: 1;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.auth-tabs-v2 {
  display: flex;
  background: #1a1a1a;
  padding: 4px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #333;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.auth-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-left: 4px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #ff8b20;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.input-wrapper input:focus {
  border-color: #ff8b20;
}

.toggle-password {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 5px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #888;
}

.forgot-link {
  color: #666;
  text-decoration: none;
}

.submit-btn-v2 {
  background: #ff8b20;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 139, 32, 0.3);
}

.social-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

.social-divider::before,
.social-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #222;
}

.social-divider span {
  padding: 0 15px;
  color: #666;
  font-size: 12px;
}

.social-buttons {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #222;
  border-radius: 30px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.social-btn:hover {
  background: #1a1a1a;
}

@media (min-width: 901px) {
  .auth-video-bg {
    height: 100%;
  }

  .auth-video-bg::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.74) 100%);
  }

  .auth-container {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 520px);
    align-items: center;
    gap: 56px;
    max-width: 1180px;
    min-height: 100vh;
    padding: 120px 32px 56px;
  }

  .auth-header {
    max-width: 460px;
    padding: 0;
  }

  .back-button {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .auth-header h1 {
    font-size: clamp(44px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .auth-header p {
    max-width: 360px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    line-height: 1.45;
  }

  .auth-card {
    flex: 0 0 auto;
    min-height: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
      rgba(5, 5, 5, 0.66);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 30px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(26px) saturate(150%);
    -webkit-backdrop-filter: blur(26px) saturate(150%);
  }

  .auth-tabs-v2 {
    margin-bottom: 26px;
    background: rgba(255, 255, 255, 0.06);
  }

  .tab-btn.active {
    background: rgba(255, 255, 255, 0.14);
  }

  .input-group label,
  .social-divider span,
  .forgot-link {
    color: rgba(255, 255, 255, 0.62);
  }

  .input-wrapper input,
  .social-btn {
    min-height: 54px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
  }

  .input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .toggle-password {
    color: rgba(255, 255, 255, 0.52);
  }

  .social-divider::before,
  .social-divider::after {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 480px) {
  .auth-card {
    border-radius: 40px 40px 0 0;
  }
}

/* Forgot Password View Styles */
.forgot-password-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.forgot-header h2 {
  font-size: 24px;
  margin: 0 0 8px;
  color: #fff;
}

.forgot-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.forgot-footer {
  text-align: center;
  margin-top: 10px;
}

.forgot-footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.forgot-footer a:hover {
  color: #fff;
}

.auth-status {
  min-height: 22px;
  margin: 2px 4px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.45;
}

.auth-status[data-state="success"] {
  color: #71f0b5;
}

.auth-status[data-state="error"] {
  color: #ff8f8f;
}

.admin-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 139, 32, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    #050505;
  color: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 0;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-link,
.admin-logout,
.admin-primary-btn,
.admin-secondary-btn,
.admin-table-actions button {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.admin-link,
.admin-secondary-btn,
.admin-table-actions button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-logout,
.admin-primary-btn {
  background: #ff8b20;
  color: #fff;
}

.admin-shell {
  padding: 24px 32px 48px;
}

.admin-status-bar {
  margin-bottom: 20px;
}

.admin-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-status[data-state="success"] {
  color: #71f0b5;
}

.admin-status[data-state="error"] {
  color: #ff8f8f;
}

.admin-status[data-state="warning"] {
  color: #ffd166;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-stat-card,
.admin-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.admin-stat-card {
  padding: 18px;
}

.admin-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-bottom: 8px;
}

.admin-stat-card strong {
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 24px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.admin-card {
  padding: 20px;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-card-header h2 {
  margin: 0;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 24px;
}

.admin-form-stack {
  display: grid;
  gap: 12px;
}

.admin-label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.admin-label input,
.admin-label select,
.admin-table input,
.admin-table select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.admin-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 13px;
}

.admin-scroll-table {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.admin-table th {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 400;
}

.admin-table-actions {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .admin-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .admin-topbar,
  .admin-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
