:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --ink: #152033;
  --muted: #667085;
  --line: #e4e9f1;
  --primary: #5b45f3;
  --primary-dark: #4430d1;
  --primary-soft: #efedff;
  --success: #0d9f6e;
  --success-soft: #e8f8f1;
  --danger: #db3b54;
  --danger-soft: #fff0f2;
  --shadow: 0 18px 50px rgba(25, 37, 65, 0.09);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(91, 69, 243, 0.09), transparent 28%),
    var(--bg);
}

button,
input {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hidden {
  display: none !important;
}

.muted {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand.inverted {
  color: white;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(140deg, #6f58ff, #4030cf);
  box-shadow: 0 10px 26px rgba(91, 69, 243, 0.3);
  font-size: 24px;
  font-weight: 900;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 16px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button.large {
  min-height: 52px;
  width: 100%;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #715af8);
  box-shadow: 0 10px 22px rgba(91, 69, 243, 0.22);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: white;
}

.button.danger-ghost {
  color: var(--danger);
  border: 1px solid #f4cbd2;
  background: var(--danger-soft);
}

.text-link,
.text-button {
  color: var(--primary);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.landing-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 15% 10%, rgba(115, 89, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #12162a 0%, #24203e 54%, #f3f6fb 54%);
}

.landing-shell {
  display: grid;
  width: min(1040px, 100%);
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}

.brand-panel,
.entry-card {
  border-radius: 28px;
  padding: 54px;
  box-shadow: var(--shadow);
}

.brand-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  color: white;
  background: #11151a;
}

.landing-art,
.brand-panel-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-art {
  object-fit: cover;
  object-position: 56% center;
}

.brand-panel-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 12, 16, 0.94) 0%, rgba(8, 12, 16, 0.72) 54%, rgba(8, 12, 16, 0.26) 100%),
    linear-gradient(0deg, rgba(25, 20, 55, 0.7), transparent 72%);
}

.brand-panel .eyebrow {
  margin-top: 70px;
  color: #cfc8ff;
}

.brand-panel h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.landing-copy {
  max-width: 580px;
  color: #dedafd;
  font-size: 17px;
  line-height: 1.8;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.feature-row span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.entry-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.entry-card h2 {
  margin: 42px 0 14px;
  font-size: 32px;
}

.entry-card p {
  color: var(--muted);
  line-height: 1.7;
}

.entry-card .text-link {
  margin-top: 20px;
  text-align: center;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px var(--success-soft);
}

.site-header {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(228, 233, 241, 0.8);
  padding: 0 max(24px, calc((100% - 820px) / 2));
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
}

.secure-label {
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.verify-shell {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.game-banner {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  color: white;
  background: #11151a;
  box-shadow: 0 24px 58px rgba(19, 28, 43, 0.2);
}

.game-banner::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 12, 0.93) 0%, rgba(6, 9, 12, 0.62) 42%, rgba(6, 9, 12, 0.08) 76%),
    linear-gradient(0deg, rgba(6, 9, 12, 0.54), transparent 54%);
  content: "";
}

.game-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.game-banner-copy {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 6vw, 48px);
  bottom: clamp(24px, 6vw, 44px);
  display: grid;
  gap: 7px;
}

.game-banner-copy .eyebrow {
  margin: 0;
  color: #bcb2ff;
}

.game-banner-copy strong {
  font-size: clamp(27px, 6vw, 43px);
  letter-spacing: -0.04em;
}

.game-banner-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 6vw, 48px);
  letter-spacing: -0.04em;
}

.hero-copy p:last-child {
  color: var(--muted);
}

.steps {
  display: grid;
  margin: 42px 0 26px;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 700;
}

.steps li::after {
  position: absolute;
  z-index: -1;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  content: "";
}

.steps li:last-child::after {
  display: none;
}

.steps b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}

.steps li.active,
.steps li.done {
  color: var(--primary);
}

.steps li.active b,
.steps li.done b {
  color: white;
  border-color: var(--primary);
  background: var(--primary);
}

.steps li.done::after {
  background: var(--primary);
}

.panel {
  border: 1px solid rgba(228, 233, 241, 0.9);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.verify-panel {
  padding: 30px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: #5d4bd3;
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill.success {
  color: var(--success);
  background: var(--success-soft);
}

.stack-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  color: #475467;
  font-size: 13px;
  font-weight: 750;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7deea;
  border-radius: 12px;
  outline: none;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 69, 243, 0.1);
}

.form-tip {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope-card {
  display: grid;
  margin-bottom: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.scope-card > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  background: var(--surface-soft);
}

.scope-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.number-box {
  position: relative;
  border: 1px solid #ded9ff;
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #faf9ff, #f0edff);
}

.number-box > span,
.code-box > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.number-box strong {
  font-size: clamp(26px, 7vw, 38px);
  letter-spacing: 0.04em;
}

.icon-button {
  position: absolute;
  top: 50%;
  right: 18px;
  border: 1px solid #d7cffc;
  border-radius: 10px;
  padding: 8px 11px;
  color: var(--primary);
  background: white;
  transform: translateY(-50%);
  cursor: pointer;
  font-weight: 700;
}

.waiting-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.waiting-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pulse {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 4px solid #dcd7ff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(91, 69, 243, 0.35);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(91, 69, 243, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 69, 243, 0); }
}

.countdown {
  border-radius: 9px;
  padding: 7px 10px;
  color: var(--danger);
  background: var(--danger-soft);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.code-box {
  margin-top: 20px;
  border: 2px solid #bfe9d9;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  background: var(--success-soft);
}

.code-box strong {
  display: block;
  margin-bottom: 16px;
  color: var(--success);
  font-size: clamp(38px, 10vw, 58px);
  letter-spacing: 0.14em;
}

.action-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.action-row .button {
  flex: 1;
}

.notice {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  max-width: 420px;
  border-radius: 13px;
  padding: 14px 18px;
  color: white;
  background: #263248;
  box-shadow: 0 15px 40px rgba(21, 32, 51, 0.22);
  font-size: 14px;
}

.notice.error {
  background: var(--danger);
}

.help-card {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
}

.help-card h3 {
  margin-bottom: 12px;
  font-size: 15px;
}

.help-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.admin-body {
  background: #eef2f8;
}

.login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(91, 69, 243, 0.25), transparent 34%),
    #15172a;
}

.login-card {
  width: min(440px, 100%);
  border-radius: 24px;
  padding: 38px;
  background: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.login-card .brand-mark {
  margin-bottom: 30px;
}

.login-card h1 {
  margin-bottom: 10px;
}

.login-card .stack-form {
  margin-top: 28px;
}

.error-text {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 13px;
}

.admin-layout {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 240px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 26px 18px;
  color: #c9cee0;
  background: #191b2e;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 46px;
}

.nav-item {
  border: 0;
  border-radius: 11px;
  padding: 12px 14px;
  color: #aeb5c9;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.nav-item.active,
.nav-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 8px 0;
  font-size: 13px;
}

.sidebar-footer .text-button {
  color: #b6aefe;
}

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

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

.admin-header h1 {
  margin: 0;
  font-size: 30px;
}

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

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

.stat-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: white;
  box-shadow: 0 9px 28px rgba(26, 36, 58, 0.05);
}

.stat-card span,
.stat-card small {
  display: block;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin: 12px 0 7px;
  font-size: 34px;
}

.stat-card.accent {
  color: white;
  border-color: transparent;
  background: linear-gradient(145deg, #654ff4, #4634ca);
}

.stat-card.accent span,
.stat-card.accent small {
  color: #ddd8ff;
}

.admin-panel {
  margin-top: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(26, 36, 58, 0.05);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-form-grid > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-form-grid .wide-field {
  grid-column: span 3;
}

.locked-product {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.locked-product > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  background: var(--surface-soft);
}

.locked-product span,
.locked-product strong {
  display: block;
}

.locked-product span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.compact-form {
  grid-template-columns: minmax(100px, 0.7fr) minmax(100px, 0.7fr) minmax(220px, 2fr) auto;
}

.compact-form .wide-field {
  grid-column: auto;
}

.generated-list {
  display: grid;
  gap: 10px;
}

.generated-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--surface-soft);
}

.generated-item code {
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 800;
}

.table-panel {
  overflow: hidden;
  padding: 0;
}

.table-panel .panel-heading {
  padding: 24px 24px 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  border-top: 1px solid var(--line);
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 12px;
}

td code {
  font-weight: 750;
}

.status-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  color: #586278;
  background: #eef1f6;
  font-size: 11px;
  font-weight: 800;
}

.status-tag.NEW,
.status-tag.FINISHED,
.status-tag.CODE_RECEIVED {
  color: var(--success);
  background: var(--success-soft);
}

.status-tag.USED,
.status-tag.WAITING_CODE,
.status-tag.NUMBER_READY {
  color: var(--primary);
  background: var(--primary-soft);
}

.status-tag.CANCELED,
.status-tag.DISABLED,
.status-tag.FAILED {
  color: var(--danger);
  background: var(--danger-soft);
}

.table-action {
  margin-right: 8px;
  border: 0;
  padding: 0;
  color: var(--primary);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.admin-notice {
  position: fixed;
}

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

  .brand-panel {
    min-height: auto;
  }

  .brand-panel .eyebrow {
    margin-top: 45px;
  }

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

  .locked-product {
    grid-template-columns: 1fr;
  }

  .admin-form-grid .wide-field {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .landing-body {
    padding: 16px;
    background: #17192d;
  }

  .brand-panel,
  .entry-card {
    padding: 30px;
  }

  .brand-panel h1 {
    font-size: 38px;
  }

  .site-header {
    padding: 0 16px;
  }

  .verify-shell {
    padding-top: 42px;
  }

  .game-banner {
    min-height: 240px;
    margin-bottom: 32px;
    border-radius: 20px;
  }

  .game-banner img {
    object-position: 64% center;
  }

  .steps span {
    display: none;
  }

  .verify-panel {
    padding: 22px;
  }

  .field-grid,
  .scope-card {
    grid-template-columns: 1fr;
  }

  .number-box {
    padding-bottom: 62px;
  }

  .icon-button {
    top: auto;
    right: 18px;
    bottom: 15px;
    left: 18px;
    transform: none;
  }

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

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

  .sidebar nav {
    flex-direction: row;
    margin-top: 18px;
    overflow-x: auto;
  }

  .nav-item {
    white-space: nowrap;
  }

  .sidebar-footer {
    margin-top: 16px;
  }

  .admin-main {
    padding: 18px;
  }

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

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

  .generated-item {
    grid-template-columns: 1fr;
  }
}

/* Tactical customer theme */
.verify-body,
.landing-body {
  --tactical-bg: #090b0a;
  --tactical-panel: rgba(17, 20, 17, 0.94);
  --tactical-panel-soft: #191d18;
  --tactical-ink: #e4dfd0;
  --tactical-muted: #918e82;
  --tactical-line: rgba(190, 177, 139, 0.23);
  --tactical-accent: #c2ad79;
  --tactical-accent-dark: #756746;
  color: var(--tactical-ink);
  font-family: "Arial Narrow", "Roboto Condensed", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.verify-body {
  background:
    linear-gradient(rgba(8, 10, 9, 0.9), rgba(8, 10, 9, 0.97)),
    url("/assets/tarkov-hero.webp") center top / cover fixed,
    var(--tactical-bg);
}

.verify-body::before,
.landing-body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    linear-gradient(115deg, transparent 0 48%, rgba(194, 173, 121, 0.035) 49% 50%, transparent 51%);
  content: "";
  opacity: 0.65;
}

.verify-body .site-header,
.verify-body .verify-shell,
.landing-body .landing-shell {
  position: relative;
  z-index: 1;
}

.verify-body .site-header {
  height: 76px;
  border-bottom: 1px solid var(--tactical-line);
  color: var(--tactical-ink);
  background: rgba(7, 9, 8, 0.88);
  backdrop-filter: blur(14px);
}

.verify-body .brand {
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.verify-body .brand b {
  color: var(--tactical-accent);
}

.verify-body .brand-mark,
.landing-body .brand-mark {
  border: 1px solid rgba(223, 207, 161, 0.34);
  border-radius: 2px;
  color: #151710;
  background: var(--tactical-accent);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: -0.12em;
  transform: skew(-7deg);
}

.verify-body .secure-label {
  color: #a9bd83;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verify-body .secure-label i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #9ebd72;
  box-shadow: 0 0 12px rgba(158, 189, 114, 0.86);
}

.verify-body .verify-shell {
  width: min(940px, calc(100% - 34px));
  padding-top: 42px;
}

.verify-body .game-banner {
  min-height: 390px;
  margin-bottom: 50px;
  border-color: rgba(205, 189, 146, 0.32);
  border-radius: 2px;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.24);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.verify-body .game-banner::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 20px;
  width: 74px;
  height: 8px;
  border-top: 2px solid var(--tactical-accent);
  border-bottom: 2px solid var(--tactical-accent);
  content: "";
  opacity: 0.7;
}

.verify-body .game-banner::after {
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.94) 0%, rgba(4, 6, 5, 0.62) 44%, rgba(4, 6, 5, 0.04) 78%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.68), transparent 55%);
}

.verify-body .game-banner-copy {
  left: clamp(26px, 6vw, 58px);
  bottom: clamp(28px, 6vw, 52px);
}

.verify-body .game-banner-copy .eyebrow,
.verify-body .eyebrow {
  color: var(--tactical-accent);
  letter-spacing: 0.18em;
}

.verify-body .game-banner-copy strong {
  max-width: 520px;
  color: #f0eadb;
  font-family: Impact, "Arial Black", "Microsoft YaHei", sans-serif;
  font-size: clamp(38px, 7vw, 66px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.34);
}

.verify-body .hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.verify-body .hero-copy h1 {
  color: #e8e1d1;
  font-family: Impact, "Arial Black", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.verify-body .hero-copy p:last-child,
.verify-body .form-tip,
.verify-body .help-card li,
.verify-body .waiting-card p,
.verify-body .scope-card span,
.verify-body .number-box > span,
.verify-body .code-box > span {
  color: var(--tactical-muted);
}

.verify-body .steps {
  margin: 46px 0 28px;
}

.verify-body .steps li {
  color: #696b63;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verify-body .steps li::after {
  height: 1px;
  background: var(--tactical-line);
}

.verify-body .steps b {
  border: 1px solid var(--tactical-line);
  border-radius: 2px;
  color: #6e6d65;
  background: #111410;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.verify-body .steps li.active,
.verify-body .steps li.done {
  color: var(--tactical-accent);
}

.verify-body .steps li.active b,
.verify-body .steps li.done b {
  border-color: var(--tactical-accent);
  color: #17180f;
  background: var(--tactical-accent);
}

.verify-body .steps li.done::after {
  background: var(--tactical-accent);
}

.verify-body .panel,
.verify-body .help-card {
  position: relative;
  border: 1px solid var(--tactical-line);
  border-radius: 2px;
  color: var(--tactical-ink);
  background: var(--tactical-panel);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.24);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.verify-body .panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 3px;
  background: var(--tactical-accent);
  content: "";
}

.verify-body .verify-panel {
  padding: clamp(24px, 5vw, 38px);
}

.verify-body .panel-heading h2 {
  color: #eee7d7;
  letter-spacing: 0.03em;
}

.verify-body .pill,
.verify-body .countdown {
  border: 1px solid rgba(194, 173, 121, 0.35);
  border-radius: 2px;
  color: var(--tactical-accent);
  background: rgba(194, 173, 121, 0.1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verify-body .pill.success {
  border-color: rgba(158, 189, 114, 0.35);
  color: #adc486;
  background: rgba(158, 189, 114, 0.1);
}

.verify-body label {
  color: #b4b0a3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verify-body input {
  min-height: 56px;
  border: 1px solid #3d4038;
  border-radius: 1px;
  color: #eee8d9;
  background: #0c0f0d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
}

.verify-body input::placeholder {
  color: #565950;
}

.verify-body input:focus {
  border-color: var(--tactical-accent);
  box-shadow: 0 0 0 3px rgba(194, 173, 121, 0.12);
}

.verify-body .button {
  min-height: 48px;
  border-radius: 1px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.verify-body .button.primary {
  color: #15170f;
  background: linear-gradient(105deg, #a99462, #d0bd8c);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.28);
}

.verify-body .button.primary:hover {
  background: linear-gradient(105deg, #c1ad79, #e1d1a5);
}

.verify-body .button.secondary,
.verify-body .icon-button {
  border-color: #45483e;
  border-radius: 1px;
  color: #cbc4b1;
  background: #171a16;
}

.verify-body .button.danger-ghost {
  border-color: rgba(180, 93, 83, 0.42);
  color: #c98277;
  background: rgba(126, 52, 46, 0.12);
}

.verify-body .scope-card > div,
.verify-body .number-box,
.verify-body .waiting-card {
  border-color: var(--tactical-line);
  border-radius: 2px;
  background: var(--tactical-panel-soft);
}

.verify-body .scope-card strong,
.verify-body .number-box strong {
  color: #ece4d2;
}

.verify-body .pulse {
  border-color: #4d533d;
  border-radius: 2px;
  background: #9ebd72;
  box-shadow: 0 0 0 0 rgba(158, 189, 114, 0.35);
}

.verify-body .code-box {
  border: 1px solid rgba(158, 189, 114, 0.4);
  border-radius: 2px;
  background: rgba(100, 126, 69, 0.14);
}

.verify-body .code-box strong {
  color: #b8d58a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.verify-body .help-card {
  background: rgba(16, 19, 16, 0.86);
}

.verify-body .notice {
  border: 1px solid var(--tactical-line);
  border-radius: 1px;
  color: #e8e1d1;
  background: #20241d;
}

.landing-body {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.56), rgba(5, 7, 6, 0.84)),
    url("/assets/tarkov-hero.webp") 60% center / cover fixed,
    var(--tactical-bg);
}

.landing-body .landing-shell {
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.65fr);
  gap: 0;
}

.landing-body .brand-panel,
.landing-body .entry-card {
  border: 1px solid var(--tactical-line);
  border-radius: 1px;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.22);
}

.landing-body .brand-panel {
  min-height: 650px;
  padding: clamp(38px, 6vw, 72px);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.landing-body .brand-panel-shade {
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.95), rgba(6, 8, 7, 0.68) 58%, rgba(6, 8, 7, 0.18)),
    linear-gradient(0deg, rgba(7, 9, 8, 0.75), transparent 70%);
}

.landing-body .brand-panel .eyebrow {
  margin-top: 88px;
  color: var(--tactical-accent);
  letter-spacing: 0.2em;
}

.landing-body .brand-panel h1 {
  max-width: 700px;
  color: #eee7d6;
  font-family: Impact, "Arial Black", "Microsoft YaHei", sans-serif;
  font-size: clamp(54px, 8vw, 94px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 0.98;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.32);
}

.landing-body .landing-copy {
  max-width: 650px;
  color: #aaa89e;
}

.landing-body .feature-row span {
  border-color: rgba(203, 188, 146, 0.32);
  border-radius: 1px;
  color: #c7b98f;
  background: rgba(11, 13, 11, 0.68);
  letter-spacing: 0.06em;
}

.landing-body .entry-card {
  position: relative;
  justify-content: center;
  border-left: 0;
  padding: 48px;
  color: var(--tactical-ink);
  background: rgba(13, 16, 13, 0.96);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.landing-body .entry-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--tactical-accent);
  content: "";
}

.terminal-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--tactical-line);
  padding-bottom: 14px;
  color: var(--tactical-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.terminal-label small {
  color: #666a60;
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 54px;
  color: #a8b98a;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-body .status-dot {
  margin: 0;
  background: #9ebd72;
  box-shadow: 0 0 0 5px rgba(158, 189, 114, 0.12), 0 0 16px rgba(158, 189, 114, 0.55);
}

.landing-body .entry-card h2 {
  margin-top: 22px;
  color: #ece5d5;
  font-size: 32px;
}

.landing-body .entry-card p {
  color: var(--tactical-muted);
}

.landing-body .button.primary {
  min-height: 56px;
  margin-top: 12px;
  border-radius: 1px;
  color: #15170f;
  background: linear-gradient(105deg, #a99462, #d0bd8c);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.landing-body .entry-footnote {
  margin: 34px 0 0;
  color: #555950 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 980px) {
  .landing-body .landing-shell {
    grid-template-columns: 1fr;
  }

  .landing-body .entry-card {
    border-top: 0;
    border-left: 1px solid var(--tactical-line);
  }
}

@media (max-width: 760px) {
  .verify-body .site-header {
    height: 66px;
  }

  .verify-body .brand {
    font-size: 12px;
  }

  .verify-body .secure-label {
    font-size: 0;
  }

  .verify-body .secure-label i {
    margin: 0;
  }

  .verify-body .verify-shell {
    padding-top: 24px;
  }

  .verify-body .game-banner {
    min-height: 290px;
    margin-bottom: 38px;
  }

  .verify-body .game-banner-copy strong {
    font-size: 39px;
  }

  .verify-body .hero-copy h1 {
    font-size: 34px;
  }

  .landing-body {
    padding: 14px;
  }

  .landing-body .brand-panel,
  .landing-body .entry-card {
    padding: 30px;
  }

  .landing-body .brand-panel {
    min-height: 560px;
  }

  .landing-body .brand-panel .eyebrow {
    margin-top: 82px;
  }

  .landing-body .brand-panel h1 {
    font-size: 52px;
  }
}
