﻿:root {
  --bg: #060914;
  --panel: rgba(15, 23, 42, 0.94);
  --panel2: rgba(30, 41, 59, 0.86);
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #38bdf8;
  --accent2: #22c55e;
  --danger: #fb7185;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.16), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(34, 197, 94, 0.14), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 55%, #020617 100%);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero-card {
  width: min(980px, 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(180deg, var(--panel), rgba(2, 6, 23, 0.94));
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
}

.hero-card.compact {
  width: min(720px, 100%);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.pill,
.env {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.pill {
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.34);
  background: rgba(56, 189, 248, 0.08);
}

.pill.danger {
  color: var(--danger);
  border-color: rgba(251, 113, 133, 0.34);
  background: rgba(251, 113, 133, 0.08);
}

.env {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
}

.status-panel,
.data-panel {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.status-panel {
  grid-template-columns: repeat(3, 1fr);
}

.data-panel {
  grid-template-columns: repeat(4, 1fr);
}

.metric,
.data-panel div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel2);
}

.metric span,
.data-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric strong,
.data-panel strong {
  font-size: 22px;
}

.ok {
  color: var(--accent2);
}

.bad {
  color: var(--danger);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  color: #03131f;
  background: var(--accent);
  text-decoration: none;
  font-weight: 900;
}

.actions a.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

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

  .status-panel,
  .data-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    border-radius: 24px;
  }
}
.nav {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand span {
  color: var(--accent);
}

.nav nav,
.inline-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a,
.nav button {
  border: 0;
  color: var(--text);
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav .nav-cta,
.nav button {
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent);
}

.flash {
  position: fixed;
  z-index: 20;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.96);
  font-weight: 800;
  text-align: center;
}

.flash.ok {
  color: var(--accent2);
}

.flash.bad {
  color: var(--danger);
}

.auth-card {
  width: min(620px, 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(26px, 5vw, 44px);
  background: linear-gradient(180deg, var(--panel), rgba(2, 6, 23, 0.94));
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
}

.auth-card h1 {
  font-size: clamp(38px, 7vw, 64px);
}

.form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font: inherit;
  outline: none;
}

.form input:focus {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.form button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: #03131f;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.alert {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.alert.bad {
  color: var(--danger);
  background: rgba(251, 113, 133, 0.08);
}

.small-link {
  margin-top: 22px;
  color: var(--muted);
}

.small-link a {
  color: var(--accent);
  font-weight: 900;
}

.actions .disabled {
  opacity: 0.62;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 760px) {
  .nav {
    top: 10px;
  }

  .shell {
    padding-top: 96px;
  }
}
/* GROUPS V1 */
.hero-card.wide {
  width: min(1160px, 100%);
}

.table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td strong {
  display: block;
  margin-bottom: 4px;
}

td small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

code {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  font-weight: 900;
}
/* HOME V4 */
.home-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 48px;
}

.home-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(30px, 6vw, 58px);
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(180deg, var(--panel), rgba(2, 6, 23, 0.94));
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
}

.home-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 8vw, 92px);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.option-card a,
.payment-card a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 950;
}

.primary-action,
.option-card a,
.payment-card a {
  background: var(--accent);
  color: #03131f;
}

.secondary-action,
.option-card.donation-card a,
.payment-card a.disabled,
.option-card a.disabled {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: 16px;
  margin-top: 18px;
}

.option-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

.option-card.featured {
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.14), transparent 34%),
    rgba(15, 23, 42, 0.84);
}

.card-kicker {
  display: inline-flex;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 14px;
}

.option-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.option-card p,
.payment-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.option-card ul,
.superadmin-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--text);
}

.option-card li,
.superadmin-copy li {
  color: var(--muted);
  line-height: 1.45;
}

.price-box {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.08);
}

.price-box strong {
  font-size: 42px;
  letter-spacing: -0.06em;
  color: var(--text);
}

.price-box span {
  color: var(--muted);
  font-weight: 800;
}

.home-status {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.superadmin-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 34px;
}

.superadmin-copy,
.payment-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.72);
}

.superadmin-copy h2 {
  margin: 0 0 16px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.payment-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.payment-card span {
  color: var(--muted);
  font-weight: 900;
}

.payment-card strong {
  font-size: 62px;
  letter-spacing: -0.08em;
}

.payment-card small {
  color: var(--muted);
  line-height: 1.45;
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .home-grid,
  .superadmin-grid,
  .home-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-shell {
    padding-top: 96px;
  }
}
/* PAYPAL + QR + INVITES V5 */
.home-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 48px;
}

.home-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(30px, 6vw, 58px);
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(180deg, var(--panel), rgba(2, 6, 23, 0.94));
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
}

.home-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 8vw, 92px);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.option-card a,
.payment-card a,
.share-box a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 950;
}

.primary-action,
.option-card a,
.payment-card a,
.share-box a {
  background: var(--accent);
  color: #03131f;
}

.secondary-action,
.option-card .secondary-mini {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: 16px;
  margin-top: 18px;
}

.option-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

.option-card.featured {
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.14), transparent 34%),
    rgba(15, 23, 42, 0.84);
}

.card-kicker {
  display: inline-flex;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 14px;
}

.option-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.option-card p,
.payment-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.option-card ul,
.superadmin-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--text);
}

.option-card li,
.superadmin-copy li {
  color: var(--muted);
  line-height: 1.45;
}

.price-box {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.08);
}

.price-box strong {
  font-size: 42px;
  letter-spacing: -0.06em;
  color: var(--text);
}

.price-box span {
  color: var(--muted);
  font-weight: 800;
}

.qr-pay {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.qr-pay img,
.payment-qr {
  width: 190px;
  max-width: 100%;
  border-radius: 18px;
  background: white;
  padding: 10px;
}

.qr-pay.small img {
  width: 150px;
}

.qr-pay span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.home-status {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.superadmin-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 34px;
}

.superadmin-copy,
.payment-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.72);
}

.superadmin-copy h2 {
  margin: 0 0 16px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.payment-card {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.payment-card span {
  color: var(--muted);
  font-weight: 900;
}

.payment-card strong {
  font-size: 62px;
  letter-spacing: -0.08em;
}

.payment-card small {
  color: var(--muted);
  line-height: 1.45;
}

.hero-card.wide {
  width: min(1160px, 100%);
}

.table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td strong {
  display: block;
  margin-bottom: 4px;
}

td small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

code {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  font-weight: 900;
}

.share-box {
  display: grid;
  gap: 8px;
}

.share-box input {
  width: 260px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.62);
}

.qr-mini {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: white;
  padding: 6px;
}

@media (max-width: 980px) {
  .home-grid,
  .superadmin-grid,
  .home-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-shell {
    padding-top: 96px;
  }
}
/* LEGAL + PAYMENTS + SHARE V6 */
.legal-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.legal-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.legal-doc {
  line-height: 1.65;
}

.legal-doc h1 {
  margin-bottom: 10px;
}

.legal-doc h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-doc p {
  color: var(--muted);
}

.premium-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 30px;
}

.legal-safe-card,
.payment-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.72);
}

.legal-safe-card h2 {
  margin-top: 0;
}

.legal-safe-card ul {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.safe-notice {
  margin-top: 18px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 20px;
  padding: 18px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--muted);
  line-height: 1.55;
}

.payment-card {
  display: grid;
  gap: 14px;
}

.payment-card span {
  color: var(--muted);
  font-weight: 900;
}

.payment-card strong {
  font-size: 58px;
  letter-spacing: -0.08em;
}

.payment-card small {
  color: var(--muted);
  line-height: 1.5;
}

.payment-qr,
.qr-mini {
  background: white;
  padding: 8px;
  border-radius: 16px;
}

.payment-qr {
  width: 190px;
}

.qr-mini {
  width: 82px;
  height: 82px;
}

.pay-button,
.inline-form button,
.share-actions button {
  border: 0;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 16px;
  background: var(--accent);
  color: #03131f;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.secondary-pay {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 900;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 420px;
}

.share-actions a,
.share-actions button {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.share-actions a {
  display: inline-flex;
  align-items: center;
  background: rgba(56, 189, 248, 0.14);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.share-actions button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  color: var(--text);
  border: 1px solid var(--line);
  font-weight: 900;
  transition: 0.22s ease;
}

.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.danger-form button {
  background: rgba(251, 113, 133, 0.16);
  color: #fb7185;
  border: 1px solid rgba(251, 113, 133, 0.28);
  margin-top: 8px;
}

@media (max-width: 920px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }
}

/* FAANG EXPERIENCE UPGRADE V7 */
.faang-home {
  position: relative;
}

.faang-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.26;
  pointer-events: none;
}

.hero-glow-a {
  top: -120px;
  left: -120px;
  background: #38bdf8;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.hero-glow-b {
  bottom: -160px;
  right: -100px;
  background: #22c55e;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(42px, -28px, 0) scale(1.08); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 930px;
  letter-spacing: -0.085em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.live-pill {
  gap: 9px;
}

.live-dot {
  width: 9px;
  height: 9px;
  display: inline-flex;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 1.7s infinite;
}

@keyframes livePulse {
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row div {
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
}

.trust-row strong {
  display: block;
  font-size: 18px;
}

.trust-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.live-demo-card {
  position: relative;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 32px;
  padding: 22px;
  background:
    radial-gradient(circle at var(--mx, 40%) var(--my, 20%), rgba(56, 189, 248, 0.15), transparent 38%),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(1.2deg);
  animation: floatCard 5s ease-in-out infinite alternate;
}

@keyframes floatCard {
  from { transform: rotate(1.2deg) translateY(0); }
  to { transform: rotate(-0.4deg) translateY(-10px); }
}

.demo-header,
.countdown-card,
.match-card-mini,
.ranking-mini,
.activity-feed {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.46);
  padding: 16px;
  margin-bottom: 12px;
}

.demo-header,
.match-card-mini div,
.rank-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-header strong {
  color: #22c55e;
  font-size: 12px;
}

.countdown-card span {
  display: block;
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}

.countdown-card strong {
  display: block;
  margin-top: 6px;
  font-size: 38px;
  letter-spacing: -0.06em;
  color: var(--accent);
}

.match-card-mini {
  display: grid;
  gap: 10px;
}

.match-card-mini div {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.match-card-mini strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.16);
  color: var(--accent);
}

.rank-line {
  padding: 9px 0;
  color: var(--muted);
}

.rank-one {
  color: white;
}

.activity-feed {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.growth-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.growth-strip div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.64);
}

.growth-strip strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #03131f;
}

.growth-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 900;
}

.faang-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 10%), rgba(56, 189, 248, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.78);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.faang-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 26px 100px rgba(0, 0, 0, 0.36);
}

.premium-highlight {
  border-color: rgba(34, 197, 94, 0.24);
}

.share-copy-box {
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 18px;
  padding: 14px;
  margin: 16px 0;
  background: rgba(56, 189, 248, 0.075);
}

.share-copy-box strong {
  color: var(--accent);
}

.share-copy-box p {
  margin-top: 8px;
  font-size: 14px;
}

.dopamine-section {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 72px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(15, 23, 42, 0.58);
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin: 16px 0 8px;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.07em;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-matrix article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-matrix span {
  font-size: 28px;
}

.feature-matrix h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.feature-matrix p {
  color: var(--muted);
  line-height: 1.45;
}

.premium-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.premium-badges span {
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--accent);
  background: rgba(56, 189, 248, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  font-size: 13px;
}

.payment-faang {
  border-color: rgba(34, 197, 94, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1050px) {
  .hero-layout,
  .feature-matrix,
  .growth-strip {
    grid-template-columns: 1fr 1fr;
  }

  .live-demo-card {
    transform: none;
    animation: none;
  }
}

@media (max-width: 720px) {
  .hero-layout,
  .feature-matrix,
  .growth-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a {
    width: 100%;
  }
}
/* FAANG READABILITY V8 */
body {
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
}

.v8-home {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.v8-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 10%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
}

.v8-hero-bg {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.v8-blue {
  background: #38bdf8;
  top: -120px;
  left: -100px;
}

.v8-green {
  background: #22c55e;
  right: -120px;
  bottom: -140px;
}

.v8-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.v8-copy h1 {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.085em;
}

.v8-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.v8-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent);
  font-weight: 950;
  font-size: 14px;
}

.v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.v8-actions a {
  min-height: 52px;
}

.v8-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.v8-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.v8-demo {
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 30px;
  padding: 18px;
  background: rgba(2, 6, 23, 0.62);
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}

.v8-demo-top,
.v8-timer,
.v8-score,
.v8-ranking {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.045);
}

.v8-demo-top,
.v8-score div,
.v8-ranking div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v8-demo-top span {
  color: #22c55e;
  font-size: 12px;
  font-weight: 950;
}

.v8-timer span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.v8-timer strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 36px;
  letter-spacing: -0.06em;
}

.v8-score {
  display: grid;
  gap: 9px;
}

.v8-score div {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}

.v8-score strong {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent);
}

.v8-ranking {
  display: grid;
  gap: 10px;
}

.v8-ranking div {
  color: var(--muted);
  font-weight: 900;
}

.v8-ranking div:first-child {
  color: white;
}

.v8-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.v8-flow div,
.v8-card,
.v8-benefits {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.68);
}

.v8-flow div {
  padding: 18px;
}

.v8-flow strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #03131f;
}

.v8-flow span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 900;
}

.v8-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.v8-card {
  padding: 28px;
}

.v8-card > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.v8-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.v8-card p,
.v8-card li,
.v8-card small {
  color: var(--muted);
  line-height: 1.5;
}

.v8-card ul {
  padding-left: 20px;
  margin: 20px 0 24px;
  display: grid;
  gap: 8px;
}

.v8-card a:not(.secondary-pay) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  background: var(--accent);
  color: #03131f;
  font-weight: 950;
  text-decoration: none;
}

.v8-card-premium {
  border-color: rgba(34, 197, 94, 0.28);
}

.v8-price {
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 20px;
  padding: 18px;
  margin: 20px 0;
  background: rgba(56,189,248,.08);
}

.v8-price strong {
  display: block;
  font-size: 44px;
  letter-spacing: -0.07em;
}

.v8-price small {
  display: block;
  margin-top: 5px;
  font-weight: 900;
}

.v8-suggested {
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 18px;
  padding: 14px;
  margin: 18px 0;
  color: var(--muted);
  background: rgba(56,189,248,.075);
  line-height: 1.45;
}

.v8-share {
  gap: 8px;
}

.v8-share a,
.v8-share button {
  min-height: 36px;
  font-size: 12px;
}

.v8-benefits {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.v8-benefits h2 {
  margin: 18px 0 8px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.v8-benefits p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.v8-benefit-list {
  display: grid;
  gap: 12px;
}

.v8-benefit-list article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.045);
}

.v8-benefit-list strong {
  display: block;
  font-size: 20px;
}

.v8-benefit-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.v8-premium-page h1 {
  max-width: 850px;
}

.v8-unlock li {
  margin-bottom: 8px;
}

.v8-payment strong {
  font-size: 56px;
}

.legal-footer a[href="/legal/reembolsos"] {
  display: none !important;
}

@media (max-width: 980px) {
  .v8-hero-grid,
  .v8-benefits {
    grid-template-columns: 1fr;
  }

  .v8-demo {
    max-width: 460px;
  }

  .v8-flow,
  .v8-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    top: 8px;
    width: calc(100% - 20px);
  }

  .v8-home {
    width: calc(100% - 20px);
  }

  .v8-hero {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .v8-copy h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .v8-copy p {
    font-size: 17px;
  }

  .v8-actions,
  .v8-proof {
    display: grid;
  }

  .v8-actions a,
  .v8-proof span {
    width: 100%;
  }

  .v8-flow,
  .v8-cards {
    grid-template-columns: 1fr;
  }
}
/* FAANG ORTHOGRAPHY + QUICK HOME V9 */
.v9-nav .nav-home-link {
  color: var(--muted);
  font-weight: 950;
}

.v9-nav .nav-home-link:hover {
  color: var(--accent);
}

.quick-home {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: var(--accent);
  text-decoration: none;
  font-weight: 950;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.quick-home:hover {
  background: rgba(56, 189, 248, 0.14);
  transform: translateY(-1px);
}

.v9-home {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.v9-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 10%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.94));
}

.v9-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
}

.v9-glow-blue {
  background: #38bdf8;
  top: -120px;
  left: -100px;
}

.v9-glow-green {
  background: #22c55e;
  right: -120px;
  bottom: -140px;
}

.v9-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.v9-copy h1 {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.085em;
}

.v9-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.v9-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent);
  font-weight: 950;
  font-size: 14px;
}

.v9-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.v9-actions a {
  min-height: 52px;
}

.v9-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.v9-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.v9-demo {
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 30px;
  padding: 18px;
  background: rgba(2, 6, 23, 0.62);
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}

.v9-demo-top,
.v9-timer,
.v9-score,
.v9-ranking {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.045);
}

.v9-demo-top,
.v9-score div,
.v9-ranking div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v9-demo-top span {
  color: #22c55e;
  font-size: 12px;
  font-weight: 950;
}

.v9-timer span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.v9-timer strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 36px;
  letter-spacing: -0.06em;
}

.v9-score {
  display: grid;
  gap: 9px;
}

.v9-score div {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}

.v9-score strong {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent);
}

.v9-ranking {
  display: grid;
  gap: 10px;
}

.v9-ranking div {
  color: var(--muted);
  font-weight: 900;
}

.v9-ranking div:first-child {
  color: white;
}

.v9-flow,
.v9-cards,
.v9-benefits {
  position: relative;
  z-index: 2;
}

.v9-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.v9-flow div,
.v9-card,
.v9-benefits {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.68);
}

.v9-flow div {
  padding: 18px;
}

.v9-flow strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #03131f;
}

.v9-flow span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 900;
}

.v9-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.v9-card {
  padding: 28px;
}

.v9-card > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.v9-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.v9-card p,
.v9-card li,
.v9-card small {
  color: var(--muted);
  line-height: 1.5;
}

.v9-card ul {
  padding-left: 20px;
  margin: 20px 0 24px;
  display: grid;
  gap: 8px;
}

.v9-card a:not(.secondary-pay) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  background: var(--accent);
  color: #03131f;
  font-weight: 950;
  text-decoration: none;
}

.v9-card-premium {
  border-color: rgba(34, 197, 94, 0.28);
}

.v9-price {
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 20px;
  padding: 18px;
  margin: 20px 0;
  background: rgba(56,189,248,.08);
}

.v9-price strong {
  display: block;
  font-size: 44px;
  letter-spacing: -0.07em;
}

.v9-price small {
  display: block;
  margin-top: 5px;
  font-weight: 900;
}

.v9-suggested {
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 18px;
  padding: 14px;
  margin: 18px 0;
  color: var(--muted);
  background: rgba(56,189,248,.075);
  line-height: 1.45;
}

.v9-benefits {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.v9-benefits h2 {
  margin: 18px 0 8px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.v9-benefits p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.v9-benefit-list {
  display: grid;
  gap: 12px;
}

.v9-benefit-list article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.045);
}

.v9-benefit-list strong {
  display: block;
  font-size: 20px;
}

.v9-benefit-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .v9-hero-grid,
  .v9-benefits {
    grid-template-columns: 1fr;
  }

  .v9-demo {
    max-width: 460px;
  }

  .v9-flow,
  .v9-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .quick-home {
    left: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 0 13px;
  }

  .v9-home {
    width: calc(100% - 20px);
  }

  .v9-hero {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .v9-copy h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .v9-copy p {
    font-size: 17px;
  }

  .v9-actions,
  .v9-proof {
    display: grid;
  }

  .v9-actions a,
  .v9-proof span {
    width: 100%;
  }

  .v9-flow,
  .v9-cards {
    grid-template-columns: 1fr;
  }
}
/* SCORING RULES V2 */
.scoring-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scoring-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.scoring-form input,
.scoring-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(2, 6, 23, 0.68);
  color: var(--text);
  font: inherit;
  outline: none;
}

.scoring-form input:focus,
.scoring-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.52);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.08);
}

.scoring-box {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(15, 23, 42, 0.66);
}

.scoring-header h2 {
  margin: 14px 0 8px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.06em;
}

.scoring-header p {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.55;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.mode-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.mode-card input {
  width: auto;
}

.mode-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 20px;
}

.mode-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.locked-mode {
  opacity: 0.55;
  cursor: not-allowed;
}

.classic-summary,
.custom-scoring-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  margin-top: 16px;
  background: rgba(2, 6, 23, 0.42);
}

.classic-summary h3,
.custom-scoring-panel h3,
.scoring-section h4 {
  margin: 0 0 14px;
}

.rules-preview-grid,
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rules-preview-grid span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
}

.rules-preview-grid strong {
  color: var(--accent);
}

.scoring-section {
  margin-top: 22px;
}

.points-grid label {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.04);
}

.points-grid input {
  max-width: 110px;
}

.disabled-panel {
  opacity: 0.45;
  pointer-events: none;
}

.group-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.admin-group-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(15, 23, 42, 0.68);
}

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

.admin-group-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.admin-group-head h2 {
  margin: 8px 0 0;
  font-size: 30px;
  letter-spacing: -0.055em;
}

.admin-group-head code {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--accent);
  background: rgba(56,189,248,.08);
}

.admin-group-card p {
  color: var(--muted);
  line-height: 1.5;
}

.scoring-mini {
  border: 1px solid rgba(56,189,248,.2);
  border-radius: 20px;
  padding: 16px;
  margin: 18px 0;
  background: rgba(56,189,248,.07);
}

.scoring-mini strong {
  display: block;
  margin-bottom: 12px;
}

.scoring-mini div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.scoring-mini span,
.scoring-mini small {
  color: var(--muted);
  font-weight: 850;
}

.scoring-mini small {
  display: block;
  margin-top: 12px;
}

.admin-group-stats {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.admin-group-stats span {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  color: var(--muted);
  background: rgba(15,23,42,.68);
}

@media (max-width: 900px) {
  .form-grid,
  .mode-grid,
  .rules-preview-grid,
  .points-grid,
  .group-card-grid {
    grid-template-columns: 1fr;
  }

  .scoring-mini div {
    grid-template-columns: 1fr;
  }
}
/* GROUP DETAIL + PAYMENT FIX V10 */
.mini-actions {
  margin: 16px 0;
}

.group-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.68);
}

.detail-card span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.detail-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.detail-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.detail-section {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.58);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.055em;
}

.section-head span {
  color: var(--accent);
  font-weight: 950;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.member-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.045);
}

.member-card strong {
  display: block;
  font-size: 19px;
}

.member-card span,
.member-card small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.payment-card .pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 15px;
  padding: 0 18px;
  background: var(--accent);
  color: #03131f;
  text-decoration: none;
  font-weight: 950;
}

@media (max-width: 980px) {
  .group-detail-grid,
  .members-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .group-detail-grid,
  .members-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }
}
/* ENTRY GAMEPLAY GROUPS AB V11 */
.entry-form {
  display: grid;
  gap: 26px;
}

.entry-title-label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 950;
}

.entry-title-label input,
.score-input-row input {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.68);
  color: var(--text);
  font: inherit;
  outline: none;
}

.entry-title-label input {
  min-height: 52px;
  padding: 0 16px;
}

.match-group-block {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.58);
}

.match-prediction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.match-prediction-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.045);
}

.match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 14px;
}

.score-input-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
}

.score-input-row label {
  display: grid;
  gap: 10px;
}

.score-input-row strong {
  min-height: 42px;
  display: flex;
  align-items: center;
  line-height: 1.15;
}

.score-input-row input {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  font-size: 28px;
  font-weight: 950;
  text-align: center;
}

.vs {
  color: var(--muted);
  font-weight: 950;
  padding-bottom: 16px;
}

.entry-detail-page table a {
  color: var(--accent);
  font-weight: 950;
}

@media (max-width: 860px) {
  .match-prediction-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .score-input-row {
    grid-template-columns: 1fr;
  }

  .vs {
    padding: 0;
    text-align: center;
  }
}
/* ENTRY UX V12 - ACCORDION + FLAGS + LIVE STANDINGS */
.v12-entry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
}

.v12-entry-status {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), rgba(15, 23, 42, 0.86)),
    rgba(15, 23, 42, 0.75);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.v12-entry-status span,
.v12-entry-status small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.v12-entry-status strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 40px;
  letter-spacing: -0.06em;
}

.v12-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.v12-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .2s ease;
}

.v12-groups-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 6px;
}

.v12-nav-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font-weight: 950;
  cursor: pointer;
}

.v12-nav-chip.is-active {
  color: #03131f;
  border-color: transparent;
  background: var(--accent);
}

.v12-accordion {
  display: grid;
  gap: 18px;
}

.v12-group-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.58);
}

.v12-group-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.v12-group-panel summary::-webkit-details-marker {
  display: none;
}

.v12-group-panel summary b {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.06em;
}

.v12-group-panel summary small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 900;
}

.v12-group-panel summary i {
  font-style: normal;
  border: 1px solid rgba(56,189,248,.26);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--accent);
  font-weight: 950;
  white-space: nowrap;
}

.v12-group-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 18px;
  padding: 0 22px 22px;
}

.v12-standings-card {
  align-self: start;
  position: sticky;
  top: 96px;
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(56,189,248,.08), rgba(15,23,42,.72)),
    rgba(2, 6, 23, .45);
}

.section-head.compact h2 {
  font-size: 26px;
}

.v12-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.v12-standings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 390px;
}

.v12-standings-table th,
.v12-standings-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  white-space: nowrap;
}

.v12-standings-table th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v12-standings-table td {
  color: var(--text);
  font-weight: 850;
}

.v12-stand-team {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.v12-stand-team b {
  font-size: 22px;
}

.v12-stand-team strong {
  display: block;
  max-width: 155px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v12-stand-team small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.v12-standings-table tr.is-direct {
  background: rgba(34, 197, 94, .065);
}

.v12-standings-table tr.is-third {
  background: rgba(56, 189, 248, .055);
}

.v12-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.v12-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.v12-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.v12-legend .direct {
  background: #22c55e;
}

.v12-legend .third {
  background: var(--accent);
}

.v12-match-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.v12-match-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255,255,255,.042);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.v12-match-card.is-filled {
  border-color: rgba(34, 197, 94, .34);
  background: rgba(34, 197, 94, .045);
}

.v12-match-card header,
.v12-match-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.v12-match-card footer {
  margin-top: 12px;
  color: var(--accent);
}

.v12-score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.v12-team-input {
  display: grid;
  gap: 10px;
}

.v12-team-name {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.v12-team-name b {
  font-size: 24px;
}

.v12-team-name strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v12-team-name small {
  color: var(--muted);
  font-weight: 950;
  font-size: 11px;
}

.v12-team-input input {
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.68);
  color: var(--text);
  font: inherit;
  font-size: 28px;
  font-weight: 950;
  text-align: center;
  outline: none;
}

.v12-team-input input:focus {
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 0 4px rgba(56,189,248,.09);
}

.v12-team-input input.is-invalid {
  border-color: rgba(244, 63, 94, .75);
}

.v12-vs {
  padding-bottom: 18px;
  color: var(--muted);
  font-weight: 950;
}

.v12-global-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(56,189,248,.20);
  border-radius: 24px;
  padding: 18px;
  background: rgba(56,189,248,.065);
}

.v12-global-summary span,
.v12-global-summary small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.v12-global-summary strong {
  display: block;
  margin: 6px 0;
  font-size: 24px;
}

.v12-actions button:disabled {
  opacity: .48;
  cursor: not-allowed;
  filter: grayscale(.3);
}

@media (max-width: 1120px) {
  .v12-entry-hero,
  .v12-group-layout {
    grid-template-columns: 1fr;
  }

  .v12-entry-status,
  .v12-standings-card {
    position: static;
  }

  .v12-standings-card {
    order: -1;
  }
}

@media (max-width: 720px) {
  .entry-page.hero-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .v12-group-panel summary {
    padding: 18px;
  }

  .v12-group-layout {
    padding: 0 14px 14px;
  }

  .v12-score-row {
    grid-template-columns: 1fr;
  }

  .v12-vs {
    padding: 0;
    text-align: center;
  }

  .v12-team-name {
    min-height: auto;
  }

  .v12-global-summary {
    display: grid;
  }

  .v12-global-summary button {
    width: 100%;
  }

  .v12-actions {
    display: grid;
  }

  .v12-actions button,
  .v12-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ENTRY UX V13 - REAL FLAGS + SEND CLARITY */
.v13-flag-img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

.v12-stand-team .v13-flag-img {
  width: 26px;
  height: 18px;
  flex: 0 0 auto;
}

.v12-team-name .v13-flag-img {
  width: 32px;
  height: 22px;
  flex: 0 0 auto;
}

.v12-actions button[type="submit"] {
  min-width: 210px;
  min-height: 54px;
  font-size: 15px;
}

.v12-match-card footer {
  min-height: 18px;
}

.flash.ok {
  border-color: rgba(34,197,94,.35);
  color: #86efac;
}

.flash.bad {
  border-color: rgba(244,63,94,.35);
  color: #fb7185;
}

@media (max-width: 720px) {
  .v12-team-name {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .v12-team-name .v13-flag-img {
    width: 30px;
    height: 21px;
  }
}

/* ENTRY UX V13B - LOCAL FLAGS + ENCODING FIX */
.v13-flag-img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  flex: 0 0 auto;
}

.v12-stand-team .v13-flag-img {
  width: 26px;
  height: 18px;
}

.v12-team-name .v13-flag-img {
  width: 32px;
  height: 22px;
}

.v12-actions button[type="submit"] {
  min-width: 210px;
  min-height: 54px;
  font-size: 15px;
}

.v12-match-card footer {
  min-height: 18px;
}

.v12-team-name {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.flash.ok {
  border-color: rgba(34,197,94,.35);
  color: #86efac;
}

.flash.bad {
  border-color: rgba(244,63,94,.35);
  color: #fb7185;
}

@media (max-width: 720px) {
  .v12-team-name .v13-flag-img {
    width: 30px;
    height: 21px;
  }
}

/* LEGAL HARDENING V2 */
.legal-doc ul {
  margin: 14px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc h2 {
  margin-top: 34px;
}

.legal-doc .safe-notice {
  margin: 22px 0;
}

/* PRIVACY HARDENING V2 */
.privacy-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.privacy-summary-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.045);
}

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

.privacy-summary-grid strong {
  color: var(--accent);
  margin-bottom: 6px;
}

.privacy-summary-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.legal-doc ul {
  margin: 14px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc h2 {
  margin-top: 34px;
}

.legal-doc .safe-notice {
  margin: 22px 0;
}

@media (max-width: 720px) {
  .privacy-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* FREE USER CONVERSION V16 - FAANG */
.groups-page-v16 {
  overflow: hidden;
}

.groups-v16-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.groups-v16-copy h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -0.08em;
}

.groups-v16-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.v16-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v16-plan-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0;
  max-width: 760px;
}

.v16-plan-row article,
.v16-upgrade-card,
.v16-empty-state,
.v16-choice-card,
.v16-worldcup-strip,
.v16-bottom-conversion {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  border-radius: 24px;
}

.v16-plan-row article {
  padding: 16px;
}

.v16-plan-row strong,
.v16-plan-row span {
  display: block;
}

.v16-plan-row strong {
  color: var(--text);
  margin-bottom: 6px;
}

.v16-plan-row span {
  color: var(--muted);
  line-height: 1.4;
}

.v16-upgrade-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.78));
}

.v16-upgrade-card > span,
.v16-choice-card > span,
.v16-bottom-conversion span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.v16-upgrade-card h2 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.v16-upgrade-card p,
.v16-upgrade-card li,
.v16-upgrade-card small,
.v16-choice-card p,
.v16-worldcup-strip span,
.v16-bottom-conversion p {
  color: var(--muted);
  line-height: 1.5;
}

.v16-upgrade-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 18px;
}

.v16-main-upgrade,
.v16-pay-direct,
.v16-choice-card a,
.v16-section-head a,
.v16-bottom-conversion a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 950;
}

.v16-main-upgrade,
.v16-choice-card.premium a,
.v16-section-head a,
.v16-bottom-conversion a {
  background: var(--accent);
  color: #03131f;
}

.v16-pay-direct,
.v16-choice-card a {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.v16-upgrade-card small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
}

.v16-empty-state {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.72));
}

.v16-empty-state h2 {
  margin: 20px 0 24px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.v16-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.v16-choice-card {
  padding: 24px;
}

.v16-choice-card h3 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.v16-choice-card.premium {
  border-color: rgba(56,189,248,.32);
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 40%),
    rgba(15, 23, 42, 0.72);
}

.v16-price-line {
  margin: 18px 0 8px;
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 18px;
  padding: 16px;
  background: rgba(56,189,248,.07);
}

.v16-price-line strong {
  display: block;
  font-size: 44px;
  letter-spacing: -0.07em;
}

.v16-price-line small {
  color: var(--muted);
  font-weight: 900;
}

.v16-worldcup-strip {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  gap: 5px;
  background: rgba(34,197,94,.06);
  border-color: rgba(34,197,94,.22);
}

.v16-worldcup-strip strong {
  font-size: 22px;
}

.v16-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin: 34px 0 18px;
}

.v16-section-head h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.065em;
}

.v16-group-card {
  transition: transform .18s ease, border-color .18s ease;
}

.v16-group-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.34);
}

.v16-bottom-conversion {
  margin-top: 28px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(56,189,248,.10), rgba(15,23,42,.72));
}

.v16-bottom-conversion strong {
  display: block;
  margin: 6px 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

@media (max-width: 1080px) {
  .groups-v16-hero {
    grid-template-columns: 1fr;
  }

  .v16-upgrade-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .v16-plan-row,
  .v16-choice-grid {
    grid-template-columns: 1fr;
  }

  .v16-section-head,
  .v16-bottom-conversion {
    display: grid;
  }

  .v16-section-head a,
  .v16-bottom-conversion a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .groups-v16-copy h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .groups-v16-copy p {
    font-size: 17px;
  }

  .groups-page-v16 .actions {
    display: grid;
  }

  .groups-page-v16 .actions a {
    width: 100%;
  }
}

/* GROUPS NEUROMARKETING V17 - CLEAN AIDA */
.groups-page-v17 {
  overflow: hidden;
}

.v17-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.v17-kicker {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v17-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.v17-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.v17-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.v17-main-action,
.v17-secondary-action,
.v17-pay-action,
.v17-direct-pay,
.v17-path-card a,
.v17-section-title a,
.v17-bottom-cta a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
}

.v17-main-action,
.v17-pay-action,
.v17-path-premium a,
.v17-section-title a,
.v17-bottom-cta a {
  background: var(--accent);
  color: #03131f;
}

.v17-secondary-action,
.v17-direct-pay,
.v17-path-card a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.v17-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v17-trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.v17-premium-card,
.v17-empty,
.v17-path-card,
.v17-emotion-strip,
.v17-bottom-cta {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  border-radius: 26px;
}

.v17-premium-card {
  position: sticky;
  top: 92px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.18), transparent 38%),
    linear-gradient(135deg, rgba(15,23,42,.86), rgba(2,6,23,.78));
}

.v17-premium-card > span,
.v17-path-card > span,
.v17-bottom-cta span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.v17-premium-card h2 {
  margin: 12px 0 10px;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.v17-premium-card p,
.v17-premium-card small,
.v17-price-box span,
.v17-path-card p,
.v17-empty-head p,
.v17-emotion-strip span,
.v17-bottom-cta p {
  color: var(--muted);
  line-height: 1.5;
}

.v17-price-box {
  margin: 18px 0 12px;
  border: 1px solid rgba(56,189,248,.25);
  border-radius: 20px;
  padding: 16px;
  background: rgba(56,189,248,.08);
}

.v17-price-box small,
.v17-price-box span {
  display: block;
  font-weight: 900;
}

.v17-price-box strong {
  display: block;
  margin: 4px 0;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.v17-direct-pay {
  margin-top: 10px;
  width: 100%;
}

.v17-pay-action {
  width: 100%;
}

.v17-legal-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
}

.v17-empty {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.13), transparent 38%),
    linear-gradient(135deg, rgba(15,23,42,.76), rgba(2,6,23,.7));
}

.v17-empty-head h2 {
  margin: 18px 0 10px;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.v17-empty-head p {
  max-width: 760px;
  font-size: 18px;
}

.v17-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.v17-path-card {
  padding: 24px;
}

.v17-path-card h3 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.v17-path-premium {
  border-color: rgba(56,189,248,.32);
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.14), transparent 38%),
    rgba(15,23,42,.72);
}

.v17-emotion-strip {
  margin-top: 18px;
  padding: 18px 20px;
  border-color: rgba(34,197,94,.22);
  background: rgba(34,197,94,.055);
}

.v17-emotion-strip strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.v17-section-title {
  margin: 34px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.v17-section-title h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.065em;
}

.v17-group-card {
  transition: transform .18s ease, border-color .18s ease;
}

.v17-group-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.34);
}

.v17-bottom-cta {
  margin-top: 28px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(56,189,248,.09), rgba(15,23,42,.72));
}

.v17-bottom-cta strong {
  display: block;
  margin: 6px 0;
  font-size: 28px;
  letter-spacing: -0.055em;
}

@media (max-width: 1080px) {
  .v17-hero-grid {
    grid-template-columns: 1fr;
  }

  .v17-premium-card {
    position: static;
  }
}

@media (max-width: 780px) {
  .v17-path-grid {
    grid-template-columns: 1fr;
  }

  .v17-section-title,
  .v17-bottom-cta {
    display: grid;
  }

  .v17-section-title a,
  .v17-bottom-cta a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .v17-hero-copy h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .v17-hero-copy p {
    font-size: 17px;
  }

  .v17-primary-actions {
    display: grid;
  }

  .v17-main-action,
  .v17-secondary-action {
    width: 100%;
  }

  .v17-trust-row {
    display: grid;
  }
}

/* PLAYER DASHBOARD + JOIN FLOW V18 */
.player-dashboard-v18,
.join-page-v18 {
  overflow: hidden;
}

.dash-v18-hero,
.join-v18-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.dash-v18-kicker,
.join-v18-kicker {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dash-v18-hero h1,
.join-v18-copy h1 {
  margin: 16px 0;
  font-size: clamp(58px, 7vw, 94px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.dash-v18-hero p,
.join-v18-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.dash-v18-actions,
.dash-v18-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.dash-v18-primary,
.dash-v18-secondary,
.dash-v18-moment a,
.dash-v18-card-head a,
.dash-v18-mini-actions a,
.dash-v18-best a,
.join-v18-form button,
.join-v18-form a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
}

.dash-v18-primary,
.dash-v18-moment a,
.dash-v18-best a,
.join-v18-form button {
  border: 0;
  background: var(--accent);
  color: #03131f;
  cursor: pointer;
}

.dash-v18-secondary,
.dash-v18-card-head a,
.dash-v18-mini-actions a,
.join-v18-form a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.dash-v18-moment,
.dash-v18-stats article,
.dash-v18-card,
.dash-v18-recent,
.join-v18-form,
.join-v18-steps article {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  border-radius: 26px;
}

.dash-v18-moment {
  position: sticky;
  top: 92px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.18), transparent 38%),
    rgba(15,23,42,.76);
}

.dash-v18-moment span,
.dash-v18-card-head span,
.dash-v18-best span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dash-v18-moment h2 {
  margin: 12px 0 10px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.dash-v18-moment p,
.dash-v18-card small,
.dash-v18-empty p,
.dash-v18-best p,
.dash-v18-group-row small {
  color: var(--muted);
  line-height: 1.45;
}

.dash-v18-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.dash-v18-stats article {
  padding: 18px;
}

.dash-v18-stats span,
.dash-v18-stats small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.dash-v18-stats strong {
  display: block;
  margin: 8px 0;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.dash-v18-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 18px;
}

.dash-v18-card,
.dash-v18-recent {
  padding: 22px;
}

.dash-v18-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.dash-v18-card-head h2 {
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.dash-v18-empty {
  border: 1px dashed rgba(148,163,184,.28);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.035);
}

.dash-v18-empty strong {
  display: block;
  font-size: 20px;
}

.dash-v18-group-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  margin-top: 10px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, border-color .18s ease;
}

.dash-v18-group-row:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.34);
}

.dash-v18-group-row strong,
.dash-v18-group-row small {
  display: block;
}

.dash-v18-group-row > span {
  color: var(--accent);
  font-weight: 950;
}

.dash-v18-best {
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 22px;
  padding: 20px;
  background: rgba(56,189,248,.07);
}

.dash-v18-best strong {
  display: block;
  margin: 10px 0;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.085em;
}

.dash-v18-recent {
  margin-top: 18px;
}

.join-v18-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.join-v18-steps article {
  padding: 16px;
}

.join-v18-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #03131f;
  margin-bottom: 10px;
}

.join-v18-steps span {
  color: var(--muted);
  font-weight: 900;
}

.join-v18-form {
  padding: 24px;
}

.join-v18-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 950;
}

.join-v18-form input {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 0 16px;
  background: rgba(2,6,23,.70);
  color: var(--text);
  font: inherit;
  outline: none;
}

.join-v18-form input:focus {
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 0 4px rgba(56,189,248,.09);
}

.join-v18-form button {
  width: 100%;
  margin-top: 4px;
}

.join-v18-form p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.join-v18-form p a {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
}

@media (max-width: 1050px) {
  .dash-v18-hero,
  .join-v18-grid,
  .dash-v18-grid {
    grid-template-columns: 1fr;
  }

  .dash-v18-moment {
    position: static;
  }

  .dash-v18-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .dash-v18-stats,
  .join-v18-steps {
    grid-template-columns: 1fr;
  }

  .dash-v18-actions,
  .dash-v18-mini-actions {
    display: grid;
  }

  .dash-v18-primary,
  .dash-v18-secondary,
  .dash-v18-mini-actions a {
    width: 100%;
  }

  .dash-v18-hero h1,
  .join-v18-copy h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .dash-v18-hero p,
  .join-v18-copy p {
    font-size: 17px;
  }
}

/* SHARE BUTTONS WITH ICONS V19 */
.share-buttons-v19 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.share-btn-v19 {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 13px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  text-decoration: none;
  font-weight: 950;
  font-size: 13px;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.share-btn-v19:hover {
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.38);
}

.share-btn-v19.whatsapp {
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.28);
}

.share-btn-v19.telegram {
  background: rgba(56,189,248,.14);
  border-color: rgba(56,189,248,.28);
}

.share-btn-v19.instagram {
  background: linear-gradient(135deg, rgba(244,63,94,.18), rgba(168,85,247,.16));
  border-color: rgba(244,63,94,.28);
}

.share-btn-v19.copy,
.share-btn-v19.native {
  background: rgba(255,255,255,.07);
}

.share-btn-v19.is-done {
  background: rgba(34,197,94,.18);
  border-color: rgba(34,197,94,.42);
  color: #86efac;
}

.share-ico {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 560px) {
  .share-buttons-v19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .share-btn-v19 {
    width: 100%;
  }
}

/* INVITE CODE + ACCESS KEY UX V20 */
.join-v18-helpbox,
.v20-invite-box,
.v20-key-form,
.v20-admin-group-data > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.join-v18-helpbox {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
}

.join-v18-helpbox strong {
  color: var(--accent);
}

.join-v18-helpbox span {
  color: var(--muted);
  font-weight: 900;
}

.join-v18-form label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: -2px;
}

.admin-groups-grid-v20 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.v20-admin-group {
  display: grid;
  gap: 16px;
}

.v20-admin-group-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v20-admin-group-data > div {
  padding: 15px;
}

.v20-admin-group-data span,
.v20-invite-box span,
.v20-key-form label {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.v20-admin-group-data strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.v20-admin-group-data small,
.v20-invite-box p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.v20-invite-box {
  padding: 15px;
}

.v20-invite-box p {
  margin-bottom: 0;
}

.v20-key-form {
  padding: 15px;
}

.v20-key-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  margin-top: 8px;
  background: rgba(2,6,23,.72);
  color: var(--text);
  font: inherit;
  outline: none;
}

.v20-key-form input:focus {
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 0 4px rgba(56,189,248,.09);
}

.v20-key-form button {
  min-height: 44px;
  margin-top: 10px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  background: var(--accent);
  color: #03131f;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 980px) {
  .admin-groups-grid-v20,
  .v20-admin-group-data {
    grid-template-columns: 1fr;
  }
}

/* ROLE NAVIGATION SECURITY V21 */
.owner-only-link {
  border: 1px solid rgba(244, 63, 94, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: #fda4af !important;
}

.nav a[href="/organizador/grupos"],
header a[href="/organizador/grupos"] {
  color: var(--accent);
}

/* ORGANIZER PREMIUM PANEL V22 */
.premium-active-v22,
.v22-org-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.v22-kicker {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.premium-active-v22 h1,
.v22-org-hero h1,
.owner-admin-v22 h1 {
  max-width: 820px;
  margin: 16px 0;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.premium-active-v22 p,
.v22-org-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.v22-actions,
.v22-org-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.v22-actions a,
.v22-org-actions a,
.v22-empty-organizer a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
  background: var(--accent);
  color: #03131f;
}

.v22-actions a.secondary,
.v22-org-actions a.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.v22-active-card,
.v22-org-summary,
.v22-organizer-benefits article,
.v22-empty-organizer,
.v22-org-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.68);
}

.v22-active-card,
.v22-org-summary {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 38%),
    rgba(15, 23, 42, 0.76);
}

.v22-active-card span,
.v22-org-summary span {
  color: var(--accent);
  font-weight: 950;
  font-size: 13px;
}

.v22-active-card strong,
.v22-org-summary strong {
  display: block;
  margin: 8px 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.v22-active-card small,
.v22-org-summary small,
.v22-organizer-benefits span {
  color: var(--muted);
  line-height: 1.45;
}

.v22-organizer-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.v22-organizer-benefits article {
  padding: 18px;
}

.v22-organizer-benefits strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.v22-empty-organizer {
  margin-top: 28px;
  padding: 28px;
}

.v22-empty-organizer h2 {
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.065em;
}

.v22-empty-organizer p {
  color: var(--muted);
}

.admin-groups-grid-v22 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.v22-org-card {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.v22-org-card header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.v22-org-card header span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.v22-org-card h2 {
  margin: 7px 0 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.v22-org-card p,
.v22-org-codebox small {
  color: var(--muted);
  line-height: 1.45;
}

.v22-org-card code {
  border: 1px solid rgba(56,189,248,.26);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--accent);
  background: rgba(56,189,248,.08);
}

.v22-org-stats,
.v22-org-codebox {
  display: grid;
  gap: 10px;
}

.v22-org-stats {
  grid-template-columns: repeat(3, 1fr);
}

.v22-org-stats span,
.v22-org-codebox > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  background: rgba(255,255,255,.045);
}

.v22-org-stats strong,
.v22-org-codebox strong,
.v22-org-codebox span {
  display: block;
}

.v22-org-codebox {
  grid-template-columns: repeat(2, 1fr);
}

.v22-org-codebox span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.v22-org-codebox strong {
  margin-top: 5px;
}

.v22-share-details,
.v22-key-details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.035);
}

.v22-share-details summary,
.v22-key-details summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 950;
}

@media (max-width: 1050px) {
  .premium-active-v22,
  .v22-org-hero,
  .admin-groups-grid-v22 {
    grid-template-columns: 1fr;
  }

  .v22-organizer-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .v22-organizer-benefits,
  .v22-org-stats,
  .v22-org-codebox {
    grid-template-columns: 1fr;
  }

  .v22-actions,
  .v22-org-actions {
    display: grid;
  }

  .v22-actions a,
  .v22-org-actions a {
    width: 100%;
  }
}

/* CREATE GROUP V25 - ORGANIZER FAANG */
.create-group-v25 {
  overflow: hidden;
}

.create-v25-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.create-v25-hero h1 {
  max-width: 820px;
  margin: 16px 0;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.create-v25-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.create-v25-summary,
.form-card-v25,
.create-v25-preview {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.68);
}

.create-v25-summary {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.16), transparent 38%),
    rgba(15,23,42,.76);
}

.create-v25-summary span,
.form-card-v25 > span,
.create-v25-preview span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.create-v25-summary strong {
  display: block;
  margin: 8px 0;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.create-v25-summary small,
.create-v25-preview li,
.form-card-v25 label small {
  color: var(--muted);
  line-height: 1.45;
}

.create-v25-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.create-v25-main {
  display: grid;
  gap: 18px;
}

.form-card-v25 {
  padding: 22px;
}

.form-card-v25 label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 950;
}

.form-card-v25 input,
.form-card-v25 textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(2,6,23,.72);
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-card-v25 input {
  min-height: 54px;
  padding: 0 16px;
}

.form-card-v25 textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.form-card-v25 input:focus,
.form-card-v25 textarea:focus {
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 0 4px rgba(56,189,248,.09);
}

.scoring-mode-grid-v25 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.mode-card-v25 {
  margin-top: 0 !important;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.045);
  cursor: pointer;
}

.mode-card-v25 input {
  width: auto;
  min-height: auto;
}

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

.mode-card-v25 strong {
  color: var(--text);
  margin-top: 8px;
  font-size: 20px;
}

.mode-card-v25.locked-mode {
  opacity: .55;
  cursor: not-allowed;
}

.custom-scoring-v25 {
  margin-top: 18px;
}

.score-input-grid-v25 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.score-input-grid-v25 label {
  margin-top: 0;
}

.create-v25-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.create-v25-preview {
  padding: 22px;
}

.create-v25-preview h2 {
  margin: 12px 0 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.create-v25-preview ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.create-v25-side button,
.create-v25-side a {
  min-height: 52px;
  border-radius: 16px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  text-decoration: none;
}

.create-v25-side button {
  border: 0;
  background: var(--accent);
  color: #03131f;
  cursor: pointer;
}

.create-v25-side a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

@media (max-width: 1050px) {
  .create-v25-hero,
  .create-v25-grid {
    grid-template-columns: 1fr;
  }

  .create-v25-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .scoring-mode-grid-v25,
  .score-input-grid-v25 {
    grid-template-columns: 1fr;
  }

  .create-v25-hero h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .create-v25-hero p {
    font-size: 17px;
  }
}

/* GROUP DELETE + SCORING LOCK V26 */
.v26-delete-details {
  border: 1px solid rgba(244, 63, 94, .24);
  border-radius: 18px;
  padding: 14px;
  background: rgba(244, 63, 94, .045);
}

.v26-delete-details summary {
  cursor: pointer;
  color: #fb7185;
  font-weight: 950;
}

.v26-delete-warning {
  margin-top: 14px;
  border: 1px solid rgba(244, 63, 94, .26);
  border-radius: 16px;
  padding: 14px;
  background: rgba(244, 63, 94, .06);
}

.v26-delete-warning strong {
  display: block;
  color: #fda4af;
  margin-bottom: 6px;
}

.v26-delete-warning p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.v26-delete-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.v26-delete-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 950;
}

.v26-delete-form input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(2,6,23,.74);
  color: var(--text);
  font: inherit;
  outline: none;
}

.v26-delete-form input[type="text"]:focus {
  border-color: rgba(244,63,94,.55);
  box-shadow: 0 0 0 4px rgba(244,63,94,.09);
}

.v26-checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  border: 1px solid rgba(244,63,94,.24);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.035);
}

.v26-checkbox input {
  width: 18px;
  height: 18px;
}

.v26-delete-form button {
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  background: #fb7185;
  color: #19070b;
  font-weight: 950;
  cursor: pointer;
}

.custom-scoring-v25 .safe-notice {
  border-color: rgba(34,197,94,.24);
}

/* HOME COUNTDOWN + OWNER DELETE VISIBILITY V27 */
.home-v27-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.home-v27-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.13), transparent 36%),
    rgba(15, 23, 42, .72);
}

.home-v27-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.home-v27-copy h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.home-v27-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.home-v27-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.home-v27-actions a,
.home-v27-countdown-strip a,
.home-v27-cards a {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
  background: var(--accent);
  color: #03131f;
}

.home-v27-actions a.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.home-v27-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-v27-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}

.home-v27-live-card {
  border: 1px solid rgba(56,189,248,.28);
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.20), transparent 38%),
    rgba(2,6,23,.72);
}

.home-v27-live-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.home-v27-live-head strong {
  color: var(--text);
  font-size: 18px;
}

.home-v27-live-head span {
  color: #22c55e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.wc-countdown-v27 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.wc-countdown-v27 div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 8px;
  text-align: center;
  background: rgba(255,255,255,.045);
}

.wc-countdown-v27 strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.07em;
}

.wc-countdown-v27 span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.home-v27-match {
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 18px;
  padding: 14px;
  background: rgba(34,197,94,.055);
  margin: 14px 0;
}

.home-v27-match span,
.home-v27-match small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.home-v27-match strong {
  display: block;
  margin: 6px 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.home-v27-ranking {
  display: grid;
  gap: 8px;
}

.home-v27-ranking div {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.045);
}

.home-v27-countdown-strip {
  margin: 18px 0;
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 24px;
  padding: 20px;
  background: rgba(34,197,94,.055);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.home-v27-countdown-strip span,
.home-v27-countdown-strip strong {
  display: block;
}

.home-v27-countdown-strip span {
  color: var(--accent);
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
}

.home-v27-countdown-strip strong {
  margin-top: 4px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.sponsor-rail,
.sponsor-rail-premium {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 18px 20px;
  border: 1px solid rgba(94, 234, 212, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, .12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(52, 211, 153, .10), transparent 24%),
    linear-gradient(145deg, rgba(2, 6, 23, .72), rgba(11, 18, 36, .88)),
    rgba(11, 18, 36, .78);
  box-shadow: 0 20px 50px rgba(2, 6, 23, .22);
  overflow: hidden;
}

.sponsor-rail[hidden] {
  display: none !important;
}

.sponsor-rail-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.sponsor-rail-copy strong {
  display: block;
  max-width: 420px;
  color: #e5f7ff;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: 0;
}

.sponsor-pill,
.sponsor-rail-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, .20);
  background: rgba(8, 15, 28, .64);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sponsor-rail-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.sponsor-rail-stage {
  min-width: 0;
  overflow: hidden;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.sponsor-logo-track {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  padding: 3px 2px 8px;
}

.sponsor-logo-card {
  position: relative;
  flex: 0 0 clamp(136px, 17vw, 192px);
  height: clamp(76px, 8vw, 88px);
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  border: 1px solid rgba(226, 232, 240, .18);
  border-radius: 16px;
  background: rgba(248, 250, 252, .96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    0 10px 28px rgba(15, 23, 42, .10);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sponsor-logo-card.is-clickable {
  cursor: pointer;
}

.sponsor-logo-card.is-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, .46);
  box-shadow:
    0 16px 34px rgba(34, 211, 238, .12),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.sponsor-logo-card.is-clickable:focus-visible {
  outline: 3px solid rgba(34, 211, 238, .78);
  outline-offset: 3px;
}

.sponsor-logo-card img {
  display: block;
  max-width: 80%;
  max-height: 52px;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.03);
}

.sponsor-card-chip {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(3, 7, 18, .88);
  color: #e2e8f0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.sponsor-logo-card.is-clickable:hover .sponsor-card-chip,
.sponsor-logo-card.is-clickable:focus-visible .sponsor-card-chip {
  opacity: 1;
  transform: translateY(0);
}

.home-v27-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.home-v27-steps article,
.home-v27-cards article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, .68);
}

.home-v27-steps article {
  padding: 18px;
}

.home-v27-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #03131f;
  margin-bottom: 12px;
}

.home-v27-steps span {
  color: var(--muted);
  font-weight: 950;
}

.home-v27-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-v27-cards article {
  padding: 24px;
}

.home-v27-cards article.featured {
  border-color: rgba(34,197,94,.30);
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.13), transparent 40%),
    rgba(15,23,42,.72);
}

.home-v27-cards span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v27-cards h2 {
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-v27-cards p,
.home-v27-cards li,
.home-v27-price small,
.home-v27-share-note span {
  color: var(--muted);
  line-height: 1.45;
}

.home-v27-cards ul {
  margin: 14px 0;
  padding-left: 18px;
}

.home-v27-price {
  border: 1px solid rgba(56,189,248,.24);
  border-radius: 18px;
  padding: 16px;
  margin: 16px 0;
  background: rgba(56,189,248,.07);
}

.home-v27-price strong {
  display: block;
  font-size: 44px;
  letter-spacing: -0.075em;
}

.home-v27-price small {
  display: block;
  font-weight: 900;
}

.home-v27-share-note {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.045);
  margin: 14px 0;
}

.home-v27-legal {
  margin-top: 18px;
}

.v27-lock-status {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  background: rgba(255,255,255,.04);
}

.v27-lock-status strong,
.v27-lock-status span {
  display: block;
}

.v27-lock-status strong {
  color: var(--text);
  margin-bottom: 5px;
}

.v27-lock-status span {
  color: var(--muted);
  line-height: 1.4;
}

.v27-lock-status.is-locked {
  border-color: rgba(34,197,94,.24);
  background: rgba(34,197,94,.055);
}

.v27-lock-status.is-open {
  border-color: rgba(56,189,248,.24);
  background: rgba(56,189,248,.055);
}

@media (max-width: 1080px) {
  .sponsor-rail,
  .sponsor-rail-premium {
    grid-template-columns: 1fr;
  }

  .home-v27-hero,
  .home-v27-cards {
    grid-template-columns: 1fr;
  }

  .home-v27-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-v27-countdown-strip {
    display: grid;
  }

  .home-v27-countdown-strip a {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .home-v27-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 22px;
  }

  .home-v27-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .home-v27-copy p {
    font-size: 17px;
  }

  .home-v27-actions,
  .home-v27-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-v27-actions a {
    width: 100%;
  }

  .sponsor-logo-card {
    flex-basis: clamp(144px, 40vw, 170px);
  }

  .wc-countdown-v27 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DONATIONS FAANG V30 */
.donations-footer-link {
  color: var(--accent) !important;
  font-weight: 950 !important;
}

.donations-v30-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.donations-v30-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.13), transparent 36%),
    rgba(15, 23, 42, .72);
}

.donations-v30-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.donations-v30-copy h1 {
  max-width: 860px;
  margin: 22px 0 18px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.donations-v30-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.donations-v30-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.donations-v30-trust span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}

.donations-v30-card,
.donations-v30-options article,
.donations-v30-impact,
.donations-v30-final {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, .68);
}

.donations-v30-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 38%),
    rgba(2,6,23,.72);
}

.donations-v30-card > span,
.donations-v30-options article > span,
.donations-v30-impact span,
.donations-v30-final span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.donations-v30-card strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.donations-v30-card p,
.donations-v30-card small,
.donations-v30-options p,
.donations-v30-impact p {
  color: var(--muted);
  line-height: 1.45;
}

.donations-v30-primary,
.donations-v30-secondary,
.donations-v30-actions a,
.donations-v30-final a {
  min-height: 50px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
}

.donations-v30-primary {
  width: 100%;
  margin-top: 18px;
  background: var(--accent);
  color: #03131f;
}

.donations-v30-secondary {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--text);
}

.donations-v30-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.donations-v30-qr div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.045);
}

.donations-v30-qr span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.donations-v30-qr img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}

.donations-v30-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.donations-v30-options article {
  padding: 24px;
  position: relative;
}

.donations-v30-options article.recommended {
  border-color: rgba(34,197,94,.38);
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.14), transparent 42%),
    rgba(15,23,42,.72);
  transform: translateY(-6px);
}

.donations-v30-options strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.075em;
}

.donations-v30-options h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.donations-v30-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.donations-v30-actions a {
  background: var(--accent);
  color: #03131f;
}

.donations-v30-actions a.secondary,
.donations-v30-final a.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--text);
}

.donations-v30-impact {
  margin-top: 18px;
  padding: 28px;
}

.donations-v30-impact h2 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.donations-v30-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.donations-v30-impact-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.donations-v30-impact-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.donations-v30-final {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at left, rgba(34,197,94,.12), transparent 35%),
    rgba(15,23,42,.72);
}

.donations-v30-final strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.donations-v30-final div:last-child {
  display: grid;
  gap: 10px;
}

.donations-v30-final a {
  background: var(--accent);
  color: #03131f;
}

.donations-v30-legal {
  margin-top: 18px;
}

@media (max-width: 1120px) {
  .donations-v30-hero,
  .donations-v30-final {
    grid-template-columns: 1fr;
  }

  .donations-v30-options,
  .donations-v30-impact-grid {
    grid-template-columns: 1fr;
  }

  .donations-v30-options article.recommended {
    transform: none;
  }
}

@media (max-width: 650px) {
  .donations-v30-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 22px;
  }

  .donations-v30-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .donations-v30-copy p {
    font-size: 17px;
  }

  .donations-v30-actions,
  .donations-v30-qr {
    grid-template-columns: 1fr;
  }
}

/* DONATIONS FAANG V33 */
.donations-footer-link {
  color: var(--accent) !important;
  font-weight: 950 !important;
}

.donations-v30-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.donations-v30-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.13), transparent 36%),
    rgba(15, 23, 42, .72);
}

.donations-v30-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.donations-v30-copy h1 {
  max-width: 860px;
  margin: 22px 0 18px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.donations-v30-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.donations-v30-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.donations-v30-trust span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}

.donations-v30-card,
.donations-v30-options article,
.donations-v30-impact,
.donations-v30-final {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, .68);
}

.donations-v30-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 38%),
    rgba(2,6,23,.72);
}

.donations-v30-card > span,
.donations-v30-options article > span,
.donations-v30-impact span,
.donations-v30-final span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.donations-v30-card strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.donations-v30-card p,
.donations-v30-card small,
.donations-v30-options p,
.donations-v30-impact p {
  color: var(--muted);
  line-height: 1.45;
}

.donations-v30-primary,
.donations-v30-secondary,
.donations-v30-actions a,
.donations-v30-final a {
  min-height: 50px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
}

.donations-v30-primary {
  width: 100%;
  margin-top: 18px;
  background: var(--accent);
  color: #03131f;
}

.donations-v30-secondary {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--text);
}

.donations-v30-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.donations-v30-qr div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.045);
}

.donations-v30-qr span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.donations-v30-qr img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}

.donations-v30-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.donations-v30-options article {
  padding: 24px;
  position: relative;
}

.donations-v30-options article.recommended {
  border-color: rgba(34,197,94,.38);
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.14), transparent 42%),
    rgba(15,23,42,.72);
  transform: translateY(-6px);
}

.donations-v30-options strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.075em;
}

.donations-v30-options h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.donations-v30-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.donations-v30-actions a {
  background: var(--accent);
  color: #03131f;
}

.donations-v30-actions a.secondary,
.donations-v30-final a.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--text);
}

.donations-v30-impact {
  margin-top: 18px;
  padding: 28px;
}

.donations-v30-impact h2 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.donations-v30-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.donations-v30-impact-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.donations-v30-impact-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.donations-v30-final {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at left, rgba(34,197,94,.12), transparent 35%),
    rgba(15,23,42,.72);
}

.donations-v30-final strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.donations-v30-final div:last-child {
  display: grid;
  gap: 10px;
}

.donations-v30-final a {
  background: var(--accent);
  color: #03131f;
}

.donations-v30-legal {
  margin-top: 18px;
}

@media (max-width: 1120px) {
  .donations-v30-hero,
  .donations-v30-final {
    grid-template-columns: 1fr;
  }

  .donations-v30-options,
  .donations-v30-impact-grid {
    grid-template-columns: 1fr;
  }

  .donations-v30-options article.recommended {
    transform: none;
  }
}

@media (max-width: 650px) {
  .donations-v30-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 22px;
  }

  .donations-v30-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .donations-v30-copy p {
    font-size: 17px;
  }

  .donations-v30-actions,
  .donations-v30-qr {
    grid-template-columns: 1fr;
  }
}

/* DONATIONS FAANG V34 */
.donations-footer-link {
  color: var(--accent) !important;
  font-weight: 950 !important;
}

.donations-v30-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.donations-v30-hero {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.13), transparent 36%),
    rgba(15, 23, 42, .72);
}

.donations-v30-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.donations-v30-copy h1 {
  max-width: 860px;
  margin: 22px 0 18px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.donations-v30-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.donations-v30-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.donations-v30-trust span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}

.donations-v30-card,
.donations-v30-options article,
.donations-v30-impact,
.donations-v30-final {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, .68);
}

.donations-v30-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 38%),
    rgba(2,6,23,.72);
}

.donations-v30-card > span,
.donations-v30-options article > span,
.donations-v30-impact span,
.donations-v30-final span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.donations-v30-card strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.donations-v30-card p,
.donations-v30-card small,
.donations-v30-options p,
.donations-v30-impact p {
  color: var(--muted);
  line-height: 1.45;
}

.donations-v30-primary,
.donations-v30-secondary,
.donations-v30-actions a,
.donations-v30-final a {
  min-height: 50px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
}

.donations-v30-primary {
  width: 100%;
  margin-top: 18px;
  background: var(--accent);
  color: #03131f;
}

.donations-v30-secondary {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--text);
}

.donations-v30-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.donations-v30-qr div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.045);
}

.donations-v30-qr span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.donations-v30-qr img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}

.donations-v30-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.donations-v30-options article {
  padding: 24px;
  position: relative;
}

.donations-v30-options article.recommended {
  border-color: rgba(34,197,94,.38);
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.14), transparent 42%),
    rgba(15,23,42,.72);
  transform: translateY(-6px);
}

.donations-v30-options strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.075em;
}

.donations-v30-options h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.donations-v30-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.donations-v30-actions a {
  background: var(--accent);
  color: #03131f;
}

.donations-v30-actions a.secondary,
.donations-v30-final a.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  color: var(--text);
}

.donations-v30-impact {
  margin-top: 18px;
  padding: 28px;
}

.donations-v30-impact h2 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.donations-v30-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.donations-v30-impact-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.donations-v30-impact-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.donations-v30-final {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at left, rgba(34,197,94,.12), transparent 35%),
    rgba(15,23,42,.72);
}

.donations-v30-final strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.donations-v30-final div:last-child {
  display: grid;
  gap: 10px;
}

.donations-v30-final a {
  background: var(--accent);
  color: #03131f;
}

.donations-v30-legal {
  margin-top: 18px;
}

@media (max-width: 1120px) {
  .donations-v30-hero,
  .donations-v30-final {
    grid-template-columns: 1fr;
  }

  .donations-v30-options,
  .donations-v30-impact-grid {
    grid-template-columns: 1fr;
  }

  .donations-v30-options article.recommended {
    transform: none;
  }
}

@media (max-width: 650px) {
  .donations-v30-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 22px;
  }

  .donations-v30-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .donations-v30-copy p {
    font-size: 17px;
  }

  .donations-v30-actions,
  .donations-v30-qr {
    grid-template-columns: 1fr;
  }
}

/* INVITE AUTO FLOW V35 */
.invite-v35-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.invite-v35-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.13), transparent 36%),
    rgba(15, 23, 42, .72);
}

.invite-v35-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(56,189,248,.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.invite-v35-copy h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.invite-v35-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.invite-v35-description {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.invite-v35-description strong {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
}

.invite-v35-description p {
  margin: 0;
  font-size: 16px;
}

.invite-v35-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.invite-v35-steps div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.04);
}

.invite-v35-steps span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #03131f;
  font-weight: 950;
  margin-bottom: 12px;
}

.invite-v35-steps strong,
.invite-v35-steps small {
  display: block;
}

.invite-v35-steps small {
  margin-top: 6px;
  color: var(--muted);
}

.invite-v35-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.invite-v35-notice {
  margin-top: 20px;
}

.invite-v35-side {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.16), transparent 38%),
    rgba(2,6,23,.72);
}

.invite-v35-side > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.invite-v35-side strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.invite-v35-side p,
.invite-v35-side small {
  color: var(--muted);
  line-height: 1.45;
}

.invite-v35-side img {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
  margin: 18px 0;
}

@media (max-width: 980px) {
  .invite-v35-card,
  .invite-v35-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .invite-v35-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 22px;
  }

  .invite-v35-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .invite-v35-copy p {
    font-size: 17px;
  }

  .invite-v35-actions .btn {
    width: 100%;
  }
}

/* PREDIXO V36 INVITES + LIMITS + DONATIONS */
.donations-footer-link,
.mini-limit-link-v36 {
  color: var(--accent) !important;
  font-weight: 950 !important;
}

.donations-v36-shell,
.invite-v36-shell,
.limit-v36-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.donations-v36-hero,
.invite-v36-card,
.limit-v36-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.13), transparent 36%),
    rgba(15, 23, 42, .72);
}

.donations-v36-hero h1,
.invite-v36-card h1,
.limit-v36-card h1 {
  max-width: 860px;
  margin: 22px 0 18px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.085em;
}

.donations-v36-hero p,
.invite-v36-card p,
.limit-v36-card p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.donations-v36-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.donations-v36-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}

.donations-v36-card,
.invite-v36-card aside,
.limit-v36-card aside {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.16), transparent 38%),
    rgba(2,6,23,.72);
}

.donations-v36-card > span,
.invite-v36-card aside > span,
.limit-v36-card aside > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.donations-v36-card strong,
.invite-v36-card aside strong,
.limit-v36-card aside strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.donations-v36-card .btn,
.invite-v36-actions .btn,
.limit-v36-form .btn {
  margin-top: 10px;
}

.donations-v36-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.donations-v36-qr img,
.invite-v36-card aside img {
  width: 100%;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}

.donations-v36-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.donations-v36-options article,
.invite-v36-steps div,
.limit-v36-stats div,
.max-entries-ui-v36 {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.donations-v36-options article.is-recommended {
  border-color: rgba(34,197,94,.38);
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.14), transparent 42%),
    rgba(15,23,42,.72);
}

.donations-v36-options strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.075em;
  margin: 10px 0;
}

.donations-v36-options div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.donations-v36-options a {
  min-height: 42px;
  border-radius: 14px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #03131f;
  text-decoration: none;
  font-weight: 950;
}

.invite-v36-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.invite-v36-steps span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #03131f;
  font-weight: 950;
  margin-bottom: 12px;
}

.invite-v36-steps strong,
.invite-v36-steps small {
  display: block;
}

.invite-v36-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.limit-v36-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.limit-v36-form label {
  display: grid;
  gap: 8px;
}

.limit-v36-form select {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(2,6,23,.8);
  color: var(--text);
  padding: 0 16px;
  font-weight: 900;
}

.limit-v36-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.limit-v36-stats span {
  display: block;
  font-size: 34px;
  font-weight: 950;
}

.mini-limit-link-v36 {
  margin-left: 8px !important;
  margin-top: 8px !important;
}

@media (max-width: 980px) {
  .donations-v36-hero,
  .invite-v36-card,
  .limit-v36-card,
  .donations-v36-options,
  .invite-v36-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .donations-v36-shell,
  .invite-v36-shell,
  .limit-v36-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 22px;
  }

  .donations-v36-hero h1,
  .invite-v36-card h1,
  .limit-v36-card h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .donations-v36-qr,
  .limit-v36-stats {
    grid-template-columns: 1fr;
  }
}

/* PREDIXO V37 LEGAL TERMS + ACCEPTANCE */
.legal-v37-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 46px;
}

.legal-v37-card {
  border: 1px solid var(--line, rgba(148,163,184,.22));
  border-radius: 32px;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.10), transparent 34%),
    rgba(15, 23, 42, .74);
  color: var(--text, #e5e7eb);
}

.legal-v37-card header {
  margin-bottom: 28px;
}

.legal-v37-card h1 {
  max-width: 980px;
  margin: 18px 0 14px;
  font-size: clamp(42px, 6.6vw, 78px);
  line-height: .94;
  letter-spacing: -0.075em;
}

.legal-v37-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-v37-card p,
.legal-v37-card li {
  color: var(--muted, #94a3b8);
  font-size: 17px;
  line-height: 1.72;
}

.legal-v37-card a {
  color: var(--accent, #38bdf8);
  font-weight: 900;
}

.legal-v37-card ul {
  padding-left: 22px;
}

.legal-acceptance-v37 {
  margin: 18px 0;
  border: 1px solid rgba(56,189,248,.26);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.10), transparent 42%),
    rgba(2,6,23,.42);
}

.legal-acceptance-v37 label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.legal-acceptance-v37 input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent, #38bdf8);
  flex: 0 0 auto;
}

.legal-acceptance-v37 span {
  color: var(--muted, #94a3b8);
  font-size: 14px;
  line-height: 1.55;
}

.legal-acceptance-v37 a {
  color: var(--accent, #38bdf8);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 650px) {
  .legal-v37-shell {
    width: min(100% - 18px, 1120px);
    padding-top: 24px;
  }

  .legal-v37-card {
    border-radius: 24px;
  }

  .legal-v37-card h1 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

/* PREDIXO V40.2 WORLDCUP GROUPS */
.wc-v40-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 52px;
}

.wc-v40-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 26px;
}

.wc-v40-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .9;
  letter-spacing: -0.08em;
}

.wc-v40-hero p {
  max-width: 720px;
  color: var(--muted, #94a3b8);
  font-size: 18px;
  line-height: 1.55;
}

.wc-v40-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wc-v40-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.wc-v40-kpis article {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 23, 42, .68);
}

.wc-v40-kpis strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.wc-v40-kpis span {
  display: block;
  margin-top: 8px;
  color: var(--muted, #94a3b8);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wc-v40-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--muted, #94a3b8);
  font-weight: 800;
  font-size: 13px;
}

.wc-v40-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wc-v40-legend i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

.wc-v40-legend .direct {
  background: #22c55e;
}

.wc-v40-legend .third {
  background: #38bdf8;
}

.wc-v40-legend .out {
  background: #64748b;
}

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

.wc-v40-group-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .11), transparent 34%),
    rgba(15, 23, 42, .72);
}

.wc-v40-group-card > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.wc-v40-group-card > header span {
  color: var(--muted, #94a3b8);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.wc-v40-group-card > header strong {
  font-size: 30px;
  line-height: 1;
}

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

.wc-v40-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.wc-v40-table th,
.wc-v40-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
  text-align: center;
  font-size: 14px;
}

.wc-v40-table th {
  color: var(--muted, #94a3b8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.wc-v40-table .team-name {
  text-align: left;
  font-weight: 900;
}

.wc-v40-table tr.direct_zone td:first-child {
  box-shadow: inset 4px 0 0 #22c55e;
}

.wc-v40-table tr.third_place_zone td:first-child {
  box-shadow: inset 4px 0 0 #38bdf8;
}

.wc-v40-table tr.elimination_zone td:first-child {
  box-shadow: inset 4px 0 0 #64748b;
}

.wc-v40-alert,
.wc-v40-empty {
  border: 1px solid rgba(251, 191, 36, .28);
  border-radius: 22px;
  padding: 18px;
  margin: 16px 0;
  background: rgba(251, 191, 36, .08);
  color: #fde68a;
}

.wc-v40-alert strong {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .wc-v40-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .wc-v40-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wc-v40-shell {
    width: min(100% - 18px, 1240px);
    padding-top: 24px;
  }

  .wc-v40-kpis {
    grid-template-columns: 1fr;
  }
}

/* PREDIXO V40.3 WORLDCUP QUALIFICATION */
.wc-qualified-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.wc-qualified-board article {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .10), transparent 36%),
    rgba(15, 23, 42, .72);
}

.wc-qualified-board h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.wc-qualified-chip {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(2, 6, 23, .35);
}

.wc-qualified-chip strong {
  display: block;
  font-size: 16px;
}

.wc-qualified-chip span {
  display: block;
  margin-top: 5px;
  color: var(--muted, #94a3b8);
  font-size: 13px;
  font-weight: 800;
}

.wc-qualified-chip.direct {
  box-shadow: inset 4px 0 0 #22c55e;
}

.wc-qualified-chip.third {
  box-shadow: inset 4px 0 0 #38bdf8;
}

.wc-qualified-chip.waiting {
  box-shadow: inset 4px 0 0 #f59e0b;
}

.wc-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.wc-status.DIRECT {
  background: rgba(34, 197, 94, .14);
  color: #86efac;
}

.wc-status.BEST_THIRD {
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc;
}

.wc-status.THIRD_WAITING {
  background: rgba(245, 158, 11, .14);
  color: #fcd34d;
}

.wc-status.ELIMINATED {
  background: rgba(100, 116, 139, .16);
  color: #cbd5e1;
}

.wc-v40-legend .waiting {
  background: #f59e0b;
}

.wc-v40-table tr.DIRECT td:first-child {
  box-shadow: inset 4px 0 0 #22c55e;
}

.wc-v40-table tr.BEST_THIRD td:first-child {
  box-shadow: inset 4px 0 0 #38bdf8;
}

.wc-v40-table tr.THIRD_WAITING td:first-child {
  box-shadow: inset 4px 0 0 #f59e0b;
}

.wc-v40-table tr.ELIMINATED td:first-child {
  box-shadow: inset 4px 0 0 #64748b;
}

@media (max-width: 900px) {
  .wc-qualified-board {
    grid-template-columns: 1fr;
  }
}

/* PREDIXO V40.4 WORLDCUP BRACKET */
.wc-bracket-readiness {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  padding: 18px;
  margin: 18px 0 22px;
  background: rgba(15, 23, 42, .72);
}

.wc-bracket-readiness strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.wc-bracket-readiness span {
  display: block;
  margin-top: 6px;
  color: var(--muted, #94a3b8);
  font-weight: 800;
}

.wc-bracket-readiness.READY_TO_MAP_OFFICIAL_BRACKET {
  border-color: rgba(34, 197, 94, .42);
  background: rgba(34, 197, 94, .08);
}

.wc-bracket-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(260px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.wc-bracket-round {
  min-width: 260px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .10), transparent 34%),
    rgba(15, 23, 42, .72);
  overflow: hidden;
}

.wc-bracket-round > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

.wc-bracket-round > header span {
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 18px;
}

.wc-bracket-round > header strong {
  min-width: 32px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc;
  font-size: 13px;
}

.wc-bracket-matches {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.wc-bracket-match {
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 18px;
  padding: 10px;
  background: rgba(2, 6, 23, .34);
}

.wc-bracket-match-code {
  margin-bottom: 8px;
  color: var(--muted, #94a3b8);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wc-bracket-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  border-radius: 14px;
  padding: 8px 10px;
  margin-top: 6px;
}

.wc-bracket-team.ready {
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .20);
}

.wc-bracket-team.placeholder {
  background: rgba(100, 116, 139, .10);
  border: 1px solid rgba(100, 116, 139, .18);
}

.wc-bracket-team span {
  font-weight: 950;
  font-size: 14px;
}

.wc-bracket-team small {
  color: var(--muted, #94a3b8);
  font-weight: 900;
}

.wc-bracket-next {
  margin-top: 8px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
}

.wc-bracket-next.muted {
  color: #94a3b8;
}

@media (max-width: 1100px) {
  .wc-bracket-board {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }
}

@media (max-width: 760px) {
  .wc-bracket-board {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
}

/* PREDIXO V40.5 WORLDCUP RESULTS ADMIN */
.wc-results-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.wc-result-card {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .10), transparent 34%),
    rgba(15, 23, 42, .72);
}

.wc-result-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.wc-result-card > header strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.wc-result-card > header span {
  display: block;
  margin-top: 5px;
  color: var(--muted, #94a3b8);
  font-size: 13px;
  font-weight: 800;
}

.wc-result-state {
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.wc-result-state.played {
  background: rgba(34, 197, 94, .14);
  color: #86efac;
}

.wc-result-state.pending {
  background: rgba(245, 158, 11, .14);
  color: #fcd34d;
}

.wc-result-form {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 12px;
  align-items: end;
}

.wc-result-form label {
  display: grid;
  gap: 7px;
}

.wc-result-form label span {
  color: var(--muted, #94a3b8);
  font-size: 13px;
  font-weight: 900;
}

.wc-result-form input[type="number"] {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .24);
  background: rgba(2, 6, 23, .45);
  color: var(--text, #e5e7eb);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
  outline: none;
}

.wc-result-vs {
  min-height: 48px;
  min-width: 52px;
  display: grid;
  place-items: center;
  color: var(--muted, #94a3b8);
  font-weight: 950;
}

.wc-v40-alert.success {
  border-color: rgba(34, 197, 94, .30);
  background: rgba(34, 197, 94, .10);
  color: #bbf7d0;
}

@media (max-width: 860px) {
  .wc-result-form {
    grid-template-columns: 1fr;
  }

  .wc-result-vs {
    min-height: 24px;
  }

  .wc-result-card > header {
    flex-direction: column;
  }
}

/* PREDIXO V40.6 WORLDCUP SCORING */
.wc-scoring-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  padding: 18px;
  margin: 20px 0;
  background: rgba(15, 23, 42, .72);
}

.wc-scoring-action span {
  color: var(--muted, #94a3b8);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

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

/* PREDIXO V40.7 WORLDCUP RANKING IMPACT */
.wc-mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.wc-hit-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.wc-hit-status.EXACT {
  background: rgba(34, 197, 94, .14);
  color: #86efac;
}

.wc-hit-status.OUTCOME {
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc;
}

.wc-hit-status.MISS {
  background: rgba(100, 116, 139, .16);
  color: #cbd5e1;
}

/* PREDIXO V40.8 WORLDCUP HUB */
.wc-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.wc-hub-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 38%),
    rgba(15, 23, 42, .72);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.wc-hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .42);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .18), transparent 42%),
    rgba(15, 23, 42, .86);
}

.wc-hub-card.admin {
  border-color: rgba(245, 158, 11, .30);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .12), transparent 38%),
    rgba(15, 23, 42, .72);
}

.wc-hub-card span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wc-hub-card strong {
  display: block;
  font-size: 28px;
  line-height: .95;
  letter-spacing: -0.06em;
}

.wc-hub-card p {
  color: var(--muted, #94a3b8);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.wc-hub-card em {
  align-self: end;
  justify-self: start;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wc-hub-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wc-hub-status,
.wc-hub-leaders {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 20px;
  background: rgba(15, 23, 42, .72);
}

.wc-hub-status header,
.wc-hub-leaders header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.wc-hub-status header span,
.wc-hub-leaders header span {
  color: var(--muted, #94a3b8);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wc-hub-status header strong,
.wc-hub-leaders header strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.wc-progress-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(100, 116, 139, .24);
  overflow: hidden;
  margin-bottom: 14px;
}

.wc-progress-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
}

.wc-hub-status p,
.wc-hub-muted {
  color: var(--muted, #94a3b8);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.wc-leader-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-top: 1px solid rgba(148, 163, 184, .12);
  color: inherit;
  text-decoration: none;
}

.wc-leader-row span {
  color: #7dd3fc;
  font-weight: 950;
}

.wc-leader-row strong {
  font-size: 14px;
}

.wc-leader-row em {
  color: #86efac;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

@media (max-width: 1100px) {
  .wc-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-hub-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wc-hub-grid {
    grid-template-columns: 1fr;
  }

  .wc-leader-row {
    grid-template-columns: 42px 1fr;
  }

  .wc-leader-row em {
    grid-column: 2;
  }
}

/* PREDIXO V40.9 WORLDCUP NAV */
.worldcup-nav-v409-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
  margin-left: 8px;
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc !important;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: .01em;
}

.worldcup-card-v409 {
  display: grid;
  gap: 10px;
  min-height: 170px;
  border: 1px solid rgba(56, 189, 248, .28);
  border-radius: 28px;
  padding: 22px;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .16), transparent 40%),
    rgba(15, 23, 42, .76);
}

.worldcup-card-v409 span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.worldcup-card-v409 strong {
  font-size: 28px;
  line-height: .95;
  letter-spacing: -0.06em;
}

.worldcup-card-v409 p {
  color: var(--muted, #94a3b8);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.worldcup-card-v409 em {
  justify-self: start;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(34, 197, 94, .14);
  color: #86efac;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

/* PREDIXO V41G WORLDCUP MATCHES */
.wc-entry-box {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 20px;
  margin: 22px 0;
  background: rgba(15, 23, 42, .72);
}

.wc-entry-box form {
  display: grid;
  gap: 10px;
}

.wc-entry-box label {
  color: var(--muted, #94a3b8);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .10em;
}

.wc-entry-box form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.wc-entry-box input {
  min-height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(2, 6, 23, .38);
  color: inherit;
  padding: 0 14px;
  font-weight: 800;
}

.wc-entry-box small {
  color: var(--muted, #94a3b8);
  font-weight: 700;
}

.wc-group-block {
  margin: 26px 0;
}

.wc-group-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.wc-group-header h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.wc-group-header span {
  color: var(--muted, #94a3b8);
  font-weight: 900;
}

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

.wc-match-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 26px;
  padding: 18px;
  background: rgba(15, 23, 42, .72);
}

.wc-match-card.closed {
  opacity: .78;
}

.wc-match-card header,
.wc-match-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wc-match-card header span,
.wc-match-card footer span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.wc-match-card header strong,
.wc-match-card footer strong {
  font-size: 12px;
  color: var(--muted, #94a3b8);
}

.wc-teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.wc-teams-row div {
  display: grid;
  gap: 4px;
}

.wc-teams-row div:last-child {
  text-align: right;
}

.wc-teams-row em {
  color: #7dd3fc;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}

.wc-teams-row strong {
  font-size: 16px;
  line-height: 1.15;
}

.wc-teams-row b {
  min-width: 52px;
  text-align: center;
  font-size: 20px;
}

.wc-pred-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: end;
  border-top: 1px solid rgba(148, 163, 184, .14);
  padding-top: 12px;
}

.wc-pred-form label {
  display: grid;
  gap: 6px;
}

.wc-pred-form label span {
  color: var(--muted, #94a3b8);
  font-size: 11px;
  font-weight: 950;
}

.wc-pred-form input {
  min-height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(2, 6, 23, .42);
  color: inherit;
  padding: 0 10px;
  font-weight: 950;
}

.wc-pred-form button {
  min-height: 38px;
  border: 0;
  border-radius: 14px;
  padding: 0 14px;
  background: #38bdf8;
  color: #020617;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .wc-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .wc-entry-box form > div,
  .wc-match-grid,
  .wc-pred-form {
    grid-template-columns: 1fr;
  }

  .wc-teams-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .wc-teams-row div:last-child {
    text-align: left;
  }
}

/* PREDIXO V41H MY WORLD CUP ENTRIES */
.wc-entry-grid-v41h {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wc-entry-card-v41h {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 38%),
    rgba(15, 23, 42, .74);
}

.wc-entry-card-v41h header {
  display: grid;
  gap: 8px;
}

.wc-entry-card-v41h header span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wc-entry-card-v41h header strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wc-entry-meta-v41h {
  display: grid;
  gap: 8px;
}

.wc-entry-meta-v41h p {
  margin: 0;
  color: var(--muted, #94a3b8);
  font-weight: 800;
  line-height: 1.45;
}

.wc-entry-meta-v41h code {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #e2e8f0;
  background: rgba(2, 6, 23, .42);
  border-radius: 10px;
  padding: 2px 7px;
}

.wc-entry-card-v41h footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-empty-state {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 28px;
  background: rgba(15, 23, 42, .74);
  margin-top: 22px;
}

.wc-empty-state h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.wc-empty-state p {
  color: var(--muted, #94a3b8);
  font-weight: 800;
  max-width: 760px;
}

@media (max-width: 1080px) {
  .wc-entry-grid-v41h {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wc-entry-grid-v41h {
    grid-template-columns: 1fr;
  }
}

/* PREDIXO V41I WORLDCUP ACCESS */
.wc-fast-access-v41i {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.wc-fast-card-v41i {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 38%),
    rgba(15, 23, 42, .74);
  transition: transform .18s ease, border-color .18s ease;
}

.wc-fast-card-v41i:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .48);
}

.wc-fast-card-v41i.primary {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .16), transparent 42%),
    rgba(15, 23, 42, .78);
  border-color: rgba(34, 197, 94, .30);
}

.wc-fast-card-v41i span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wc-fast-card-v41i strong {
  font-size: 30px;
  line-height: .95;
  letter-spacing: -0.06em;
}

.wc-fast-card-v41i p {
  color: var(--muted, #94a3b8);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.worldcup-nav-v41i {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px auto;
  max-width: 1180px;
  padding: 0 16px;
}

.worldcup-nav-v41i a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(56, 189, 248, .14);
  color: #7dd3fc !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 900px) {
  .wc-fast-access-v41i {
    grid-template-columns: 1fr;
  }
}

/* PREDIXO V41K WORLDCUP PROGRESS */
.wc-progress-v41k {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.wc-progress-v41k article {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 40%),
    rgba(15, 23, 42, .76);
}

.wc-progress-v41k article strong {
  display: block;
  font-size: 25px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wc-progress-v41k article span {
  display: block;
  color: var(--muted, #94a3b8);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-top: 8px;
}

.wc-progress-v41k[data-status="COMPLETE"] article:first-child {
  border-color: rgba(34, 197, 94, .38);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .16), transparent 42%),
    rgba(15, 23, 42, .78);
}

.wc-progress-v41k.is-error article:first-child {
  border-color: rgba(251, 191, 36, .42);
}

@media (max-width: 1100px) {
  .wc-progress-v41k {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wc-progress-v41k {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* PREDIXO V41L WORLDCUP AUTOSAVE */
.wc-pred-form {
  position: relative;
}

.wc-save-status-v41l {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  color: var(--muted, #94a3b8);
  background: rgba(148, 163, 184, .10);
}

.wc-pred-form[data-save-state="saving"] .wc-save-status-v41l {
  color: #7dd3fc;
  background: rgba(56, 189, 248, .14);
}

.wc-pred-form[data-save-state="saved"] .wc-save-status-v41l {
  color: #86efac;
  background: rgba(34, 197, 94, .14);
}

.wc-pred-form[data-save-state="error"] .wc-save-status-v41l {
  color: #fbbf24;
  background: rgba(251, 191, 36, .14);
}

/* PREDIXO V41M WORLDCUP LOCKS */
.wc-lock-note-v41m {
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(251, 191, 36, .10);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 900;
}

.wc-match-card.closed .wc-pred-form {
  display: none !important;
}

/* PREDIXO V41N WORLDCUP SCHEDULE ADMIN */
.wc-calendar-grid-v41n {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wc-calendar-card-v41n {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 20px;
  background: rgba(15, 23, 42, .76);
  display: grid;
  gap: 14px;
}

.wc-calendar-card-v41n.locked {
  border-color: rgba(251, 191, 36, .34);
}

.wc-calendar-card-v41n header {
  display: grid;
  gap: 6px;
}

.wc-calendar-card-v41n header span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.wc-calendar-card-v41n header strong {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.wc-calendar-card-v41n p {
  margin: 0;
  color: var(--muted, #94a3b8);
  font-weight: 800;
}

.wc-calendar-card-v41n form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-calendar-card-v41n label {
  display: grid;
  gap: 6px;
}

.wc-calendar-card-v41n label span {
  color: var(--muted, #94a3b8);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wc-calendar-card-v41n input {
  min-height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(2, 6, 23, .42);
  color: inherit;
  padding: 0 10px;
  font-weight: 850;
}

.wc-calendar-card-v41n button {
  grid-column: 1 / -1;
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  background: #38bdf8;
  color: #020617;
  font-weight: 950;
  cursor: pointer;
}

.wc-calendar-card-v41n footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted, #94a3b8);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .wc-calendar-grid-v41n,
  .wc-calendar-card-v41n form {
    grid-template-columns: 1fr;
  }
}

/* PREDIXO V41O WORLDCUP SCHEDULE IMPORT */
.wc-import-card-v41o,
.wc-import-help-v41o {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 22px;
  background: rgba(15, 23, 42, .76);
  margin-top: 22px;
}

.wc-import-card-v41o form {
  display: grid;
  gap: 14px;
}

.wc-import-card-v41o label {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.wc-import-card-v41o textarea {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(2, 6, 23, .48);
  color: inherit;
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
}

.wc-import-actions-v41o {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-import-help-v41o h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.wc-import-help-v41o pre {
  overflow: auto;
  border-radius: 18px;
  padding: 16px;
  background: rgba(2, 6, 23, .48);
  border: 1px solid rgba(148, 163, 184, .18);
}

.wc-import-help-v41o p {
  color: var(--muted, #94a3b8);
  font-weight: 800;
}

/* PREDIXO V41P WORLDCUP SCHEDULE STATUS EXPORT */
.wc-status-table-v41p {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  padding: 22px;
  background: rgba(15, 23, 42, .76);
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.wc-status-table-v41p header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.wc-status-table-v41p h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.05em;
}

.wc-status-table-v41p header span {
  color: #7dd3fc;
  font-weight: 950;
}

.wc-status-table-v41p article {
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 5px;
  background: rgba(2, 6, 23, .22);
}

.wc-status-table-v41p article strong {
  font-size: 15px;
}

.wc-status-table-v41p article span,
.wc-status-table-v41p article small,
.wc-status-empty-v41p {
  color: var(--muted, #94a3b8);
  font-weight: 800;
}

/* PREDIXO V41Q WORLDCUP CALENDAR HUB HEALTH */
.wc-admin-calendar-access-v41q {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 30px;
  padding: 24px;
  margin: 24px 0;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, .12), transparent 42%),
    rgba(15, 23, 42, .78);
}

.wc-admin-calendar-access-v41q header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.wc-admin-calendar-access-v41q span {
  color: #fbbf24;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wc-admin-calendar-access-v41q h2 {
  margin: 6px 0 6px;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.wc-admin-calendar-access-v41q p {
  margin: 0;
  color: var(--muted, #94a3b8);
  font-weight: 800;
}

.wc-admin-calendar-access-v41q > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-admin-calendar-access-v41q a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  text-decoration: none;
  color: #020617;
  background: #fbbf24;
  font-size: 12px;
  font-weight: 950;
}

.wc-admin-calendar-access-v41q a:nth-child(even) {
  background: rgba(251, 191, 36, .16);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, .26);
}

/* PREDIXO_PRIVATE_PUBLIC_BRIDGE_V2_SAFE
   Capa quirúrgica: alinea privadas con home público SIN borrar estilos legacy.
   No elimina bloques V9/V18/V22/V25: solo sobrescribe lo necesario.
*/
:root {
  --bg: #050816;
  --panel: rgba(11, 18, 36, 0.94);
  --panel2: rgba(15, 26, 51, 0.86);
  --line: rgba(148, 163, 184, 0.20);
  --text: #f8fafc;
  --muted: #9fb0cc;
  --cyan: #22d3ee;
  --blue: #38bdf8;
  --green: #34d399;
  --yellow: #facc15;
  --danger: #fb7185;
  --accent: var(--cyan);
  --accent2: var(--green);
}

body {
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, .18), transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(52, 211, 153, .12), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, .12), transparent 34rem),
    var(--bg) !important;
  padding-bottom: 104px;
  overflow-x: hidden;
}

.nav {
  position: sticky !important;
  top: 12px !important;
  left: auto !important;
  transform: none !important;
  z-index: 100 !important;
  width: min(1160px, calc(100% - 28px)) !important;
  margin: 12px auto 0 !important;
  padding: 14px 18px !important;
  border-radius: 22px !important;
  border: 1px solid var(--line) !important;
  background: rgba(5, 8, 22, .78) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.brand::before {
  content: "P";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #03101d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 950;
  flex: 0 0 auto;
}

.nav nav,
.inline-form {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.nav a,
.nav button {
  border-radius: 999px !important;
  padding: 10px 12px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.nav a:hover,
.nav button:hover {
  color: var(--text) !important;
  background: rgba(15, 23, 42, .95) !important;
}

.nav button,
.inline-form button {
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 16px !important;
  color: #03101d !important;
  background: linear-gradient(135deg, var(--cyan), var(--green)) !important;
  font-weight: 950 !important;
}

.owner-only-link {
  color: #fda4af !important;
  border: 1px solid rgba(244, 63, 94, .30) !important;
  background: rgba(244, 63, 94, .08) !important;
}

.nav a[href="/organizador/grupos"],
header a[href="/organizador/grupos"] {
  color: var(--cyan) !important;
}

.shell {
  width: min(1160px, calc(100% - 28px)) !important;
  min-height: auto !important;
  margin: 26px auto 80px !important;
  padding: 0 !important;
  display: block !important;
  place-items: initial !important;
}

.hero-card,
.auth-card {
  border-radius: 34px !important;
  border: 1px solid var(--line) !important;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, .14), transparent 30rem),
    linear-gradient(145deg, rgba(15, 23, 42, .94), rgba(6, 11, 26, .98)) !important;
  box-shadow: 0 30px 110px rgba(0,0,0,.34) !important;
}

.hero-card.wide,
.player-dashboard-v18,
.groups-page-v17,
.groups-page-v16,
.create-group-v25 {
  width: 100% !important;
}

.player-dashboard-v18,
.groups-page-v17,
.groups-page-v16,
.create-group-v25,
.join-page-v18 {
  padding: clamp(28px, 5vw, 58px) !important;
}

h1,
.dash-v18-hero h1,
.groups-v16-copy h1,
.v17-hero-copy h1,
.create-v25-hero h1,
.join-v18-copy h1 {
  letter-spacing: -0.065em !important;
  font-weight: 950 !important;
}

.subtitle,
.dash-v18-hero p,
.groups-v16-copy p,
.v17-hero-copy p,
.create-v25-hero p,
.join-v18-copy p {
  color: var(--muted) !important;
}

.pill,
.env,
.v16-kicker,
.v17-kicker,
.v22-kicker,
.dash-v18-kicker,
.join-v18-kicker {
  color: var(--cyan) !important;
  border-color: rgba(34, 211, 238, .34) !important;
  background: rgba(34, 211, 238, .10) !important;
}

.env {
  color: var(--muted) !important;
  background: rgba(148, 163, 184, .08) !important;
}

.dash-v18-primary,
.dash-v18-moment a,
.dash-v18-best a,
.join-v18-form button,
.v17-main-action,
.v17-pay-action,
.v22-actions a,
.v22-org-actions a,
.create-v25-side button,
.primary-action,
.actions a:not(.secondary),
.form button,
.pay-button {
  border: 0 !important;
  color: #03101d !important;
  background: linear-gradient(135deg, var(--cyan), var(--green)) !important;
  box-shadow: 0 18px 45px rgba(34, 211, 238, .16) !important;
}

.dash-v18-secondary,
.dash-v18-card-head a,
.dash-v18-mini-actions a,
.join-v18-form a,
.v17-secondary-action,
.v17-direct-pay,
.v22-actions a.secondary,
.v22-org-actions a.secondary,
.create-v25-side a,
.actions a.secondary,
.secondary-action {
  color: var(--text) !important;
  background: rgba(15, 23, 42, .92) !important;
  border: 1px solid var(--line) !important;
}

.dash-v18-moment,
.dash-v18-stats article,
.dash-v18-card,
.dash-v18-recent,
.join-v18-form,
.join-v18-steps article,
.v17-premium-card,
.v17-empty,
.v17-path-card,
.v17-emotion-strip,
.v17-bottom-cta,
.v22-active-card,
.v22-org-summary,
.v22-org-card,
.form-card-v25,
.create-v25-preview,
.create-v25-summary {
  border: 1px solid var(--line) !important;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, .10), transparent 18rem),
    rgba(11, 18, 36, .78) !important;
  border-radius: 26px !important;
}

.table-wrap {
  border-color: var(--line) !important;
  background: rgba(2, 6, 23, .42) !important;
}

th {
  color: var(--muted) !important;
}

code {
  color: var(--cyan) !important;
  background: rgba(34, 211, 238, .10) !important;
  border-color: rgba(34, 211, 238, .26) !important;
}

.legal-footer {
  width: min(1160px, calc(100% - 28px)) !important;
  margin: 0 auto 34px !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(148, 163, 184, .12);
  flex-wrap: wrap;
}

.legal-footer a {
  color: var(--muted) !important;
}

.legal-footer a:hover {
  color: var(--cyan) !important;
}

.quick-home {
  display: none !important;
}

.flash {
  z-index: 120 !important;
  background: rgba(11, 18, 36, .96) !important;
}

@media (max-width: 780px) {
  body {
    padding-bottom: 132px;
  }

  .nav {
    position: static !important;
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .nav nav {
    width: 100% !important;
  }

  .nav a,
  .nav button,
  .inline-form,
  .inline-form button {
    width: 100% !important;
    justify-content: center !important;
  }

  .shell {
    width: min(100% - 18px, 1160px) !important;
    margin-top: 14px !important;
  }

  .player-dashboard-v18,
  .groups-page-v17,
  .groups-page-v16,
  .create-group-v25,
  .join-page-v18 {
    padding: 22px !important;
  }
}


/* PREDIXO_INVITE_LANDING_UX_PATCH_START */
.invite-standing-preview {
  margin: 2rem auto 0;
  padding: 1.25rem;
  width: min(100%, 760px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.invite-standing-preview__header {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.invite-standing-preview__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.invite-standing-preview__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.05;
}

.invite-standing-preview__header p {
  margin: 0;
  opacity: 0.82;
  line-height: 1.5;
}

.invite-standing-preview__list {
  display: grid;
  gap: 0.65rem;
}

.invite-standing-preview__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.invite-standing-preview__rank {
  font-weight: 900;
  opacity: 0.72;
}

.invite-standing-preview__name {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invite-standing-preview__points {
  font-weight: 900;
}

.invite-standing-preview__empty {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.invite-standing-preview__empty strong {
  font-size: 1.05rem;
}

.invite-standing-preview__empty span {
  opacity: 0.82;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .invite-standing-preview {
    padding: 1rem;
    border-radius: 20px;
  }

  .invite-standing-preview__row {
    grid-template-columns: auto 1fr;
  }

  .invite-standing-preview__points {
    grid-column: 2;
  }
}
/* PREDIXO_INVITE_LANDING_UX_PATCH_END */


/* PREDIXO_SPONSOR_RAIL_FAANG_V1 */
.sponsor-rail-premium {
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 26px 0;
  padding: 20px;
  border: 1px solid rgba(56,189,248,.20);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,.14), transparent 34%),
    linear-gradient(135deg, rgba(15,23,42,.86), rgba(2,6,23,.82));
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.sponsor-rail-copy {
  min-width: 0;
}

.sponsor-pill {
  display: inline-flex;
  margin-bottom: 8px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sponsor-rail-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.sponsor-rail-copy small {
  display: block;
  color: #94a3b8;
  margin-top: 8px;
  font-weight: 800;
}

.sponsor-rail-stage {
  min-width: 0;
  overflow: hidden;
}

.sponsor-logo-track {
  display: flex;
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  padding: 4px;
  scroll-snap-type: x mandatory;
}

.sponsor-logo-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(220px, 72vw);
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.sponsor-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.44);
  background: rgba(56,189,248,.08);
}

.sponsor-logo-card img {
  max-width: 160px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-logo-card span {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 780px) {
  .sponsor-rail-premium {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .sponsor-logo-track {
    padding-bottom: 8px;
  }
}

/* GROUPS UX CSP SAFE FAANG V3 START */
.groups-ux-shell-v2 {
  width: min(1220px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 118px 0 80px !important;
}

.groups-ux-v2 {
  --gx-line: rgba(148, 163, 184, .18);
  --gx-line-strong: rgba(56, 189, 248, .34);
  --gx-text: #f8fafc;
  --gx-muted: #9fb0d5;
  --gx-brand: #38d9ff;
  --gx-brand-2: #43f5a6;
  --gx-radius: 30px;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(56, 189, 248, .18) !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, .18), transparent 34%),
    radial-gradient(circle at 94% 8%, rgba(67, 245, 166, .13), transparent 32%),
    linear-gradient(180deg, rgba(8, 15, 32, .96), rgba(2, 6, 23, .94)) !important;
  box-shadow: 0 30px 110px rgba(0, 0, 0, .34) !important;
  padding: clamp(18px, 3vw, 34px) !important;
  color: var(--gx-text) !important;
}

.groups-ux-v2,
.groups-ux-v2 * {
  box-sizing: border-box !important;
}

.groups-ux-v2 a {
  text-decoration: none !important;
}

.groups-ux-v2 h1,
.groups-ux-v2 h2,
.groups-ux-v2 h3,
.groups-ux-v2 p {
  margin-top: 0 !important;
}

.groups-ux-v2::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px) !important;
  background-size: 54px 54px !important;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 82%) !important;
  z-index: 0 !important;
}

.groups-ux-v2 > * {
  position: relative !important;
  z-index: 1 !important;
}

.gx-topline {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
}

.gx-pill,
.gx-env,
.gx-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid var(--gx-line-strong) !important;
  color: #7dd3fc !important;
  background: rgba(56, 189, 248, .09) !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.gx-env {
  max-width: 260px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #dbeafe !important;
  border-color: rgba(167, 139, 250, .34) !important;
  background: rgba(88, 28, 135, .18) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.gx-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.gx-hero-main,
.gx-premium-card,
.gx-stat-card,
.gx-path-card,
.gx-groups-head,
.gx-group-card,
.gx-empty-panel,
.gx-bottom-cta {
  border: 1px solid var(--gx-line) !important;
  border-radius: var(--gx-radius) !important;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, .10), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 42, .80), rgba(2, 6, 23, .62)) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22) !important;
}

.gx-hero-main {
  padding: clamp(24px, 4vw, 48px) !important;
  min-width: 0 !important;
}

.gx-kicker,
.gx-card-kicker,
.gx-premium-card > span,
.gx-path-card > span,
.gx-bottom-cta span {
  display: inline-flex !important;
  color: var(--gx-brand) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.gx-hero-main h1 {
  max-width: 860px !important;
  margin: 16px 0 16px !important;
  color: #fff !important;
  font-size: clamp(46px, 7.2vw, 88px) !important;
  line-height: .92 !important;
  letter-spacing: -.078em !important;
  font-weight: 1000 !important;
}

.gx-lead {
  max-width: 760px !important;
  margin: 0 !important;
  color: #c8d5f2 !important;
  font-size: clamp(16px, 1.7vw, 21px) !important;
  line-height: 1.58 !important;
  font-weight: 650 !important;
}

.gx-actions,
.gx-card-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

.gx-btn,
.gx-btn-soft,
.gx-card-action,
.gx-bottom-cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  padding: 0 19px !important;
  border-radius: 17px !important;
  border: 1px solid rgba(148, 163, 184, .23) !important;
  color: #e5edff !important;
  background: rgba(15, 23, 42, .70) !important;
  font-weight: 1000 !important;
  text-align: center !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.gx-btn,
.gx-card-action.primary {
  color: #031018 !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--gx-brand), var(--gx-brand-2)) !important;
  box-shadow: 0 18px 48px rgba(56, 189, 248, .22) !important;
}

.gx-btn:hover,
.gx-btn-soft:hover,
.gx-card-action:hover,
.gx-bottom-cta a:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(67, 245, 166, .50) !important;
}

.gx-trust-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 22px !important;
}

.gx-trust-row span {
  display: inline-flex !important;
  padding: 8px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(148, 163, 184, .18) !important;
  color: #dbeafe !important;
  background: rgba(15, 23, 42, .48) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

.gx-premium-card {
  padding: 24px !important;
  display: grid !important;
  align-content: start !important;
  gap: 14px !important;
  border-color: rgba(67, 245, 166, .22) !important;
}

.gx-premium-card h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(26px, 3vw, 42px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
}

.gx-premium-card p,
.gx-legal-note {
  margin: 0 !important;
  color: var(--gx-muted) !important;
  line-height: 1.55 !important;
}

.gx-price-box {
  display: grid !important;
  gap: 4px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(67, 245, 166, .26) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(67,245,166,.16), transparent 42%),
    rgba(67, 245, 166, .08) !important;
}

.gx-price-box small,
.gx-price-box span {
  color: var(--gx-muted) !important;
  font-weight: 850 !important;
}

.gx-price-box strong {
  color: #fff !important;
  font-size: 46px !important;
  line-height: 1 !important;
  letter-spacing: -.06em !important;
}

.gx-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

.gx-stat-card {
  padding: 18px !important;
  min-width: 0 !important;
}

.gx-stat-card span {
  display: block !important;
  color: var(--gx-muted) !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.gx-stat-card strong {
  display: block !important;
  margin: 8px 0 !important;
  color: #fff !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}

.gx-stat-card small {
  color: var(--gx-muted) !important;
  line-height: 1.4 !important;
}

.gx-empty-panel {
  margin-top: 22px !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.gx-empty-head {
  max-width: 820px !important;
}

.gx-empty-head h2,
.gx-groups-head h2 {
  margin: 12px 0 10px !important;
  color: #fff !important;
  font-size: clamp(30px, 4vw, 54px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
}

.gx-empty-head p {
  margin: 0 !important;
  color: #c8d5f2 !important;
  line-height: 1.62 !important;
  font-size: 16px !important;
}

.gx-path-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 22px !important;
}

.gx-path-card {
  padding: 22px !important;
}

.gx-path-card h3 {
  margin: 12px 0 8px !important;
  color: #fff !important;
  font-size: 27px !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
}

.gx-path-card p {
  color: var(--gx-muted) !important;
  line-height: 1.56 !important;
}

.gx-path-card .gx-card-action {
  margin-top: 10px !important;
}

.gx-path-premium {
  border-color: rgba(67, 245, 166, .32) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(67,245,166,.17), transparent 42%),
    linear-gradient(180deg, rgba(8,35,44,.84), rgba(2,6,23,.64)) !important;
}

.gx-emotion-strip {
  margin-top: 18px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(56, 189, 248, .22) !important;
  background: rgba(56, 189, 248, .08) !important;
}

.gx-emotion-strip strong {
  display: block !important;
  color: #fff !important;
  font-size: 20px !important;
  letter-spacing: -.02em !important;
}

.gx-emotion-strip span {
  display: block !important;
  margin-top: 6px !important;
  color: var(--gx-muted) !important;
  line-height: 1.5 !important;
}

.gx-groups-head {
  margin-top: 22px !important;
  padding: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.gx-group-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 18px !important;
}

.gx-group-card {
  position: relative !important;
  overflow: hidden !important;
  padding: 22px !important;
}

.gx-group-card::after {
  content: "" !important;
  position: absolute !important;
  right: -60px !important;
  top: -60px !important;
  width: 190px !important;
  height: 190px !important;
  border-radius: 999px !important;
  background: rgba(56, 189, 248, .13) !important;
  pointer-events: none !important;
}

.gx-group-card > * {
  position: relative !important;
  z-index: 1 !important;
}

.gx-group-head {
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  align-items: flex-start !important;
}

.gx-group-head span {
  display: inline-flex !important;
  color: var(--gx-brand) !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.gx-group-head h2 {
  margin: 8px 0 0 !important;
  color: #fff !important;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1 !important;
  letter-spacing: -.05em !important;
}

.gx-code {
  flex: 0 0 auto !important;
  padding: 8px 11px !important;
  border-radius: 999px !important;
  color: #67e8f9 !important;
  border: 1px solid rgba(56, 189, 248, .28) !important;
  background: rgba(56, 189, 248, .10) !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}

.gx-description {
  margin: 14px 0 0 !important;
  color: var(--gx-muted) !important;
  line-height: 1.55 !important;
}

.gx-card-stats {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 18px 0 !important;
}

.gx-card-stats span {
  min-width: 0 !important;
  padding: 14px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(148,163,184,.14) !important;
  background: rgba(2,6,23,.34) !important;
  color: var(--gx-muted) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.gx-card-stats strong {
  display: block !important;
  color: #fff !important;
  font-size: 26px !important;
  line-height: 1 !important;
  margin-bottom: 5px !important;
}

.gx-qr-row {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  margin-top: 18px !important;
  padding: 14px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(148,163,184,.14) !important;
  background: rgba(2,6,23,.32) !important;
}

.gx-qr-row img {
  width: 74px !important;
  height: 74px !important;
  border-radius: 16px !important;
  background: #fff !important;
  padding: 6px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.gx-qr-row span {
  color: var(--gx-muted) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.gx-share-wrap {
  margin-top: 14px !important;
}

.gx-share-wrap .share-buttons-v19 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.gx-share-wrap .share-btn-v19 {
  min-height: 38px !important;
  padding: 0 11px !important;
  font-size: 12px !important;
}

.gx-bottom-cta {
  margin-top: 22px !important;
  padding: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  border-color: rgba(67,245,166,.24) !important;
}

.gx-bottom-cta strong {
  display: block !important;
  margin-top: 8px !important;
  color: #fff !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1 !important;
  letter-spacing: -.05em !important;
}

.gx-bottom-cta p {
  margin: 8px 0 0 !important;
  color: var(--gx-muted) !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  .groups-ux-shell-v2 {
    width: min(100% - 24px, 1220px) !important;
  }

  .gx-hero,
  .gx-path-grid,
  .gx-group-grid {
    grid-template-columns: 1fr !important;
  }

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

  .gx-groups-head,
  .gx-bottom-cta {
    display: grid !important;
  }

  .gx-groups-head .gx-btn-soft,
  .gx-bottom-cta a {
    width: 100% !important;
  }
}

@media (max-width: 680px) {
  .groups-ux-shell-v2 {
    width: min(100% - 18px, 1220px) !important;
    padding-top: 96px !important;
  }

  .groups-ux-v2 {
    padding: 14px !important;
    border-radius: 26px !important;
  }

  .gx-topline {
    display: grid !important;
    justify-items: start !important;
  }

  .gx-hero-main,
  .gx-premium-card,
  .gx-empty-panel,
  .gx-groups-head,
  .gx-group-card,
  .gx-bottom-cta {
    border-radius: 24px !important;
    padding: 18px !important;
  }

  .gx-hero-main h1 {
    font-size: clamp(40px, 12vw, 58px) !important;
    letter-spacing: -.06em !important;
  }

  .gx-actions,
  .gx-card-actions {
    display: grid !important;
  }

  .gx-btn,
  .gx-btn-soft,
  .gx-card-action {
    width: 100% !important;
  }

  .gx-stats,
  .gx-card-stats {
    grid-template-columns: 1fr !important;
  }

  .gx-group-head {
    display: grid !important;
  }

  .gx-code {
    width: fit-content !important;
  }

  .gx-qr-row {
    align-items: flex-start !important;
  }
}
/* GROUPS UX CSP SAFE FAANG V3 END */

/* GROUP DETAIL PREMIUM V2 - CSP SAFE */
.group-detail-shell-v2 {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 76px;
}

.group-detail-faang-v2 {
  --gdv2-bg: rgba(5, 8, 22, 0.96);
  --gdv2-panel: rgba(11, 18, 36, 0.88);
  --gdv2-panel-soft: rgba(15, 23, 42, 0.72);
  --gdv2-line: rgba(148, 163, 184, 0.20);
  --gdv2-line-strong: rgba(34, 211, 238, 0.36);
  --gdv2-text: #f8fafc;
  --gdv2-muted: #9fb0cc;
  --gdv2-cyan: #22d3ee;
  --gdv2-green: #34d399;
  --gdv2-yellow: #facc15;
  --gdv2-radius: 24px;
  color: var(--gdv2-text);
  border: 1px solid var(--gdv2-line);
  border-radius: 34px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(11, 18, 36, 0.98), rgba(2, 6, 23, 0.96)),
    var(--gdv2-bg);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
}

.group-detail-faang-v2,
.group-detail-faang-v2 * {
  box-sizing: border-box;
}

.group-detail-faang-v2 a {
  text-decoration: none;
}

.gdv2-hero,
.gdv2-stat-grid,
.gdv2-section,
.gdv2-bottom-cta {
  margin-top: 18px;
}

.gdv2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 18px;
  margin-top: 0;
}

.gdv2-hero-copy,
.gdv2-share-panel,
.gdv2-stat-card,
.gdv2-section,
.gdv2-bottom-cta {
  border: 1px solid var(--gdv2-line);
  border-radius: var(--gdv2-radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(5, 8, 22, 0.76));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.gdv2-hero-copy {
  min-width: 0;
  padding: 42px;
}

.gdv2-topline,
.gdv2-section-head,
.gdv2-bottom-cta,
.gdv2-ranking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gdv2-topline {
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.gdv2-pill,
.gdv2-role,
.gdv2-chip,
.gdv2-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 13px;
  border: 1px solid var(--gdv2-line-strong);
  color: #7dd3fc;
  background: rgba(34, 211, 238, 0.10);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gdv2-role {
  max-width: 100%;
  overflow: hidden;
  color: #dbeafe;
  text-overflow: ellipsis;
  text-transform: none;
  letter-spacing: 0;
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(148, 163, 184, 0.08);
}

.gdv2-kicker {
  margin: 0 0 16px;
  color: var(--gdv2-cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gdv2-hero-copy h1 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.gdv2-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: #c8d5f2;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 650;
}

.gdv2-actions,
.gdv2-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.gdv2-bottom-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.gdv2-btn,
.gdv2-entry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 16px;
  padding: 0 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--gdv2-text);
  background: rgba(15, 23, 42, 0.78);
  font-weight: 950;
  text-align: center;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.gdv2-btn:hover,
.gdv2-entry-link:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 211, 153, 0.46);
}

.gdv2-btn-primary {
  border: 0;
  color: #03101d;
  background: linear-gradient(135deg, var(--gdv2-cyan), var(--gdv2-green));
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.18);
}

.gdv2-btn-secondary {
  border-color: rgba(34, 211, 238, 0.28);
  color: #7dd3fc;
  background: rgba(34, 211, 238, 0.10);
}

.gdv2-btn-quiet {
  color: #dbeafe;
}

.gdv2-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gdv2-trust-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 0 11px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.54);
  font-size: 12px;
  font-weight: 850;
}

.gdv2-share-panel {
  min-width: 0;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-color: rgba(52, 211, 153, 0.24);
}

.gdv2-share-panel h2,
.gdv2-section-head h2,
.gdv2-bottom-cta strong {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: 0;
}

.gdv2-share-panel p,
.gdv2-section-head p,
.gdv2-bottom-cta p {
  margin: 0;
  color: var(--gdv2-muted);
  line-height: 1.55;
}

.gdv2-code-card,
.gdv2-copy-field {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(52, 211, 153, 0.26);
  border-radius: 20px;
  padding: 16px;
  background: rgba(52, 211, 153, 0.08);
}

.gdv2-code-card span,
.gdv2-copy-field span {
  color: var(--gdv2-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdv2-code-card strong {
  color: #fff;
  font-size: 38px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.gdv2-copy-field {
  border-color: rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.07);
}

.gdv2-copy-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: 0 12px;
  color: var(--gdv2-text);
  background: rgba(2, 6, 23, 0.54);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  outline: none;
}

.gdv2-copy-field input:focus {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.10);
}

.gdv2-share-actions .share-buttons-v19 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.gdv2-share-actions .share-btn-v19 {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 13px;
  font-size: 12px;
}

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

.gdv2-stat-card {
  min-width: 0;
  padding: 18px;
}

.gdv2-stat-card span,
.gdv2-stat-card small {
  display: block;
}

.gdv2-stat-card span {
  color: var(--gdv2-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.gdv2-stat-card strong {
  display: block;
  margin: 9px 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.gdv2-stat-card small {
  color: var(--gdv2-muted);
  line-height: 1.4;
}

.gdv2-stat-card-code {
  border-color: rgba(34, 211, 238, 0.26);
}

.gdv2-section {
  padding: 24px;
}

.gdv2-section-head {
  align-items: flex-start;
  margin-bottom: 18px;
}

.gdv2-section-head h2 {
  margin-top: 9px;
  font-size: 42px;
}

.gdv2-section-head p {
  margin-top: 9px;
  max-width: 680px;
}

.gdv2-chip {
  flex: 0 0 auto;
}

.gdv2-empty-state {
  display: grid;
  justify-items: start;
  gap: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.30);
  border-radius: 22px;
  padding: 22px;
  background: rgba(2, 6, 23, 0.30);
}

.gdv2-empty-state strong {
  color: #fff;
  font-size: 22px;
}

.gdv2-empty-state p {
  max-width: 640px;
  margin: 0;
  color: var(--gdv2-muted);
  line-height: 1.55;
}

.gdv2-leader-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(52, 211, 153, 0.30);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.13), rgba(34, 211, 238, 0.07));
}

.gdv2-leader-rank,
.gdv2-rank-badge,
.gdv2-member-avatar {
  display: grid;
  place-items: center;
  color: #03101d;
  background: linear-gradient(135deg, var(--gdv2-cyan), var(--gdv2-green));
  font-weight: 950;
}

.gdv2-leader-rank {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 20px;
}

.gdv2-leader-copy {
  min-width: 0;
}

.gdv2-leader-copy span,
.gdv2-leader-score span {
  color: var(--gdv2-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdv2-leader-copy strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 24px;
  overflow-wrap: anywhere;
}

.gdv2-leader-copy small {
  color: #dbeafe;
}

.gdv2-leader-score {
  text-align: right;
}

.gdv2-leader-score strong {
  display: block;
  color: #fff;
  font-size: 40px;
  line-height: 1;
}

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

.gdv2-ranking-row {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 14px;
  background: rgba(2, 6, 23, 0.34);
}

.gdv2-ranking-row.is-podium {
  border-color: rgba(34, 211, 238, 0.26);
  background: rgba(34, 211, 238, 0.06);
}

.gdv2-rank-badge {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 15px;
}

.gdv2-player-cell,
.gdv2-row-meta,
.gdv2-points-box {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.gdv2-player-cell {
  flex: 1 1 180px;
}

.gdv2-player-cell strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.gdv2-player-cell span {
  color: var(--gdv2-muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.gdv2-entry-link {
  min-height: 42px;
  flex: 1 1 180px;
  justify-content: flex-start;
  padding: 0 14px;
  overflow-wrap: anywhere;
}

.gdv2-row-meta {
  flex: 0 1 150px;
  color: var(--gdv2-muted);
  font-size: 13px;
  font-weight: 800;
}

.gdv2-row-meta span strong {
  color: #fff;
}

.gdv2-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.24);
  font-size: 12px;
  font-weight: 950;
}

.gdv2-points-box {
  min-width: 74px;
  justify-items: end;
  color: var(--gdv2-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gdv2-points-box strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

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

.gdv2-member-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 16px;
  background: rgba(2, 6, 23, 0.32);
}

.gdv2-member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 15px;
}

.gdv2-member-card strong,
.gdv2-member-card span,
.gdv2-member-card small {
  display: block;
}

.gdv2-member-card strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.gdv2-member-card span {
  margin-top: 3px;
  color: var(--gdv2-muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.gdv2-member-card small {
  grid-column: 1 / -1;
  color: #cbd5e1;
  font-weight: 850;
}

.gdv2-bottom-cta {
  padding: 24px;
  border-color: rgba(52, 211, 153, 0.24);
}

.gdv2-bottom-cta strong {
  display: block;
  margin-top: 8px;
}

.gdv2-bottom-cta p {
  margin-top: 8px;
  max-width: 680px;
}

@media (max-width: 1120px) {
  .gdv2-hero,
  .gdv2-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gdv2-stat-card-code {
    grid-column: span 2;
  }

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

  .gdv2-ranking-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .gdv2-entry-link,
  .gdv2-row-meta {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  .group-detail-shell-v2 {
    width: min(100% - 18px, 1220px);
    padding: 24px 0 52px;
  }

  .group-detail-faang-v2 {
    border-radius: 26px;
    padding: 14px;
  }

  .gdv2-hero,
  .gdv2-stat-grid,
  .gdv2-members-grid,
  .gdv2-section-head,
  .gdv2-bottom-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gdv2-hero-copy,
  .gdv2-share-panel,
  .gdv2-section,
  .gdv2-bottom-cta {
    border-radius: 22px;
    padding: 18px;
  }

  .gdv2-hero-copy h1 {
    font-size: 44px;
    line-height: 1;
  }

  .gdv2-lead {
    font-size: 17px;
  }

  .gdv2-actions,
  .gdv2-bottom-actions {
    display: grid;
    justify-content: stretch;
  }

  .gdv2-btn,
  .gdv2-entry-link {
    width: 100%;
  }

  .gdv2-share-actions .share-buttons-v19 {
    grid-template-columns: 1fr;
  }

  .gdv2-stat-card-code {
    grid-column: auto;
  }

  .gdv2-section-head h2,
  .gdv2-share-panel h2,
  .gdv2-bottom-cta strong {
    font-size: 28px;
  }

  .gdv2-leader-card,
  .gdv2-ranking-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .gdv2-leader-score,
  .gdv2-points-box {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .gdv2-entry-link,
  .gdv2-row-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 460px) {
  .gdv2-hero-copy h1 {
    font-size: 38px;
  }

  .gdv2-code-card strong {
    font-size: 30px;
  }

  .gdv2-stat-card strong,
  .gdv2-leader-score strong,
  .gdv2-points-box strong {
    font-size: 28px;
  }
}

/* PREDIXO GROUP DETAIL UX FAANG V3 — CSS ONLY OVERRIDE */
/* Scope total: /grupos/:id group-detail-faang-v2. No backend. No JS. No inline CSS. */

.group-detail-shell-v2 {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 56px) 0 52px;
  isolation: isolate;
}

.group-detail-faang-v2 {
  --gdv3-bg: #050816;
  --gdv3-panel: rgba(11, 18, 36, 0.84);
  --gdv3-panel-strong: rgba(15, 23, 42, 0.92);
  --gdv3-card: rgba(255, 255, 255, 0.055);
  --gdv3-line: rgba(226, 232, 240, 0.13);
  --gdv3-line-strong: rgba(56, 189, 248, 0.32);
  --gdv3-text: #f8fafc;
  --gdv3-muted: #a7b4d6;
  --gdv3-soft: #dbeafe;
  --gdv3-cyan: #38d9ff;
  --gdv3-teal: #2ff0bf;
  --gdv3-green: #43f5a6;
  --gdv3-yellow: #facc15;
  --gdv3-pink: #fb7185;
  --gdv3-shadow: 0 28px 120px rgba(0, 0, 0, 0.42);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: clamp(26px, 3vw, 42px);
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 8% 0%, rgba(56, 217, 255, 0.20), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(67, 245, 166, 0.13), transparent 34%),
    radial-gradient(circle at 50% 110%, rgba(99, 102, 241, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96));
  box-shadow: var(--gdv3-shadow);
}

.group-detail-faang-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 68%);
  opacity: 0.42;
}

.group-detail-faang-v2::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -180px;
  border-radius: 999px;
  background: rgba(56, 217, 255, 0.18);
  filter: blur(88px);
  pointer-events: none;
}

.group-detail-faang-v2 > * {
  position: relative;
  z-index: 1;
}

.gdv2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.gdv2-hero-copy,
.gdv2-share-panel,
.gdv2-stat-card,
.gdv2-section,
.gdv2-bottom-cta {
  border: 1px solid var(--gdv3-line);
  background:
    radial-gradient(circle at top left, rgba(56, 217, 255, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.54));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.gdv2-hero-copy {
  min-width: 0;
  border-radius: clamp(24px, 3vw, 34px);
  padding: clamp(24px, 5vw, 56px);
}

.gdv2-share-panel {
  border-radius: clamp(24px, 3vw, 34px);
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  align-content: start;
  gap: 16px;
  border-color: rgba(47, 240, 191, 0.22);
  background:
    radial-gradient(circle at top right, rgba(67, 245, 166, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.62));
}

.gdv2-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(18px, 2vw, 28px);
}

.gdv2-pill,
.gdv2-role,
.gdv2-chip,
.gdv2-card-label,
.gdv2-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gdv2-pill {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(56, 217, 255, 0.34);
  color: var(--gdv3-cyan);
  background: rgba(56, 217, 255, 0.09);
  font-size: 12px;
}

.gdv2-role {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(251, 113, 133, 0.28);
  color: #fda4af;
  background: rgba(251, 113, 133, 0.09);
  font-size: 12px;
}

.gdv2-kicker,
.gdv2-card-label {
  color: var(--gdv3-cyan);
  font-size: 12px;
  line-height: 1;
}

.gdv2-hero-copy h1 {
  max-width: 820px;
  margin: 16px 0 16px;
  color: var(--gdv3-text);
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.86;
  letter-spacing: -0.085em;
  font-weight: 1000;
  text-wrap: balance;
}

.gdv2-lead {
  max-width: 700px;
  margin: 0;
  color: var(--gdv3-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  font-weight: 720;
}

.gdv2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gdv2-btn,
.gdv2-entry-link,
.gdv2-bottom-actions a {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 1000;
  text-align: center;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.gdv2-btn-primary {
  border: 0;
  color: #031018;
  background: linear-gradient(135deg, var(--gdv3-cyan), var(--gdv3-green));
  box-shadow:
    0 18px 46px rgba(56, 217, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.gdv2-btn-secondary,
.gdv2-btn-quiet {
  border: 1px solid var(--gdv3-line);
  color: var(--gdv3-text);
  background: rgba(255, 255, 255, 0.065);
}

.gdv2-btn-quiet {
  color: var(--gdv3-muted);
}

.gdv2-btn:hover,
.gdv2-entry-link:hover,
.gdv2-bottom-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(67, 245, 166, 0.48);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.gdv2-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.gdv2-trust-row span {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--gdv3-muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 900;
}

.gdv2-share-panel h2 {
  margin: 0;
  color: var(--gdv3-text);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.gdv2-share-panel p {
  margin: 0;
  color: var(--gdv3-muted);
  line-height: 1.5;
  font-weight: 680;
}

.gdv2-code-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(67, 245, 166, 0.26);
  border-radius: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(67, 245, 166, 0.18), transparent 40%),
    rgba(67, 245, 166, 0.07);
}

.gdv2-code-card::after {
  content: "COPIA Y ENVÍA";
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(219, 234, 254, 0.55);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.gdv2-code-card span,
.gdv2-copy-field span {
  display: block;
  color: var(--gdv3-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdv2-code-card strong {
  display: block;
  margin-top: 8px;
  color: var(--gdv3-text);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  word-break: break-word;
}

.gdv2-copy-field {
  display: grid;
  gap: 8px;
}

.gdv2-copy-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--gdv3-soft);
  background: rgba(2, 6, 23, 0.62);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  outline: none;
}

.gdv2-copy-field input:focus {
  border-color: rgba(56, 217, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(56, 217, 255, 0.08);
}

.gdv2-share-actions .share-buttons-v19 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 0;
}

.gdv2-share-actions .share-btn-v19 {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.065);
}

.gdv2-stat-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.gdv2-stat-card {
  min-width: 0;
  border-radius: 24px;
  padding: 18px;
}

.gdv2-stat-card-code {
  border-color: rgba(56, 217, 255, 0.24);
  background:
    radial-gradient(circle at top left, rgba(56, 217, 255, 0.14), transparent 38%),
    rgba(15, 23, 42, 0.74);
}

.gdv2-stat-card span {
  display: block;
  color: var(--gdv3-muted);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.gdv2-stat-card strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--gdv3-text);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.07em;
  word-break: break-word;
}

.gdv2-stat-card small {
  color: var(--gdv3-muted);
  line-height: 1.35;
  font-weight: 760;
}

.gdv2-section {
  margin-top: 18px;
  border-radius: 30px;
  padding: clamp(20px, 3vw, 30px);
}

.gdv2-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.gdv2-section-head h2 {
  margin: 10px 0 0;
  color: var(--gdv3-text);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.gdv2-section-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--gdv3-muted);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 680;
}

.gdv2-chip {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(56, 217, 255, 0.28);
  color: var(--gdv3-cyan);
  background: rgba(56, 217, 255, 0.08);
  font-size: 12px;
}

.gdv2-leader-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(67, 245, 166, 0.32);
  border-radius: 26px;
  padding: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(67, 245, 166, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(67, 245, 166, 0.08), rgba(56, 217, 255, 0.055)),
    rgba(2, 6, 23, 0.40);
}

.gdv2-leader-card::after {
  content: "LÍDER";
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(67, 245, 166, 0.42);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.gdv2-leader-rank,
.gdv2-rank-badge {
  display: grid;
  place-items: center;
  color: #031018;
  background: linear-gradient(135deg, var(--gdv3-yellow), var(--gdv3-green));
  font-weight: 1000;
  box-shadow: 0 12px 34px rgba(250, 204, 21, 0.14);
}

.gdv2-leader-rank {
  width: 58px;
  height: 58px;
  border-radius: 21px;
  font-size: 22px;
}

.gdv2-leader-copy span,
.gdv2-leader-score span,
.gdv2-row-meta span,
.gdv2-points-box span,
.gdv2-player-cell span,
.gdv2-member-card span,
.gdv2-member-card small {
  color: var(--gdv3-muted);
}

.gdv2-leader-copy span {
  display: block;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gdv2-leader-copy strong {
  display: block;
  margin-top: 5px;
  color: var(--gdv3-text);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.gdv2-leader-copy small {
  display: block;
  margin-top: 3px;
  color: var(--gdv3-muted);
  font-weight: 800;
}

.gdv2-leader-score {
  text-align: right;
  padding-right: 2px;
}

.gdv2-leader-score strong {
  display: block;
  color: var(--gdv3-text);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.gdv2-leader-score span {
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdv2-ranking-list {
  display: grid;
  gap: 12px;
}

.gdv2-ranking-row {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) minmax(130px, 0.6fr) minmax(150px, 0.7fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.gdv2-ranking-row:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 217, 255, 0.30);
  background: rgba(56, 217, 255, 0.055);
}

.gdv2-ranking-row.is-podium {
  border-color: rgba(67, 245, 166, 0.26);
}

.gdv2-rank-badge {
  width: 48px;
  height: 48px;
  border-radius: 18px;
}

.gdv2-player-cell {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.gdv2-player-cell strong {
  color: var(--gdv3-text);
  font-size: 18px;
}

.gdv2-player-cell span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 780;
}

.gdv2-entry-link {
  min-height: 44px;
  border: 1px solid rgba(56, 217, 255, 0.28);
  color: var(--gdv3-cyan);
  background: rgba(56, 217, 255, 0.08);
}

.gdv2-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gdv2-status {
  display: inline-flex;
  border: 1px solid rgba(56, 217, 255, 0.26);
  border-radius: 999px;
  padding: 7px 10px;
  color: #67e8f9;
  background: rgba(56, 217, 255, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.gdv2-row-meta span {
  font-size: 13px;
  font-weight: 850;
}

.gdv2-row-meta span strong {
  color: var(--gdv3-text);
}

.gdv2-points-box {
  min-width: 82px;
  border: 1px solid rgba(67, 245, 166, 0.22);
  border-radius: 18px;
  padding: 10px 12px;
  text-align: center;
  background: rgba(67, 245, 166, 0.065);
}

.gdv2-points-box strong {
  display: block;
  color: var(--gdv3-text);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.gdv2-points-box span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.gdv2-member-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.gdv2-member-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #031018;
  background: linear-gradient(135deg, var(--gdv3-cyan), var(--gdv3-green));
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(56, 217, 255, 0.16);
}

.gdv2-member-card strong {
  display: block;
  color: var(--gdv3-text);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.gdv2-member-card span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 760;
}

.gdv2-member-card small {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(148, 163, 184, 0.10);
  padding-top: 10px;
  font-size: 12px;
  font-weight: 900;
}

.gdv2-bottom-cta {
  margin-top: 18px;
  border-radius: 30px;
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-color: rgba(67, 245, 166, 0.22);
  background:
    radial-gradient(circle at left, rgba(67, 245, 166, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.58));
}

.gdv2-bottom-cta strong {
  display: block;
  margin-top: 9px;
  color: var(--gdv3-text);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.gdv2-bottom-cta p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--gdv3-muted);
  line-height: 1.5;
  font-weight: 680;
}

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

.gdv2-empty-state {
  border: 1px dashed rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.gdv2-empty-state strong {
  display: block;
  color: var(--gdv3-text);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.gdv2-empty-state p {
  max-width: 640px;
  margin: 8px auto 0;
  color: var(--gdv3-muted);
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .gdv2-hero,
  .gdv2-bottom-cta {
    grid-template-columns: 1fr;
  }

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

  .gdv2-stat-card-code {
    grid-column: 1 / -1;
  }

  .gdv2-ranking-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .gdv2-entry-link,
  .gdv2-row-meta {
    grid-column: 2 / -1;
  }

  .gdv2-points-box {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

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

  .gdv2-bottom-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .group-detail-shell-v2 {
    width: min(100% - 18px, 1180px);
    padding-top: 18px;
  }

  .group-detail-faang-v2 {
    border-radius: 26px;
    padding: 12px;
  }

  .gdv2-hero-copy,
  .gdv2-share-panel,
  .gdv2-section,
  .gdv2-bottom-cta {
    border-radius: 24px;
    padding: 18px;
  }

  .gdv2-topline,
  .gdv2-section-head,
  .gdv2-leader-card,
  .gdv2-bottom-actions,
  .gdv2-actions,
  .gdv2-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gdv2-pill,
  .gdv2-role,
  .gdv2-chip,
  .gdv2-btn,
  .gdv2-bottom-actions a {
    width: 100%;
  }

  .gdv2-hero-copy h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .gdv2-lead {
    font-size: 17px;
  }

  .gdv2-share-actions .share-buttons-v19,
  .gdv2-stat-grid,
  .gdv2-members-grid {
    grid-template-columns: 1fr;
  }

  .gdv2-leader-card {
    text-align: left;
  }

  .gdv2-leader-card::after {
    display: none;
  }

  .gdv2-leader-score {
    text-align: left;
  }

  .gdv2-ranking-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .gdv2-entry-link,
  .gdv2-row-meta,
  .gdv2-points-box {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
  }

  .gdv2-points-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
  }

  .gdv2-member-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 440px) {
  .gdv2-hero-copy,
  .gdv2-share-panel,
  .gdv2-section,
  .gdv2-bottom-cta {
    padding: 16px;
  }

  .gdv2-code-card strong {
    font-size: 34px;
  }

  .gdv2-section-head h2,
  .gdv2-bottom-cta strong {
    font-size: 34px;
  }
}
