:root {
  --ink: #121217;
  --muted: #626576;
  --line: #e4e6ec;
  --paper: #f8f7f3;
  --panel: #ffffff;
  --panel-strong: #f0efe7;
  --lime: #b8ff4d;
  --mint: #20d6a7;
  --coral: #ff6b57;
  --violet: #7667ff;
  --cyan: #38bdf8;
  --shadow: 0 22px 70px rgba(18, 18, 23, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 6%, rgba(184, 255, 77, 0.22), transparent 26rem),
    linear-gradient(135deg, #fbfaf6 0%, #eef7f3 46%, #f7f4ee 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px clamp(14px, 3vw, 42px);
  border-bottom: 1px solid rgba(18, 18, 23, 0.08);
  background: rgba(248, 247, 243, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(18, 18, 23, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lime);
  font-weight: 850;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex: 0 1 auto;
  justify-content: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.nav a {
  white-space: nowrap;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.nav a:hover,
.nav a.active {
  background: var(--ink);
  color: #fff;
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  height: 40px;
  padding: 3px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.language-switch button,
.language-switch a {
  display: inline-flex;
  width: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 820;
  line-height: 1;
  cursor: pointer;
}

.language-switch button.active,
.language-switch a.active {
  background: var(--ink);
  color: #fff;
}

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

.topbar-actions .primary-button,
.topbar-actions .ghost-button,
.topbar-actions .soft-button {
  white-space: nowrap;
  padding-inline: 14px;
}

.primary-button,
.ghost-button,
.soft-button,
.danger-button,
.icon-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 790;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.primary-button {
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px rgba(18, 18, 23, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.soft-button:hover,
.danger-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.ghost-button {
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 23, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.soft-button {
  padding: 0 16px;
  background: var(--panel-strong);
  color: var(--ink);
}

.danger-button {
  padding: 0 16px;
  background: #fff0ef;
  color: #b72d21;
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.icon-button {
  width: 42px;
  padding: 0;
  border: 1px solid rgba(18, 18, 23, 0.1);
  background: #fff;
  color: var(--ink);
}

.wide {
  width: 100%;
}

.section {
  padding: clamp(34px, 6vw, 82px) clamp(16px, 4vw, 56px);
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(22px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 54px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(32, 214, 167, 0.14);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(40px, 5.1vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 690px;
  margin-bottom: 22px;
  color: #343744;
  font-size: clamp(17px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-row {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-item,
.metric-tile,
.mini-panel,
.game-card,
.pricing-card,
.dashboard-panel,
.admin-panel,
.table-card {
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(18, 18, 23, 0.06);
}

.trust-item {
  padding: 14px;
}

.trust-item strong,
.metric-tile strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.trust-item span,
.metric-tile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(18, 18, 23, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 18, 23, 0.96), rgba(33, 35, 45, 0.92)),
    #17171d;
  box-shadow: var(--shadow);
  color: #fff;
}

.promo-showcase {
  padding-top: 12px;
  padding-bottom: clamp(34px, 5vw, 72px);
}

.promo-showcase-frame {
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: 8px;
  background: #111217;
  box-shadow: 0 26px 70px rgba(18, 18, 23, 0.16);
}

.promo-showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.stream-scene {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}

.stream-header,
.stream-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-chip,
.gift-chip,
.plan-chip,
.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.live-chip {
  padding: 0 10px;
  background: #ff375f;
  color: #fff;
}

.gift-chip {
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.game-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(184, 255, 77, 0.16), transparent 56%),
    linear-gradient(120deg, #253344, #11141b 60%);
}

.pixel-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
}

.avatar {
  position: absolute;
  left: 11%;
  bottom: 18%;
  width: clamp(78px, 10vw, 116px);
  aspect-ratio: 1;
  border: 4px solid rgba(255, 255, 255, 0.84);
  border-radius: 22px;
  background:
    linear-gradient(135deg, var(--lime), var(--mint));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

.avatar::before,
.avatar::after {
  content: "";
  position: absolute;
  top: 35%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
}

.avatar::before {
  left: 27%;
}

.avatar::after {
  right: 27%;
}

.event-stack {
  position: absolute;
  right: 4%;
  top: 9%;
  display: grid;
  width: min(270px, 58%);
  gap: 10px;
}

.event-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.event-icon {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
}

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

.event-card small {
  color: rgba(255, 255, 255, 0.66);
}

.trigger-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: pulseLine 2.2s infinite ease-in-out;
}

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

.overlay-item {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.overlay-item strong,
.overlay-item span {
  display: block;
}

.overlay-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
}

.feature-grid,
.games-grid,
.pricing-grid,
.dashboard-grid,
.admin-grid,
.metrics-grid {
  display: grid;
  gap: 16px;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.dashboard-grid,
.admin-grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.mini-panel,
.game-card,
.pricing-card,
.dashboard-panel,
.admin-panel,
.table-card,
.metric-tile {
  padding: 18px;
}

.mini-panel {
  min-height: 190px;
}

.panel-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 24px;
}

.game-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: grid;
  align-content: space-between;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cover);
  opacity: 0.92;
}

.game-card > * {
  position: relative;
  z-index: 1;
}

.game-card .tag {
  width: max-content;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.78);
}

.game-card h3 {
  max-width: 260px;
  font-size: 30px;
}

.game-card p {
  max-width: 330px;
  color: #323541;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-meta span,
.plan-chip,
.tag {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.pricing-card.featured {
  background: var(--ink);
  color: #fff;
  transform: translateY(-8px);
}

.pricing-card.featured p,
.pricing-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.price {
  display: flex;
  align-items: end;
  gap: 6px;
  margin: 14px 0 18px;
}

.price strong {
  font-size: 44px;
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: var(--muted);
}

.pricing-card .primary-button,
.pricing-card .ghost-button {
  margin-top: auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 780;
}

.tab-button.active {
  background: var(--ink);
  color: #fff;
}

.dashboard-panel,
.admin-panel {
  background: rgba(255, 255, 255, 0.82);
}

.profile-card {
  display: grid;
  gap: 16px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color: #fff;
  font-size: 24px;
  font-weight: 850;
}

.subscription-box,
.connect-box,
.live-streams-box {
  padding: 14px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.live-streams-box {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 255, 77, 0.18), transparent 9rem),
    #fff;
}

.live-streams-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.live-streams-head h3 {
  margin: 8px 0 0;
}

.live-streams-head small {
  color: var(--muted);
  font-weight: 820;
  white-space: nowrap;
}

.state-pill.live {
  background: #101015;
  color: var(--lime);
}

.live-streams-list {
  display: grid;
  gap: 8px;
}

.live-stream-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.live-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint), var(--violet));
  color: #fff;
  font-weight: 900;
}

.live-stream-row strong,
.live-stream-row p,
.live-stream-row small {
  display: block;
}

.live-stream-row p,
.live-stream-row small {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(32, 214, 167, 0.12);
}

.progress-shell {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #ececf2;
}

.progress-bar {
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--lime));
}

.stacked-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #343744;
  font-size: 14px;
  font-weight: 760;
}

[hidden],
.register-only[hidden] {
  display: none !important;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(18, 18, 23, 0.12);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(18, 18, 23, 0.08);
}

.form-error {
  padding: 11px 12px;
  border: 1px solid rgba(210, 38, 38, 0.28);
  border-radius: 8px;
  background: #fff2f2;
  color: #a31313;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(210, 38, 38, 0.08);
}

.field-error {
  color: #a31313;
}

.field-error input {
  border-color: #d22626;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(210, 38, 38, 0.12), 0 0 22px rgba(210, 38, 38, 0.18);
}

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

.session-list,
.event-list,
.admin-list {
  display: grid;
  gap: 10px;
}

.session-card,
.event-row,
.admin-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.session-card {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.event-row,
.admin-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.event-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--panel-strong);
  font-size: 20px;
}

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

.fineprint {
  color: var(--muted);
  font-size: 13px;
}

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

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(18, 18, 23, 0.08);
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
  vertical-align: middle;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.table-actions .soft-button,
.table-actions .danger-button,
td > .danger-button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

td code {
  white-space: normal;
}

.table-card {
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding-inline: 10px;
}

.users-table th:nth-child(1),
.users-table td:nth-child(1) {
  width: 28%;
}

.users-table th:nth-child(2),
.users-table td:nth-child(2) {
  width: 31%;
}

.users-table th:nth-child(3),
.users-table td:nth-child(3) {
  width: 12%;
}

.users-table th:nth-child(4),
.users-table td:nth-child(4) {
  width: 14%;
}

.users-table th:nth-child(5),
.users-table td:nth-child(5) {
  width: 15%;
}

.sessions-table th:nth-child(1),
.sessions-table td:nth-child(1) {
  width: 23%;
}

.sessions-table th:nth-child(2),
.sessions-table td:nth-child(2) {
  width: 31%;
}

.sessions-table th:nth-child(3),
.sessions-table td:nth-child(3) {
  width: 15%;
}

.sessions-table th:nth-child(4),
.sessions-table td:nth-child(4) {
  width: 21%;
}

.sessions-table th:nth-child(5),
.sessions-table td:nth-child(5) {
  width: 10%;
}

.audit-table th:nth-child(1),
.audit-table td:nth-child(1) {
  width: 38%;
}

.audit-table th:nth-child(2),
.audit-table td:nth-child(2) {
  width: 36%;
}

.audit-table th:nth-child(3),
.audit-table td:nth-child(3) {
  width: 26%;
}

.state-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf8f4;
  color: #087d61;
  font-size: 12px;
  font-weight: 820;
}

.state-pill.warn {
  background: #fff5df;
  color: #9a6400;
}

.state-pill.off {
  background: #f0f1f4;
  color: #686c78;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 23, 0.48);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.checkout-panel {
  width: min(620px, 100%);
}

.game-detail-panel {
  width: min(760px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  animation: toastIn 220ms ease-out;
}

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

.checkout-summary-card > div,
.crypto-paybox,
.payment-option {
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.checkout-summary-card > div {
  padding: 14px;
}

.checkout-summary-card strong,
.checkout-summary-card span {
  display: block;
}

.crypto-paybox {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

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

.nicepay-settings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(245, 248, 244, 0.72);
}

.nicepay-settings[hidden] {
  display: none;
}

.payment-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.payment-option:has(input:checked) {
  border-color: rgba(18, 18, 23, 0.85);
  box-shadow: 0 12px 30px rgba(18, 18, 23, 0.12);
}

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

.payment-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.guide-shell {
  display: grid;
  gap: 14px;
}

.guide-hero,
.guide-section,
.guide-alert,
.guide-copy-box {
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 18, 23, 0.06);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.guide-hero h3,
.guide-section h3 {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.guide-mini-screen,
.guide-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 18, 23, 0.96), rgba(33, 35, 45, 0.92)),
    var(--ink);
  color: #fff;
}

.guide-mini-screen {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px;
  min-height: 170px;
}

.guide-window {
  display: grid;
  gap: 8px;
  min-height: 96px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.guide-window.dark {
  background: linear-gradient(135deg, rgba(32, 214, 167, 0.22), rgba(184, 255, 77, 0.12));
}

.guide-window span,
.guide-visual p {
  color: rgba(255, 255, 255, 0.68);
}

.guide-window strong {
  font-size: 20px;
}

.guide-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.guide-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 14px 16px;
  background: #fff8e8;
  color: #75500a;
}

.guide-section {
  padding: 18px;
}

.guide-section h3 {
  margin-bottom: 12px;
}

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

.guide-checks div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.guide-checks span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.guide-checks p,
.guide-steps,
.guide-visual p,
.guide-copy-box code,
.guide-troubles p {
  margin: 0;
}

.guide-steps {
  display: grid;
  gap: 9px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.guide-steps li::marker {
  color: var(--ink);
  font-weight: 900;
}

.guide-copy-box {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
}

.guide-copy-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.guide-copy-box code {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 800;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.guide-visual {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.studio-frame,
.obs-frame {
  display: grid;
  gap: 10px;
  min-height: 210px;
}

.studio-frame {
  grid-template-columns: minmax(0, 1fr) 130px;
}

.obs-frame {
  grid-template-rows: minmax(120px, 1fr) auto;
}

.studio-canvas,
.obs-preview {
  display: grid;
  min-height: 160px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(32, 214, 167, 0.22), rgba(184, 255, 77, 0.12));
  background-size: 28px 28px, 28px 28px, auto;
  font-weight: 900;
}

.studio-sidebar,
.obs-sources {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.studio-sidebar span,
.obs-sources span {
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.guide-troubles {
  display: grid;
  gap: 8px;
}

.guide-troubles details {
  padding: 12px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.guide-troubles summary {
  cursor: pointer;
  font-weight: 850;
}

.guide-troubles p {
  padding-top: 8px;
}

.crypto-paybox p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.game-detail-hero {
  position: relative;
  overflow: hidden;
  margin: -24px -24px 18px;
  padding: 42px 24px 30px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--cover);
}

.game-detail-hero h2 {
  max-width: 520px;
  margin-top: 18px;
}

.game-detail-hero p {
  max-width: 560px;
  color: #323541;
}

.game-detail-stats,
.checklist-grid,
.integration-grid {
  display: grid;
  gap: 10px;
}

.game-detail-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.game-detail-stats div,
.check-item,
.integration-card {
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}

.game-detail-stats strong,
.game-detail-stats span,
.check-item strong,
.check-item small {
  display: block;
}

.game-detail-stats strong {
  font-size: 22px;
}

.game-detail-stats span,
.check-item small {
  color: var(--muted);
  font-size: 13px;
}

.checklist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #eef0f4;
  color: var(--muted);
  font-weight: 900;
}

.check-item.done > span {
  background: var(--ink);
  color: var(--lime);
}

.integration-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.integration-card {
  min-height: 210px;
}

.ops-board {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(18, 18, 23, 0.94);
  color: #fff;
  box-shadow: var(--shadow);
}

.ops-board h3 {
  margin-top: 12px;
}

.ops-board p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.ops-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.secure-session {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid rgba(32, 214, 167, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(32, 214, 167, 0.12), rgba(184, 255, 77, 0.1)),
    #fff;
}

.secure-session h3 {
  margin-top: 10px;
  overflow-wrap: anywhere;
}

.subscription-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px minmax(280px, 0.8fr);
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.summary-price {
  display: grid;
  place-items: center;
  min-height: 140px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.summary-price strong,
.summary-price span {
  display: block;
}

.summary-price strong {
  font-size: 48px;
  line-height: 1;
}

.summary-price span {
  color: rgba(255, 255, 255, 0.72);
}

.summary-list {
  display: grid;
  gap: 8px;
}

.summary-list p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(16px, 4vw, 56px);
  border-top: 1px solid rgba(18, 18, 23, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.site-footer > div {
  min-width: 0;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.site-footer nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.site-footer a {
  padding: 8px 9px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.site-footer a:hover {
  background: var(--ink);
  color: #fff;
}

/* Blog */
.blog-page,
.blog-post-page,
.blog-admin,
.blog-admin-login {
  min-height: calc(100vh - 72px);
}

.blog-hero {
  padding-bottom: clamp(24px, 4vw, 46px);
}

.blog-list-section {
  padding-top: 0;
}

.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 18px;
}

.blog-category-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(18, 18, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.blog-category-nav a.active,
.blog-category-nav a:hover {
  background: var(--ink);
  color: #fff;
}

.blog-category-nav span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 18, 23, 0.08);
  font-size: 12px;
}

.blog-category-nav a.active span,
.blog-category-nav a:hover span {
  background: rgba(255, 255, 255, 0.16);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 18, 23, 0.06);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.blog-card-image img,
.blog-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.blog-card h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.12;
}

.blog-card p {
  margin-bottom: 0;
}

.blog-meta,
.blog-post-kicker,
.blog-share-row,
.blog-tags,
.blog-admin-actions,
.seo-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-meta span,
.blog-post-kicker span,
.blog-tags span,
.seo-checks span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.blog-read-link {
  width: max-content;
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post-page {
  padding-bottom: 34px;
}

.blog-article {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: clamp(28px, 5vw, 62px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.blog-post-hero {
  padding: 0 0 22px;
}

.blog-cover {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 18px 0 22px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.blog-toc,
.blog-cta,
.comments-layout,
.admin-panel {
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 18, 23, 0.06);
}

.blog-toc {
  margin: 0 0 22px;
  padding: 16px;
}

.blog-toc strong {
  display: block;
  margin-bottom: 10px;
}

.blog-toc nav {
  display: grid;
  gap: 8px;
}

.blog-toc a {
  color: var(--muted);
  font-weight: 760;
}

.blog-content {
  display: grid;
  gap: 14px;
  font-size: 18px;
  line-height: 1.72;
}

.blog-content h2,
.blog-content h3,
.blog-content p,
.blog-content ul,
.blog-content ol {
  margin-bottom: 0;
}

.blog-content h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.blog-content h3 {
  margin-top: 10px;
  font-size: 24px;
}

.blog-content ul,
.blog-content ol {
  padding-left: 22px;
  color: var(--muted);
}

.blog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 26px 0;
  padding: 18px;
}

.blog-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.blog-source {
  font-size: 14px;
}

.blog-related {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.blog-comments {
  width: min(920px, 100%);
  margin-inline: auto;
}

.comments-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
}

.comment-form {
  width: 100%;
}

.comment-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.comment-list > .muted {
  margin: 0;
  padding: 14px;
  border: 1px dashed rgba(18, 18, 23, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.comment-item {
  padding: 14px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.comment-item strong,
.comment-item time,
.comment-item small {
  display: block;
}

.comment-item time,
.comment-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.comment-item p {
  margin: 10px 0 0;
}

.blog-hp {
  position: absolute;
  left: -9999px;
}

.blog-admin-login {
  display: grid;
  place-items: center;
}

.blog-admin-login .modal-panel {
  width: min(480px, calc(100vw - 32px));
}

.blog-admin-login h1 {
  font-size: clamp(38px, 5vw, 50px);
  line-height: 1.04;
}

.blog-admin .section-heading h1 {
  font-size: clamp(42px, 5vw, 60px);
}

.blog-admin .admin-panel h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.blog-admin .admin-panel {
  margin-bottom: 14px;
  padding: 18px;
}

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

.blog-admin-post {
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.blog-admin-post summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  list-style: none;
  cursor: pointer;
}

.blog-admin-post summary::-webkit-details-marker {
  display: none;
}

.blog-admin-post summary strong,
.blog-admin-post summary small {
  display: block;
}

.blog-admin-post summary strong {
  overflow-wrap: anywhere;
}

.blog-admin-post summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.blog-admin-post form {
  padding: 0 14px 14px;
}

.seo-score {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.seo-checks span.ok {
  background: rgba(32, 214, 167, 0.14);
  color: #08745e;
}

.seo-checks span.warn {
  background: #fff0ef;
  color: #b72d21;
}

.legal-page h1 {
  max-width: 900px;
}

.legal-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-notice {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(154, 100, 0, 0.18);
  border-radius: var(--radius);
  background: #fff8e8;
  color: #75500a;
  line-height: 1.55;
}

.legal-sections {
  display: grid;
  gap: 12px;
}

.legal-card {
  padding: 18px;
  border: 1px solid rgba(18, 18, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.legal-card p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
}

.timeline-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--panel-strong);
  color: var(--muted);
  font-weight: 850;
}

.timeline-step p {
  margin-bottom: 0;
}

.overlay-page {
  min-height: calc(100vh - 72px);
  padding: 18px;
  background:
    radial-gradient(circle at 70% 0%, rgba(184, 255, 77, 0.18), transparent 28rem),
    linear-gradient(135deg, #111217, #202535);
  color: #fff;
}

.overlay-topline,
.overlay-preview {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.overlay-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 18px;
}

.overlay-preview {
  display: grid;
  min-height: calc(100vh - 126px);
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
}

.overlay-game {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(32, 214, 167, 0.2), transparent 58%),
    linear-gradient(135deg, #182230, #0e1118 62%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.toksy-watermark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 11, 16, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.overlay-avatar {
  left: 11%;
  bottom: 16%;
  width: clamp(110px, 14vw, 190px);
}

.overlay-feed {
  position: absolute;
  right: 22px;
  top: 22px;
  display: grid;
  width: min(360px, 48%);
  gap: 12px;
}

.overlay-boss {
  position: absolute;
  left: 24px;
  top: 24px;
  width: min(320px, 42%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.overlay-boss span,
.overlay-boss strong {
  display: block;
}

.overlay-boss strong {
  margin: 8px 0 12px;
  font-size: 42px;
  line-height: 1;
}

.overlay-control {
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.overlay-control h2,
.overlay-control h3 {
  color: #fff;
}

.overlay-control p,
.overlay-control .fineprint {
  color: rgba(255, 255, 255, 0.68);
}

.overlay-control .admin-row {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.82);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1200px) {
  .hero,
  .dashboard-grid,
  .admin-grid,
  .overlay-preview,
  .ops-board,
  .subscription-summary {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .metrics-grid,
  .checklist-grid,
  .integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .pricing-card.featured {
    transform: none;
  }

  .topbar {
    gap: 12px;
  }

  .nav a {
    padding-inline: 11px;
  }

  .topbar-actions .primary-button,
  .topbar-actions .ghost-button {
    padding-inline: 12px;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .trust-row,
  .feature-grid,
  .games-grid,
  .pricing-grid,
  .metrics-grid,
  .checklist-grid,
  .integration-grid,
  .game-detail-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .blog-grid,
  .comments-layout,
  .blog-cta,
  .blog-admin-post summary,
  .guide-hero,
  .guide-layout,
  .guide-checks {
    grid-template-columns: 1fr;
  }

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

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

  .guide-arrow {
    margin: 0 auto;
  }

  .studio-frame {
    grid-template-columns: 1fr;
  }

  .blog-article {
    width: min(100% - 28px, 920px);
  }

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

  .blog-content {
    font-size: 16px;
  }

  .event-stack {
    width: 74%;
  }

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

  .overlay-page {
    padding: 12px;
  }

  .overlay-topline,
  .checkout-summary-card,
  .payment-options,
  .nicepay-settings {
    grid-template-columns: 1fr;
  }

  .overlay-topline {
    display: grid;
  }

  .overlay-game {
    min-height: 520px;
  }

  .overlay-feed,
  .overlay-boss {
    position: relative;
    inset: auto;
    width: auto;
    margin: 14px;
  }

  .session-card,
  .event-row,
  .admin-row,
  .secure-session {
    grid-template-columns: 1fr;
  }

  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
    width: 100% !important;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 18, 23, 0.08);
  }

  .admin-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
    border-bottom: 0;
  }

  .admin-table td::before {
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    text-transform: uppercase;
  }

  .users-table td:nth-child(1)::before { content: "User"; }
  .users-table td:nth-child(2)::before { content: "Email"; }
  .users-table td:nth-child(3)::before { content: "Role"; }
  .users-table td:nth-child(4)::before { content: "Status"; }
  .users-table td:nth-child(5)::before { content: "Sessions"; }
  .sessions-table td:nth-child(1)::before { content: "Token"; }
  .sessions-table td:nth-child(2)::before { content: "Email"; }
  .sessions-table td:nth-child(3)::before { content: "Status"; }
  .sessions-table td:nth-child(4)::before { content: "Expires"; }
  .sessions-table td:nth-child(5)::before { content: "Action"; }
  .audit-table td:nth-child(1)::before { content: "Action"; }
  .audit-table td:nth-child(2)::before { content: "Target"; }
  .audit-table td:nth-child(3)::before { content: "Time"; }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 14px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
