:root {
  --bg: #020410;
  --bg-2: #05031a;
  --panel: rgba(7, 16, 39, .84);
  --panel-strong: rgba(9, 12, 31, .96);
  --line: rgba(0, 214, 255, .42);
  --line-soft: rgba(255, 255, 255, .12);
  --cyan: #00d7ff;
  --cyan-2: #39efff;
  --blue: #087dff;
  --green: #17f7ff;
  --red: #ff5874;
  --gold: #bd21ff;
  --nova-secondary: #bd21ff;
  --white: #f5f8ff;
  --muted: #a9b7c8;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --glow: 0 0 26px rgba(0, 214, 255, .38);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 10%, color-mix(in srgb, var(--nova-secondary) 24%, transparent), transparent 34%),
    radial-gradient(circle at 30% 0%, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 32%),
    linear-gradient(145deg, #010207 0%, var(--bg) 48%, #04010b 100%);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
body.skin-open {
  overflow: hidden;
}
body.is-logged-in .visitor-action,
body:not(.is-logged-in) .logged-action {
  display: none !important;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
}
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(1, 2, 12, .96), rgba(8, 5, 31, .76) 46%, rgba(18, 2, 34, .9)),
    #02050b;
}

button,
a,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: progress;
  opacity: .68;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
}

.app-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 26px 20px 124px;
}

.app-install-band {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 58px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(115, 255, 215, .5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 214, 255, .16), rgba(55, 247, 183, .13)), rgba(4, 13, 24, .96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .32), 0 0 22px rgba(0, 214, 255, .16);
  backdrop-filter: blur(16px);
}
.app-install-band div {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.app-install-band strong,
.app-install-band span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-install-band strong {
  color: var(--cyan-2);
  font-weight: 1000;
}
.app-install-band span {
  color: #d8e8f5;
  font-size: .82rem;
  font-weight: 800;
}
.app-install-band button {
  min-height: 38px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  text-transform: uppercase;
}
.app-install-band #appInstallLink {
  width: auto;
  padding: 0 14px;
  color: #03101a;
  background: linear-gradient(180deg, #73ffd7, #18dca1);
  border: 0;
}
.app-install-band #appInstallDismiss {
  width: 38px;
  color: #eaf7ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 80px;
  padding: 8px 0 16px;
  background: linear-gradient(180deg, rgba(2, 5, 11, .96), rgba(2, 5, 11, .74) 72%, transparent);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(1, 11, 22, .72);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), var(--glow);
}
.menu-toggle span {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: #f8fbff;
  box-shadow: 0 0 12px rgba(255,255,255,.35);
}

.brand {
  justify-self: start;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 280px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.62));
}

.main-menu {
  display: none;
}
.auth-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.user-menu {
  position: relative;
}
.user-menu-trigger {
  min-height: 54px;
  min-width: 180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: #eaf7ff;
  background: rgba(3, 10, 20, .74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(0, 214, 255, .16);
}
.user-menu-trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 1000;
}
.user-menu-trigger strong {
  color: var(--cyan);
}
.user-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 240px;
  display: none;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 9, 17, .98);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(18px);
}
.user-menu.open .user-menu-panel {
  display: grid;
}
.user-menu-status {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.055);
}
.user-menu-status span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
}
.user-menu-panel button {
  min-height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-weight: 950;
  text-transform: uppercase;
}
.user-menu-panel button:hover {
  color: #03101a;
  background: var(--cyan);
}
.user-menu-panel button.danger {
  color: #ffccd3;
  border-color: rgba(255,88,116,.45);
  background: rgba(255,88,116,.14);
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #03101a;
  background: linear-gradient(180deg, #69f7ff 0%, #09bfff 45%, #087dff 100%);
  border: 1px solid rgba(121, 246, 255, .88);
  box-shadow: 0 16px 42px rgba(0, 190, 255, .3), inset 0 1px 0 rgba(255,255,255,.7);
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.btn-ghost,
.btn-glass {
  background: rgba(3, 10, 20, .68);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(0, 214, 255, .12);
}
.btn-danger {
  background: rgba(255, 88, 116, .18);
  border: 1px solid rgba(255, 88, 116, .55);
}
.btn-big {
  min-height: 58px;
  padding-inline: 28px;
}
.btn.compact {
  min-height: 38px;
  padding: 0 13px;
  font-size: .78rem;
}
.wide {
  width: 100%;
}

.mobile-menu {
  position: fixed;
  z-index: 70;
  top: 92px;
  left: 18px;
  right: 18px;
  display: none;
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(3, 9, 17, .96);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(18px);
}
.mobile-menu.open {
  display: grid;
  gap: 8px;
}
.mobile-menu button {
  min-height: 46px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #eaf7ff;
  text-align: left;
  padding: 0 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.mobile-menu button.active,
.mobile-menu .menu-primary {
  color: #03101a;
  background: linear-gradient(180deg, #69f7ff, #0abfff 54%, #087dff);
  border-color: rgba(121, 246, 255, .8);
}
.mobile-menu button.menu-danger {
  color: #ffd7de;
  background: rgba(255, 88, 116, .16);
  border-color: rgba(255, 88, 116, .48);
}
.mobile-menu .mobile-account-button {
  min-height: 62px;
  display: grid;
  gap: 4px;
  align-content: center;
  color: #03101a;
  background: linear-gradient(180deg, #73ffd7, #18dca1);
  border-color: rgba(115, 255, 215, .82);
  text-align: left;
}
.mobile-menu .mobile-account-button strong,
.mobile-menu .mobile-account-button small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-menu .mobile-account-button small {
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}
.mobile-menu .menu-spacer {
  height: 1px;
  margin: 6px 0;
  background: rgba(255,255,255,.13);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, 1.12fr);
  align-items: center;
  min-height: 570px;
  margin-top: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: 205px;
  height: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--cyan) 0 20%, transparent 20% 30%, var(--cyan) 30% 36%, transparent 36% 48%, var(--cyan) 48% 54%, transparent 54% 66%, var(--cyan) 66% 72%, transparent 72%),
    rgba(0, 214, 255, .08);
  box-shadow: 0 0 16px rgba(0, 214, 255, .65);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 24px 0 78px 18px;
}
.eyebrow {
  margin: 0 0 16px;
  color: rgba(245, 248, 255, .94);
  font-size: 1.22rem;
  line-height: 1.3;
}
.eyebrow strong {
  color: var(--cyan);
}
.hero h1 {
  margin: 0;
}
.hero h1 img {
  width: min(470px, 100%);
  filter: drop-shadow(0 9px 20px rgba(0,0,0,.62));
}
.hero h1:not(:has(img)) {
  color: #f8fbff;
  font-size: 82px;
  line-height: .95;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0,0,0,.48), 0 0 30px rgba(255,255,255,.22);
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(0, 214, 255, .82), 0 6px 0 rgba(0, 41, 74, .6);
}
.lead {
  max-width: 360px;
  margin: 18px 0 0;
  color: #dce7f3;
  font-size: 1.2rem;
  line-height: 1.42;
}
.lead img {
  width: min(340px, 100%);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.42));
}
.hero-status {
  width: min(360px, 100%);
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 214, 255, .32);
  background: rgba(0, 18, 34, .58);
}
.hero-status span,
.hero-status small {
  color: var(--muted);
  font-weight: 800;
}
.hero-status strong {
  color: var(--cyan);
  font-size: 1.28rem;
}
.hero-status small {
  grid-column: 1 / -1;
  color: #e8faff;
}
.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  place-items: end center;
}
.hero-visual::before {
  content: none;
}
.hero-visual .neon-ring {
  position: absolute;
  width: 520px;
  max-width: 92%;
  aspect-ratio: 1;
  transform: translate(22px, 8px);
  filter: drop-shadow(0 0 38px rgba(0,214,255,.7));
}
.hero-visual .gaucho-art {
  position: relative;
  z-index: 2;
  width: 610px;
  max-width: 116%;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,.72)) drop-shadow(0 0 24px rgba(0,214,255,.22));
  transform: translate(6px, 18px);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 22px;
}
.action-card,
.category-card,
.special-card,
.game-card,
.sport-card,
.support-card,
.modal-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(5, 20, 36, .86), rgba(2, 8, 16, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.28);
}
.promo-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(0, 214, 255, .26);
  border-radius: var(--radius);
  background: rgba(0, 214, 255, .07);
}
.promo-card img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
.promo-card div {
  min-width: 0;
}
.promo-card strong,
.promo-card span {
  display: block;
  font-weight: 1000;
}
.promo-card p {
  margin: 4px 0 8px;
  color: #cfe0ef;
  font-size: .86rem;
  line-height: 1.35;
}
.promo-card span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .74rem;
}
.action-card {
  min-height: 250px;
  padding: 22px 16px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 7px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,214,255,.16), transparent 42%, rgba(0,125,255,.12));
  pointer-events: none;
}
.action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 214, 255, .86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 22px 50px rgba(0, 214, 255, .14);
}
.action-card img {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 20px rgba(0,214,255,.72));
}
.action-card strong,
.action-card span,
.action-card em {
  position: relative;
  z-index: 1;
}
.action-card strong {
  font-size: 1.08rem;
  text-transform: uppercase;
}
.action-card span {
  color: #d7e3ef;
}
.action-card em {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: 5px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cyan);
  font-style: normal;
}

.checkout-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 20px 0 28px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(5, 20, 36, .86), rgba(2, 8, 16, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.28);
}
.checkout-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.18);
  border-top-color: var(--cyan);
  animation: spin .9s linear infinite;
}
.checkout-status[data-state="credited"] .checkout-spinner {
  border-color: var(--green);
  animation: none;
}
.checkout-status[data-state="failed"] .checkout-spinner {
  border-color: var(--red);
  animation: none;
}
.checkout-status strong {
  display: block;
  text-transform: uppercase;
}
.checkout-status p {
  margin: 3px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.checkout-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.content-section {
  margin-top: 28px;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}
.section-title p {
  margin: 0 0 4px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 950;
}
.section-title h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255,255,255,.16);
}
.link-button {
  min-height: 36px;
  padding: 0 2px;
  background: transparent;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: .86rem;
  font-weight: 950;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.category-card {
  min-height: 170px;
  padding: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,214,255,.82);
}
.category-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.88) 58%, #02050b);
}
.category-card span {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 14px;
  color: #f8fbff;
  font-size: 1.1rem;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(0,0,0,.8);
}

.casino-board {
  padding-top: 4px;
}
.filters {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.filters label,
.modal-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.13);
  outline: 0;
  color: var(--white);
  background: rgba(1, 7, 14, .86);
  padding: 0 12px;
}
textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 214, 255, .14);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.chip {
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #d8e9f6;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  font-weight: 950;
  text-transform: uppercase;
}
.chip.active {
  color: #03101a;
  background: linear-gradient(180deg, #69f7ff, #0abfff 54%, #087dff);
  border-color: rgba(121, 246, 255, .82);
}
.jackpot {
  min-height: 36px;
  margin-left: auto;
  padding: 0 12px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.045);
  font-weight: 900;
  text-transform: uppercase;
}
.jackpot strong {
  color: var(--gold);
}

.special-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.special-row.is-empty {
  display: none;
}
.special-card {
  min-height: 130px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 5px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease;
}
.special-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,214,255,.82);
}
.special-card span {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.special-card strong {
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 10px;
}
.game-card {
  min-height: 226px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,214,255,.88);
  box-shadow: 0 20px 44px rgba(0,214,255,.12), inset 0 1px 0 rgba(255,255,255,.12);
}
.game-card .thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 138px;
  background: #0c1726 center / cover no-repeat;
}
.game-card footer {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 86px;
  padding: 10px;
}
.game-card strong {
  min-width: 0;
  color: var(--white);
  font-size: .92rem;
  line-height: 1.12;
  text-transform: uppercase;
}
.game-card span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 3px;
}
.badge {
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  border-radius: 999px;
  color: #03101a;
  background: var(--cyan);
  font-size: .58rem;
  font-style: normal;
  font-weight: 1000;
}
.game-card.skeleton {
  pointer-events: none;
}
.game-card.skeleton .thumb,
.game-card.skeleton strong,
.game-card.skeleton span {
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.17), rgba(255,255,255,.06));
  background-size: 220% 100%;
  animation: shimmer 1.15s linear infinite;
}
.game-card.skeleton strong {
  min-height: 18px;
}
.game-card.skeleton span {
  min-height: 12px;
  width: 68%;
}
.empty-state {
  display: none;
  margin-top: 14px;
  padding: 34px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,.035);
}
.empty-state.show {
  display: block;
}

.sports-panel {
  scroll-margin-top: 100px;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.sport-card {
  padding: 13px;
  display: grid;
  gap: 12px;
}
.sport-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sport-card header span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.sport-card header strong {
  color: var(--cyan);
}
.teams {
  display: grid;
  gap: 5px;
  font-weight: 950;
}
.odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.odds button {
  min-height: 32px;
  border-radius: 6px;
  color: #03101a;
  background: var(--cyan);
  font-size: .8rem;
  font-weight: 1000;
}

.support-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 18px;
}
.support-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(0, 214, 255, .09);
  border: 1px solid rgba(0, 214, 255, .28);
}
.support-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.support-card h2 {
  margin: 0 0 4px;
  color: var(--cyan);
}
.support-card p {
  margin: 0;
  color: #d8e4ef;
}

.bottom-nav {
  position: fixed;
  z-index: 58;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(960px, calc(100% - 20px));
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(3, 8, 15, .94);
  box-shadow: 0 22px 70px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.bottom-nav button {
  min-width: 0;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  gap: 3px;
  color: #b9c7d6;
  background: transparent;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.bottom-nav span {
  display: block;
  color: currentColor;
  font-size: .98rem;
  line-height: 1;
}
.bottom-nav button.active {
  color: var(--cyan);
  background: rgba(0,214,255,.14);
  box-shadow: inset 0 0 18px rgba(0,214,255,.18);
}
body.menu-open .bottom-nav {
  display: none;
}

.modal {
  width: min(520px, calc(100vw - 24px));
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
}
.modal::backdrop {
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(0, 214, 255, .12), transparent 42%),
    #07111f;
}
#accountForm[data-mode="link"] .create-only {
  display: none;
}
.modal-card h2 {
  margin: 0 40px 2px 0;
  text-transform: uppercase;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: #e8f6ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 950;
}
.mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mode-tabs button {
  min-height: 42px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  font-weight: 950;
  text-transform: uppercase;
}
.mode-tabs button.active {
  color: #03101a;
  background: linear-gradient(180deg, #69f7ff, #0abfff 54%, #087dff);
}
.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
}
.form-message[data-tone="ok"] {
  color: var(--green);
}
.form-message[data-tone="error"] {
  color: var(--red);
}
.history-modal {
  width: min(760px, calc(100vw - 24px));
}
.history-list {
  display: grid;
  gap: 8px;
  max-height: min(620px, 70vh);
  overflow: auto;
}
.history-item {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
}
.history-item strong {
  display: grid;
  gap: 3px;
}
.history-item small,
.history-item span,
.history-item em {
  color: var(--muted);
  font-size: .74rem;
  font-style: normal;
}
.history-item a {
  color: var(--cyan);
  font-weight: 950;
  text-decoration: none;
}

.game-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-rows: 60px 1fr;
  background: #02050b;
}
.game-overlay.open {
  display: grid;
}
.game-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(2, 6, 12, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(0,0,0,.42);
}
.overlay-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.overlay-brand img {
  width: 112px;
  max-height: 42px;
  object-fit: contain;
}
.overlay-brand strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overlay-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.game-frame-shell {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: 42px 1fr;
  background: #050914;
  --provider-crop-top: 0px;
}
.game-frame-status {
  position: absolute;
  z-index: 4;
  inset: 42px 0 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(2, 5, 11, .78), rgba(2, 5, 11, .96)),
    radial-gradient(circle at center, rgba(0,214,255,.16), transparent 58%);
}
.game-frame-status img {
  width: min(240px, 70vw);
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0,214,255,.34));
}
.game-frame-status strong {
  font-size: 1.25rem;
  text-transform: uppercase;
}
.game-frame-status p {
  max-width: 520px;
  margin: 0;
  color: #dce9f6;
  font-weight: 800;
}
.game-frame-status[data-tone="error"] {
  background:
    linear-gradient(180deg, rgba(2, 5, 11, .84), rgba(2, 5, 11, .98)),
    radial-gradient(circle at center, rgba(255,88,116,.14), transparent 58%);
}
.iframe-logo-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(0,214,255,.24);
  background: linear-gradient(180deg, rgba(4, 17, 31, .98), rgba(2, 8, 15, .96));
}
.frame-logo-badge {
  width: auto;
  height: 28px;
  max-width: 128px;
  object-fit: contain;
}
.iframe-logo-bar span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
#gameFrame {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #050914;
}
.game-frame-shell.crop-provider-top {
  display: block;
}
.game-frame-shell.crop-provider-top .iframe-logo-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.game-frame-shell.crop-provider-top #gameFrame {
  position: absolute;
  left: 0;
  top: calc(42px - var(--provider-crop-top));
  height: calc(100% - 42px + var(--provider-crop-top));
}
.mini-game {
  position: fixed;
  z-index: 99;
  right: 16px;
  bottom: 94px;
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #03101a;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: var(--shadow);
}
.mini-game.show {
  display: inline-flex;
  align-items: center;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 104px;
  min-width: 240px;
  max-width: min(460px, calc(100vw - 30px));
  padding: 13px 16px;
  border-radius: var(--radius);
  color: #03101a;
  background: linear-gradient(180deg, #69f7ff, #0abfff 54%, #087dff);
  box-shadow: 0 18px 46px rgba(0,214,255,.28);
  text-align: center;
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast[data-tone="error"] {
  color: #fff;
  background: linear-gradient(180deg, #ff7a90, #ff355d);
}
.toast[data-tone="ok"] {
  color: #03101a;
  background: linear-gradient(180deg, #73ffd7, #12d99b);
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .app-shell {
    padding: 18px 16px 120px;
  }
  .topbar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }
  .brand img {
    width: 235px;
  }
  .auth-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .auth-actions .user-menu {
    grid-column: 1 / -1;
  }
  .user-menu-trigger {
    width: 100%;
  }
  .user-menu-panel {
    width: 100%;
  }
  .hero {
    grid-template-columns: minmax(0, .86fr) minmax(280px, 1.14fr);
    min-height: 520px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-visual {
    min-height: 500px;
  }
  .quick-actions,
  .category-grid,
  .sports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
@media (max-width: 680px) {
  .topbar {
    min-height: 72px;
  }
  .menu-toggle {
    width: 54px;
    height: 54px;
  }
  .menu-toggle span {
    width: 28px;
  }
  .brand img {
    width: 190px;
    max-height: 56px;
  }
  .btn {
    min-height: 46px;
    padding-inline: 12px;
    font-size: .82rem;
  }
  .mobile-menu {
    top: 82px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 8px;
  }
  .hero::after {
    left: 8px;
    bottom: 12px;
  }
  .hero-copy {
    padding: 6px 0 62px 4px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .lead {
    max-width: 100%;
    font-size: 1rem;
  }
  .hero-status {
    width: 100%;
  }
  .hero-visual {
    order: -1;
    min-height: 360px;
    margin-top: -18px;
  }
  .hero-visual .neon-ring {
    width: 335px;
    transform: translate(0, 6px);
  }
  .hero-visual .gaucho-art {
    width: 410px;
    max-width: 112%;
    transform: translate(6px, 18px);
  }
  .quick-actions {
    gap: 10px;
  }
  .action-card {
    min-height: 190px;
    padding: 16px 10px;
  }
  .action-card img {
    width: 58px;
    height: 58px;
  }
  .action-card strong {
    font-size: .9rem;
  }
  .action-card span {
    font-size: .82rem;
  }
  .checkout-status {
    grid-template-columns: 1fr;
  }
  .checkout-spinner {
    display: none;
  }
  .checkout-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .jackpot {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
  .special-row {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .support-icon {
    margin-inline: auto;
  }
  .bottom-nav {
    width: calc(100% - 14px);
    min-height: 68px;
    padding: 6px;
  }
  .bottom-nav button {
    font-size: .58rem;
  }
  .bottom-nav span {
    font-size: .78rem;
  }
  .game-toolbar {
    align-items: stretch;
  }
  .overlay-brand img {
    width: 92px;
  }
  .overlay-actions .btn {
    min-height: 36px;
    padding-inline: 8px;
    font-size: .68rem;
  }
  .iframe-logo-bar span {
    display: none;
  }
}

@media (max-width: 420px) {
  .app-shell {
    padding-inline: 12px;
  }
  .brand img {
    width: 160px;
  }
  .auth-actions {
    gap: 8px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .eyebrow {
    font-size: 1rem;
  }
  .category-card,
  .category-card img {
    min-height: 145px;
  }
  .history-item {
    grid-template-columns: 1fr;
  }
}

/* NovaBet demo skin */
.app-shell {
  width: min(1024px, 100%);
}

body[data-skin-background="carbon"] {
  background:
    linear-gradient(135deg, rgba(255,255,255,.045) 25%, transparent 25%) 0 0 / 32px 32px,
    radial-gradient(circle at 68% 12%, color-mix(in srgb, var(--nova-secondary) 22%, transparent), transparent 34%),
    linear-gradient(145deg, #02030a, var(--bg));
}

body[data-skin-background="stadium"] {
  background:
    radial-gradient(ellipse at center top, color-mix(in srgb, var(--cyan) 20%, transparent), transparent 46%),
    linear-gradient(180deg, #020410, #061621 46%, #02030b);
}

body[data-skin-background="mockup"] .site-bg {
  opacity: .34;
  background:
    linear-gradient(180deg, rgba(1,2,10,.68), rgba(1,2,10,.96)),
    url("assets/novabet/mockup-full.png") center top / min(1024px, 100vw) auto no-repeat;
}

.topbar {
  border-bottom: 1px solid color-mix(in srgb, var(--nova-secondary) 24%, transparent);
}

.brand img {
  width: 330px;
  max-height: 84px;
}

.btn-primary,
.mobile-menu button.active,
.mobile-menu .menu-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #166dff 48%, var(--nova-secondary));
  border-color: color-mix(in srgb, var(--cyan) 72%, #fff 10%);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--cyan) 28%, transparent), 0 0 28px color-mix(in srgb, var(--nova-secondary) 24%, transparent);
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.btn-skin {
  color: #fff;
  background: linear-gradient(135deg, rgba(0,215,255,.24), rgba(189,33,255,.34));
  border: 1px solid color-mix(in srgb, var(--nova-secondary) 72%, transparent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--nova-secondary) 28%, transparent);
}

.hero {
  min-height: 590px;
}

.nova-title {
  display: grid;
  gap: 4px;
}

.nova-title span {
  display: block;
  font-size: clamp(54px, 8vw, 92px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 1000;
  color: #f9fbff;
  text-shadow: 0 6px 0 rgba(0,0,0,.5), 0 0 24px rgba(255,255,255,.22);
}

.nova-title span:nth-child(2) {
  color: var(--cyan);
  text-shadow: 0 0 28px color-mix(in srgb, var(--cyan) 76%, transparent), 0 6px 0 rgba(0,0,0,.48);
}

.nova-title span:nth-child(3) {
  color: var(--nova-secondary);
  text-shadow: 0 0 28px color-mix(in srgb, var(--nova-secondary) 76%, transparent), 0 6px 0 rgba(0,0,0,.48);
}

.nova-lead {
  max-width: 390px;
  font-size: 1.55rem;
}

.nova-lead strong {
  color: var(--cyan);
}

.hero-visual .neon-ring {
  width: min(570px, 96%);
  transform: translate(68px, -18px);
  opacity: .9;
}

.hero-visual .gaucho-art {
  width: min(690px, 122%);
  transform: translate(-44px, 14px);
}

.quick-actions {
  gap: 16px;
}

.action-card {
  min-height: 248px;
  background:
    radial-gradient(circle at 50% 10%, color-mix(in srgb, var(--cyan) 24%, transparent), transparent 38%),
    linear-gradient(145deg, color-mix(in srgb, var(--panel-strong) 94%, #000 6%), rgba(4, 3, 20, .96));
  border-color: color-mix(in srgb, var(--cyan) 44%, var(--nova-secondary) 26%);
}

.action-card:nth-child(even) {
  border-color: color-mix(in srgb, var(--nova-secondary) 58%, transparent);
}

.action-card img {
  width: 138px;
  height: 118px;
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--cyan) 58%, transparent));
}

.action-card strong {
  font-size: 1.16rem;
}

.section-title h2::before {
  content: "*";
  margin-right: 8px;
  color: var(--nova-secondary);
  text-shadow: 0 0 16px var(--nova-secondary);
}

.support-card {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--cyan) 12%, transparent), color-mix(in srgb, var(--nova-secondary) 14%, transparent)),
    var(--panel-strong);
}

.bottom-nav {
  border-color: color-mix(in srgb, var(--nova-secondary) 44%, var(--cyan) 28%);
}

body[data-skin-layout="casino"] .app-shell {
  width: min(1180px, 100%);
}

body[data-skin-layout="casino"] .games-grid {
  grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
}

body[data-skin-layout="sports"] .sports-panel {
  border-color: color-mix(in srgb, var(--nova-secondary) 68%, transparent);
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 34px color-mix(in srgb, var(--nova-secondary) 28%, transparent);
}

body[data-skin-layout="premium"] .hero {
  min-height: 660px;
}

body[data-skin-layout="premium"] .hero-visual {
  min-height: 620px;
}

.skin-drawer {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  pointer-events: none;
}

.skin-drawer:not([hidden]) {
  pointer-events: auto;
}

.skin-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(8px);
}

.skin-panel {
  position: relative;
  justify-self: end;
  width: min(470px, 100%);
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-left: 1px solid color-mix(in srgb, var(--nova-secondary) 52%, transparent);
  background: linear-gradient(180deg, rgba(7, 10, 25, .98), rgba(3, 5, 18, .98));
  box-shadow: -30px 0 90px rgba(0,0,0,.56), 0 0 44px color-mix(in srgb, var(--nova-secondary) 18%, transparent);
}

.skin-panel header,
.skin-panel footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.skin-panel footer {
  border-top: 1px solid var(--line-soft);
  border-bottom: 0;
}

.skin-panel header span {
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.skin-panel h2,
.skin-panel h3,
.skin-panel p {
  margin: 0;
}

.skin-panel h2 {
  font-size: 1.55rem;
}

.skin-panel h3 {
  font-size: .88rem;
  text-transform: uppercase;
}

.skin-close,
.skin-soft {
  min-height: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-soft);
  font-weight: 1000;
  text-transform: uppercase;
}

.skin-close {
  width: 42px;
}

.skin-soft {
  padding: 0 14px;
}

.skin-scroll {
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.skin-block {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.skin-block label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.skin-block input:not([type="radio"]):not([type="color"]):not([type="file"]) {
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid var(--line-soft);
  color: var(--white);
  background: rgba(0,0,0,.22);
  padding: 0 10px;
}

.logo-drop {
  min-height: 88px;
  place-items: center;
  border: 1px dashed color-mix(in srgb, var(--cyan) 58%, transparent);
  background: color-mix(in srgb, var(--cyan) 10%, transparent);
  cursor: pointer;
  text-align: center;
}

.logo-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.logo-drop span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--nova-secondary));
}

.logo-drop strong {
  max-width: 100%;
  color: var(--muted);
  font-size: .72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.skin-color-grid label,
.skin-layouts label {
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
}

.skin-color-grid label {
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
}

.skin-color-grid input {
  width: 44px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
}

.skin-layouts input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--cyan);
}

.skin-layouts span {
  color: var(--white);
}

.skin-layouts label:has(input:checked) {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan) 18%, transparent), var(--glow);
}

@media (max-width: 900px) {
  .brand img {
    width: 250px;
  }

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

  .btn-skin {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .nova-title span {
    font-size: clamp(52px, 16vw, 74px);
  }

  .hero-visual .neon-ring {
    transform: translate(32px, -8px);
  }

  .hero-visual .gaucho-art {
    transform: translate(-24px, 20px);
  }

  .skin-panel {
    width: 100%;
    border-left: 0;
  }

  .skin-color-grid,
  .skin-layouts,
  .skin-panel footer {
    grid-template-columns: 1fr;
  }

  .skin-panel footer {
    display: grid;
  }
}
