:root {
  --bg: #060c17;
  --bg-soft: #0b1527;
  --panel: #12203a;
  --panel-2: #172945;
  --text: #ecf3ff;
  --muted: #a7bad7;
  --line: rgba(167, 186, 215, 0.22);
  --brand: #22d9c5;
  --brand-2: #43ea84;
  --accent: #ff9450;
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 2rem));
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(34, 217, 197, 0.16), transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(255, 148, 80, 0.14), transparent 35%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  animation: floatOrb 9s ease-in-out infinite;
}

.orb-1 {
  left: -120px;
  top: -130px;
  background: rgba(67, 234, 132, 0.2);
}

.orb-2 {
  right: -110px;
  bottom: -130px;
  background: rgba(34, 217, 197, 0.2);
  animation-delay: 1.4s;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.page-hero {
  padding-top: 110px;
  padding-bottom: 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 10px 0;
  background: linear-gradient(180deg, rgba(6, 12, 23, 0.95), rgba(6, 12, 23, 0.55));
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 217, 197, 0.45), transparent);
}

.payment-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: 12px;
}

.payment-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-methods-container {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.payment-method-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #eaf2ff;
}

.payment-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.payment-data-card {
  border: 1px solid rgba(167, 186, 215, 0.22);
  border-radius: 10px;
  background: rgba(8, 16, 30, 0.7);
  padding: 10px;
}

.payment-data-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.payment-data-header strong {
  font-size: 0.92rem;
}

.payment-data-body p {
  margin: 0 0 6px;
  color: #d8e7ff;
  font-size: 0.84rem;
}

.payment-data-body p:last-child {
  margin-bottom: 0;
}

.payment-open-link {
  margin-top: 2px;
  padding: 7px 10px;
  min-height: 32px;
  font-size: 0.8rem;
}

.paypal-icon-small {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.nequi-theme .nequi-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.zelle-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6a1b9a;
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.25);
}

.qr-image-small {
  width: 100%;
  max-width: 180px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.method-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
}

.method-option input {
  accent-color: #22d9c5;
}

.method-option:has(input:checked) {
  background: rgba(34, 217, 197, 0.14);
  border-color: rgba(34, 217, 197, 0.45);
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: min(980px, 100%);
  margin-inline: auto;
  position: relative;
  border: 1px solid rgba(167, 186, 215, 0.28);
  border-radius: 16px;
  background: rgba(11, 20, 37, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  padding: 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
  justify-items: center;
}

.brand-online {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #7fffd4;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(122, 255, 189, 0.85);
  box-shadow:
    0 0 0 2px rgba(4, 12, 24, 0.55),
    0 0 14px rgba(95, 255, 166, 0.45);
}

.brand-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f435e;
  box-shadow: 0 0 0 2px rgba(47, 67, 94, 0.32);
}

.brand-live-dot.is-online {
  background: #43ea84;
  box-shadow: 0 0 0 2px rgba(67, 234, 132, 0.32), 0 0 8px rgba(67, 234, 132, 0.55);
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(34, 217, 197, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 4px 0 10px;
  gap: 4px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 9px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  border-color: rgba(167, 186, 215, 0.24);
  background: rgba(18, 32, 58, 0.68);
}

.nav-recharge {
  display: none;
}

.account-menu[hidden] {
  display: none;
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 14px;
  width: min(340px, calc(100vw - 28px));
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  background: rgba(8, 16, 30, 0.98);
  border: 1px solid rgba(167, 186, 215, 0.24);
  border-radius: 14px;
  display: grid;
  gap: 6px;
  padding: 10px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  z-index: 90;
}

.account-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(167, 186, 215, 0.14);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(18, 32, 58, 0.52);
}

.account-menu a:hover,
.account-menu a:focus-visible {
  border-color: rgba(34, 217, 197, 0.45);
  color: var(--brand);
}

.account-menu-about-btn:hover,
.account-menu-about-btn:focus-visible {
  border-color: rgba(34, 217, 197, 0.45);
  color: var(--brand);
}

.account-menu-about-btn {
  width: 100%;
  text-align: left;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(167, 186, 215, 0.14);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(18, 32, 58, 0.52);
  cursor: pointer;
}

.account-menu-divider {
  display: block;
  height: 1px;
  margin: 2px 0;
  background: rgba(167, 186, 215, 0.18);
}

.header-cta {
  text-decoration: none;
  font-family: inherit;
  color: #072d27;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 1px solid rgba(34, 217, 197, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  box-shadow: 0 8px 20px rgba(34, 217, 197, 0.2);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.recharge-pill {
  color: #072d27;
  white-space: nowrap;
}

.diamond-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  background: rgba(9, 18, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  min-width: 94px;
  padding: 8px 10px;
  justify-content: space-between;
}

.mobile-page-menu {
  display: none;
  position: relative;
}

.mobile-page-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  min-height: 36px;
  color: #072d27;
}

.mobile-page-menu__button::-webkit-details-marker {
  display: none;
}

.mobile-page-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(250px, calc(100vw - 24px));
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(34, 217, 197, 0.34);
  border-radius: 14px;
  background: rgba(7, 15, 28, 0.98);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  z-index: 80;
}

.mobile-page-menu__panel a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid rgba(167, 186, 215, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(18, 32, 58, 0.72);
}

.mobile-page-menu__panel a:hover,
.mobile-page-menu__panel a:focus-visible {
  color: #7fffd4;
  border-color: rgba(34, 217, 197, 0.5);
  background: rgba(34, 217, 197, 0.12);
}

.user-info-open {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dff2ff;
  background: rgba(9, 18, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.user-info-open svg {
  width: 18px;
  height: 18px;
  display: block;
}

.user-info-open svg path {
  fill: currentColor;
}

.user-info-open:hover,
.user-info-open:focus-visible {
  border-color: rgba(34, 217, 197, 0.55);
  color: #e9fffb;
}

.user-info-open[hidden] {
  display: none !important;
}

.diamond-label {
  font-size: 1rem;
  line-height: 1;
  color: #9ed8ff;
  filter: drop-shadow(0 0 6px rgba(127, 255, 212, 0.35));
}

.diamond-count {
  color: #7fffd4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.menu-btn {
  display: inline-flex;
  width: 40px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.3);
  background: rgba(18, 32, 58, 0.85);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.menu-btn .menu-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding-top: 92px;
  padding-bottom: 90px;
  min-height: clamp(520px, 78vh, 860px);
  position: relative;
  background-color: #060c17;
  background:
    linear-gradient(112deg, rgba(6, 18, 27, 0.78) 0%, rgba(7, 17, 29, 0.5) 42%, rgba(6, 12, 23, 0.2) 100%),
    url("assets/cabesal.png") center 24% / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
  max-width: 100%;
}

.kicker {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.hero-copy h1,
.section-head h1,
.section-head h2,
.contact-box h2,
.hero-card h2,
.catalog-link-card h3,
.catalog-card h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

.hero-copy h1,
.section-head h1 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  margin-bottom: 14px;
}

.hero-copy p,
.section-head p,
.catalog-link-card p,
.catalog-card p,
.contact-box p,
.footer-wrap p {
  color: var(--muted);
}

.hero-copy {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-copy .kicker {
  color: #ffe45f;
  font-size: clamp(0.86rem, 1.6vw, 1.04rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 7.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #ffd8d8 32%, #ff5f5f 68%, #cc1616 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 16ch;
  margin-bottom: 16px;
  text-shadow: 0 7px 26px rgba(0, 0, 0, 0.62), 0 0 22px rgba(215, 40, 40, 0.34);
}

.hero-copy p {
  max-width: 56ch;
  font-size: clamp(1.05rem, 2vw, 1.46rem);
  line-height: 1.45;
  color: #dffff2;
  font-weight: 600;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

.live-note {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.channel-section {
  padding-top: 10px;
}

.recharge-section {
  padding-top: 12px;
}

.recharge-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 32, 58, 0.86), rgba(14, 25, 44, 0.92));
  box-shadow: var(--shadow);
}

.recharge-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  margin-bottom: 8px;
}

.recharge-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.recharge-form {
  display: grid;
  gap: 10px;
}

.recharge-form label {
  font-size: 0.9rem;
  color: #d6e2f4;
  font-weight: 600;
}

.recharge-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.35);
  background: rgba(6, 12, 23, 0.72);
  color: var(--text);
  padding: 12px 14px;
  font-size: 1rem;
}

.recharge-form input:focus {
  outline: 2px solid rgba(34, 217, 197, 0.42);
  outline-offset: 1px;
}

.recharge-id-hint {
  margin-top: -2px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: #9fb4d4;
}

.recharge-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-quick-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2px 0 8px;
}

.payment-quick-btn {
  border: 1px solid rgba(167, 186, 215, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: #dff0ff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.payment-quick-btn.is-active {
  background: rgba(34, 217, 197, 0.18);
  border-color: rgba(34, 217, 197, 0.5);
  color: #eafffb;
}

.diamond-feedback {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: #8df8cd;
  margin-bottom: 0;
}

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

.recharge-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 16px;
}

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

.home-announce-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 16px;
}

.home-announce-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.74);
  backdrop-filter: blur(2px);
}

.home-announce-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(124, 223, 255, 0.34);
  background:
    radial-gradient(circle at 12% 10%, rgba(72, 241, 193, 0.2), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(64, 170, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(12, 24, 44, 0.97), rgba(8, 18, 34, 0.97));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 30px 24px 24px;
  overflow: hidden;
}

.home-announce-modal__dialog::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(172, 234, 255, 0.2);
  pointer-events: none;
}

.home-announce-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.home-announce-game-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(13, 32, 58, 0.94), rgba(9, 22, 42, 0.95));
  border: 2px solid rgba(137, 227, 255, 0.72);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), 0 0 14px rgba(114, 245, 255, 0.22);
  overflow: hidden;
  animation: homeGamepadFloat 2.1s ease-in-out infinite;
}

.home-announce-game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
  animation: homeGamepadPulse 1.8s ease-in-out infinite;
}

.home-announce-modal__text {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.55;
}

.home-announce-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.home-announce-list p {
  color: #e4f0ff;
  font-size: 0.94rem;
  margin: 0;
  border: 1px solid rgba(154, 190, 235, 0.22);
  background: rgba(13, 28, 49, 0.74);
  border-radius: 10px;
  padding: 9px 10px;
}

.home-announce-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-announce-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.home-announce-kicker__badge {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #7cf6d5, #65b8ff);
  box-shadow: 0 0 0 4px rgba(89, 208, 255, 0.15), 0 0 14px rgba(80, 255, 170, 0.45);
  animation: homeAnnounceGlow 1.8s ease-in-out infinite;
}

.home-announce-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.42rem, 3vw, 1.95rem);
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #f4fbff 0%, #9fe4ff 45%, #95ffcb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(95, 225, 255, 0.22);
  animation: homeAnnouncePop 2.2s ease-in-out infinite;
}

@keyframes homeAnnounceGlow {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(89, 208, 255, 0.15), 0 0 14px rgba(80, 255, 170, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(89, 208, 255, 0.2), 0 0 20px rgba(80, 255, 170, 0.65);
  }
}

@keyframes homeAnnouncePop {
  0%,
  100% {
    transform: translateY(0);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-1px);
    filter: saturate(1.1);
  }
}

@keyframes homeGamepadFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes homeGamepadPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.recharge-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(2px);
}

.recharge-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 186, 215, 0.24);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.97), rgba(8, 18, 34, 0.97));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.recharge-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.recharge-modal__text {
  color: var(--muted);
  margin-bottom: 6px;
}

.recharge-account-state {
  color: #cddcf2;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.payment-card {
  margin-top: 10px;
  margin-bottom: 4px;
  border-radius: 12px;
  border: 1px solid rgba(167, 186, 215, 0.28);
  background: rgba(6, 12, 23, 0.66);
  padding: 10px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.payment-method {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "icon name"
    "btn btn";
  align-items: center;
  column-gap: 6px;
  row-gap: 4px;
  color: #dfe9f8;
  padding: 0;
  min-width: 120px;
}

.payment-method > .paypal-icon,
.payment-method > .nequi-icon {
  grid-area: icon;
}

.payment-method strong {
  grid-area: name;
  font-size: 0.95rem;
}

.paypal-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.paypal-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.payment-method-btn {
  width: auto;
  padding: 7px 11px;
  font-size: 0.82rem;
  min-height: 33px;
}

.nequi-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4d00b5, #8b2cff);
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.payment-mini-window[hidden] {
  display: none;
}

.payment-mini-window {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(2px);
  padding: 14px;
}

.payment-mini-window__card {
  width: min(360px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(167, 186, 215, 0.28);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.98), rgba(8, 18, 34, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  padding: 16px;
  position: relative;
}

.payment-mini-window__card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 8px;
}

.payment-mini-window__content p {
  margin: 0 0 6px;
  color: #dbe8fa;
  font-size: 0.9rem;
}

.payment-mini-window__content p:last-child {
  margin-bottom: 0;
}

.payment-mini-window__content strong {
  color: #94a9ff;
}

.payment-mini-window__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.payment-mini-window__content .qr-image-small {
  display: block;
  margin-top: 8px;
}

.payment-mini-link {
  margin-top: 6px;
  display: inline-flex;
}

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

.license-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 16px;
}

.license-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(2px);
}

.license-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(167, 186, 215, 0.28);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.98), rgba(8, 18, 34, 0.98));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 22px 18px;
}

.license-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.34);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.license-modal__product {
  color: #d8e7ff;
  margin-bottom: 8px;
}

.license-modal__value {
  border: 1px dashed rgba(167, 186, 215, 0.44);
  border-radius: 10px;
  background: rgba(7, 14, 26, 0.76);
  padding: 10px 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #ecf4ff;
  margin-bottom: 12px;
  user-select: all;
}

.license-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recharge-note {
  color: #bfd0ea;
  font-size: 0.82rem;
}

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

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 16px;
}

.account-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(2px);
}

.account-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 186, 215, 0.24);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.97), rgba(8, 18, 34, 0.97));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.account-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.account-subtitle {
  margin: 2px 0 14px;
  color: #b7cde8;
  font-size: 0.88rem;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.account-tabs[hidden] {
  display: none !important;
}

.account-tab {
  border-radius: 999px;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(12, 24, 44, 0.76);
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
}

.account-tab.active {
  border-color: rgba(34, 217, 197, 0.58);
  background: rgba(34, 217, 197, 0.2);
}

.account-form {
  display: grid;
  gap: 8px;
}

.account-form[hidden] {
  display: none !important;
}

.account-form + .account-form {
  margin-top: 10px;
}

.account-form label {
  font-size: 0.86rem;
  color: #d6e2f4;
  font-weight: 600;
}

.account-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.35);
  background: rgba(6, 12, 23, 0.72);
  color: var(--text);
  padding: 11px 12px;
  font-size: 0.95rem;
}

.account-form input:focus {
  outline: 2px solid rgba(34, 217, 197, 0.42);
  outline-offset: 1px;
}

.account-switch {
  margin: 4px 0 0;
  color: #c3d8ef;
  font-size: 0.86rem;
}

.account-switch a {
  color: #7fffd4;
  font-weight: 700;
  text-decoration: none;
}

.account-switch a:hover,
.account-switch a:focus-visible {
  text-decoration: underline;
}

.account-logout-btn {
  margin-top: 10px;
}

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

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 132;
  display: grid;
  place-items: center;
  padding: 16px;
}

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(2px);
}

.about-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 186, 215, 0.24);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.97), rgba(8, 18, 34, 0.97));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.about-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.about-modal__content {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: #d2e1f4;
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-modal__content p {
  margin: 0;
}

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

.user-info-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 16px;
}

.user-info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(2px);
}

.user-info-modal__dialog {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 186, 215, 0.24);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.97), rgba(8, 18, 34, 0.97));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.user-info-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.user-info-grid {
  display: grid;
  gap: 10px;
}

.user-info-item {
  border-radius: 12px;
  border: 1px solid rgba(167, 186, 215, 0.24);
  background: rgba(6, 12, 23, 0.58);
  padding: 12px;
  display: grid;
  gap: 5px;
}

.user-info-label {
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb4d4;
  font-weight: 700;
}

.user-info-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: #eff7ff;
  word-break: break-word;
}

.user-info-ip {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  color: #8df8cd;
  border-radius: 8px;
  border: 1px solid rgba(34, 217, 197, 0.35);
  background: rgba(34, 217, 197, 0.1);
  padding: 6px 8px;
  width: fit-content;
  max-width: 100%;
  word-break: break-all;
}

.user-info-ip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.user-info-copy-btn {
  padding: 6px 10px;
  font-size: 0.75rem;
  min-height: 30px;
}

.user-info-copy-feedback {
  font-size: 0.78rem;
  color: #8df8cd;
  min-height: 1.1em;
}

.channel-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 32, 58, 0.86), rgba(14, 25, 44, 0.92));
  box-shadow: var(--shadow);
}

.channel-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.channel-layout .channel-card {
  max-width: none;
  margin: 0;
}

.channel-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 8px;
}

.channel-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.promo-card {
  text-align: left;
  max-width: 560px;
  padding: 14px;
  border-color: rgba(167, 186, 215, 0.22);
  background: linear-gradient(180deg, rgba(16, 28, 50, 0.9), rgba(11, 21, 40, 0.95));
}

.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  justify-items: center;
}

.promo-cards-grid .promo-card {
  max-width: 490px;
  width: 100%;
  margin: 0;
}

.promo-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  letter-spacing: 0.04em;
  color: #f2f7ff;
}

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

.promo-item {
  border: 1px solid rgba(167, 186, 215, 0.24);
  border-radius: 8px;
  background: rgba(8, 16, 30, 0.5);
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.promo-diamond {
  color: #eff7ff;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  line-height: 1.1;
}

.promo-price-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.promo-offer {
  color: #8df8cd;
  font-size: 0.82rem;
  line-height: 1.1;
  white-space: nowrap;
}

.promo-real {
  margin: 0;
  color: #a9bddc;
  font-size: 0.7rem;
  line-height: 1.1;
  white-space: nowrap;
}

.promo-card-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.promo-buy-btn {
  padding: 7px 12px;
  font-size: 0.78rem;
  border-radius: 999px;
  min-height: 30px;
  box-shadow: 0 8px 18px rgba(34, 217, 197, 0.2);
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #082b25;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: rgba(34, 217, 197, 0.45);
  box-shadow: 0 10px 24px rgba(34, 217, 197, 0.22);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(167, 186, 215, 0.42);
  background: transparent;
}

.btn-tiktok {
  color: #ffffff;
  background: linear-gradient(135deg, #ff0050, #8a2be2);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

.hero-card,
.catalog-link-card,
.catalog-card,
.contact-box {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 32, 58, 0.86), rgba(14, 25, 44, 0.92));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
}

.hero-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

.tiny {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  color: var(--muted);
}

.price-grid {
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.price-box {
  border: 1px solid rgba(167, 186, 215, 0.24);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(7, 13, 24, 0.45);
}

.price-box span {
  display: block;
  font-size: 0.83rem;
  color: #b8c7df;
}

.price-box strong {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.section-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 28px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

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

.catalog-link-card {
  text-decoration: none;
  color: var(--text);
  padding: 22px;
}

.catalog-link-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

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

.catalog-card {
  padding: 18px;
}

.cert-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cert-title-row h3 {
  margin: 0;
}

.cert-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.28);
  background: rgba(6, 12, 23, 0.72);
  display: inline-block;
  margin: 0;
}

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 12px;
}

.cert-image-btn {
  border-radius: 12px;
  border: 1px solid rgba(167, 186, 215, 0.26);
  background: rgba(6, 12, 23, 0.72);
  padding: 8px;
  min-height: 180px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cert-image-btn img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

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

.cert-image-modal {
  position: fixed;
  inset: 0;
  z-index: 2210;
  display: grid;
  place-items: center;
  padding: 18px;
}

.cert-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.78);
  backdrop-filter: blur(1px);
}

.cert-image-modal__dialog {
  position: relative;
  width: auto;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  border-radius: 14px;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(6, 12, 23, 0.95);
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.cert-image-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(167, 186, 215, 0.45);
  background: rgba(8, 18, 35, 0.9);
  color: #f4f8ff;
  font-size: 1.2rem;
  cursor: pointer;
}

.cert-image-modal__dialog img {
  display: block;
  width: auto;
  max-width: calc(96vw - 60px);
  max-height: calc(92vh - 36px);
  object-fit: contain;
}

.catalog-card h3 {
  margin-bottom: 8px;
}

.catalog-card strong {
  color: var(--accent);
}

.accounts-sale-section {
  padding-top: 30px;
}

.ff-accounts-grid {
  align-items: stretch;
}

.ff-account-card {
  display: grid;
  gap: 10px;
}

.ff-account-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px solid rgba(167, 186, 215, 0.3);
  overflow: hidden;
  background: #04080f;
}

.ff-account-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ff-account-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.ff-account-thumb--loading {
  background:
    linear-gradient(90deg, rgba(67, 234, 132, 0.08), rgba(34, 217, 197, 0.22), rgba(67, 234, 132, 0.08));
  background-size: 220% 100%;
  animation: ffLoading 1.3s linear infinite;
}

.ff-account-card h3 {
  margin-bottom: 0;
}

.ff-account-subtitle {
  margin: 0;
  color: #c7d8f3;
  font-size: 0.92rem;
}

.ff-account-id {
  color: #c7d8f3;
  font-size: 0.86rem;
}

.ff-account-price {
  color: #eff7ff;
}

.ff-account-price strong {
  color: var(--accent);
}

.ff-account-contact {
  margin-top: 4px;
}

@keyframes ffLoading {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

.diamond-price {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #d7e5fa;
}

.buy-diamonds-btn {
  margin-top: 10px;
}

.license-mask {
  margin-top: 6px;
  font-size: 0.84rem;
  color: #cfe1ff;
}

.license-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.license-links .btn {
  width: 100%;
  justify-content: center;
}

.buy-feedback {
  min-height: 1.2em;
  margin-top: 8px;
  color: #8df8cd;
  font-size: 0.87rem;
}

.root-request-section {
  padding-top: 24px;
}

.root-request-card {
  max-width: 760px;
  margin: 0 auto;
}

.root-request-card h2 {
  margin-bottom: 6px;
}

.root-request-form {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.root-request-form label {
  font-size: 0.86rem;
  color: #d6e2f4;
  font-weight: 600;
}

.root-request-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.35);
  background: rgba(6, 12, 23, 0.72);
  color: var(--text);
  padding: 11px 12px;
  font-size: 0.95rem;
}

.root-request-form input:focus {
  outline: 2px solid rgba(34, 217, 197, 0.42);
  outline-offset: 1px;
}

.root-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.root-target-option {
  position: relative;
  display: inline-flex;
}

.root-target-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.root-target-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 186, 215, 0.35);
  background: rgba(12, 24, 44, 0.74);
  color: #e4eefc;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.root-target-option input:checked + span {
  border-color: rgba(34, 217, 197, 0.58);
  background: rgba(34, 217, 197, 0.2);
  color: #eafff9;
}

.video-wrap {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(167, 186, 215, 0.3);
  background: #000;
}

.product-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
}

.media-gallery {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  width: 100%;
}

.media-gallery-stage {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(167, 186, 215, 0.3);
  background: #000;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 250px;
}

.media-gallery-item {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-gallery-item.is-active {
  display: block;
}

.media-gallery-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}

.media-gallery-btn {
  border: 1px solid rgba(167, 186, 215, 0.35);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  width: 52px;
  min-width: 52px;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.media-gallery-btn.is-active {
  border-color: rgba(34, 217, 197, 0.55);
  background: rgba(34, 217, 197, 0.18);
}

.media-gallery-btn img,
.media-gallery-btn video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.contact-section {
  padding-top: 36px;
}

.contact-box {
  text-align: center;
  padding: 32px 24px;
}

.contact-box h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}

.contact-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bottom-premium-info__text {
  text-align: center;
  color: #b9cbe4;
  font-weight: 500;
  font-size: 0.86rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  margin-top: 24px;
}

.footer-wrap {
  display: grid;
  justify-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  text-align: center;
}

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

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand);
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 32, 58, 0.86), rgba(14, 25, 44, 0.92));
  box-shadow: var(--shadow);
  padding: 24px;
}

.legal-card h2 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.legal-card p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-card .legal-lead {
  color: #e8f2ff;
  font-weight: 700;
  font-size: 1.14rem;
}

.legal-card .legal-strong {
  color: #c7fff3;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.float-links {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
}

.quick-links-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 186, 215, 0.3);
  background: rgba(8, 16, 30, 0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(47, 143, 255, 0.28);
  transition: transform 0.2s ease;
}

.quick-links-toggle:hover,
.quick-links-toggle:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

.quick-links-toggle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.quick-links-menu[hidden] {
  display: none;
}

.quick-links-menu {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: grid;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(167, 186, 215, 0.22);
  background: rgba(8, 16, 30, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 60;
}

.float-links[data-always-visible="true"] .quick-links-toggle {
  display: none;
}

.float-links[data-always-visible="true"] .quick-links-menu {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.float-links[data-always-visible="true"] .quick-links-menu .whatsapp-float {
  position: static;
  width: 56px;
  height: 56px;
}

@media (max-width: 900px) {
  .float-links[data-always-visible="true"] {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: auto;
  }

  .float-links[data-always-visible="true"] .quick-links-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .float-links[data-always-visible="true"] .quick-links-menu .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .site-chat-widget {
    right: 14px;
    left: 14px;
    bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .site-chat-widget__card {
    width: 100%;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 60;
  transition: transform 0.2s ease;
}

.quick-links-menu .whatsapp-float {
  position: static;
  right: auto;
  bottom: auto;
  width: 48px;
  height: 48px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}

.tiktok-float {
  background: linear-gradient(135deg, #111111, #ff0050 55%, #00f2ea);
  box-shadow: 0 12px 28px rgba(255, 0, 80, 0.32);
}

.youtube-float {
  background: #ff1f1f;
  box-shadow: 0 12px 28px rgba(255, 31, 31, 0.32);
}

.chat-float {
  background: linear-gradient(135deg, #22d9c5, #2f8fff);
  box-shadow: 0 12px 28px rgba(47, 143, 255, 0.35);
  border: none;
  cursor: pointer;
}

.site-chat-widget[hidden] {
  display: none;
}

.site-chat-widget {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 61;
}

.site-chat-widget__card {
  width: min(340px, calc(100vw - 120px));
  border-radius: 14px;
  border: 1px solid rgba(167, 186, 215, 0.26);
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.98), rgba(8, 18, 34, 0.98));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.site-chat-widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.site-chat-widget__head strong {
  font-size: 0.92rem;
  color: #e9f4ff;
}

.site-chat-widget__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(167, 186, 215, 0.32);
  background: rgba(18, 32, 58, 0.85);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.site-chat-widget__messages {
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.22);
  background: rgba(6, 12, 23, 0.65);
  max-height: 180px;
  min-height: 120px;
  overflow-y: auto;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.site-chat-msg {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  border-radius: 10px;
  padding: 7px 9px;
  max-width: 94%;
}

.site-chat-msg--bot {
  background: rgba(34, 217, 197, 0.16);
  color: #def9f2;
  justify-self: start;
}

.site-chat-msg--user {
  background: rgba(47, 143, 255, 0.2);
  color: #e5f0ff;
  justify-self: end;
}

.site-chat-widget__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.site-chat-widget__form input {
  border-radius: 10px;
  border: 1px solid rgba(167, 186, 215, 0.35);
  background: rgba(6, 12, 23, 0.72);
  color: var(--text);
  padding: 10px 12px;
  font-size: 0.9rem;
}

.site-chat-widget__form input:focus {
  outline: 2px solid rgba(34, 217, 197, 0.42);
  outline-offset: 1px;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .catalog-links,
  .channel-layout,
  .promo-cards-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .site-header {
    padding: 8px 0;
  }

  .nav-shell {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    min-height: 60px;
    width: 100%;
  }

  .menu-btn {
    width: 40px;
    height: 38px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    flex: 1 1 100%;
    margin: 4px 0 0;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 7px 9px;
  }

  .header-cta:not(.diamond-pill):not(.user-info-open):not(.mobile-page-menu__button):not(.recharge-pill) {
    display: none;
  }

  .nav-recharge {
    display: inline-flex;
  }

  .section {
    padding: 66px 0;
  }

  .recharge-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(5, 13, 22, 0.64), rgba(6, 12, 23, 0.75)),
      url("assets/cabesal.png") center top / cover no-repeat;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }

}

@media (max-width: 560px) {
  .section {
    padding: 54px 0;
  }

  .page-hero {
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .promo-item {
    padding: 6px 8px;
  }

  .promo-diamond {
    font-size: 0.82rem;
  }

  .promo-offer {
    font-size: 0.8rem;
  }

  .promo-buy-btn {
    width: auto;
  }

  .user-info-copy-btn {
    width: auto;
  }

  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .hero {
    min-height: 410px;
    padding-top: 54px;
    background-position: center 14%;
  }

  .hero-copy h1 {
    font-size: clamp(1.78rem, 8.5vw, 2.6rem);
    max-width: 95%;
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 95%;
  }

  .catalog-card {
    padding: 14px;
  }

  .channel-card {
    padding: 16px;
  }

  .promo-card {
    padding: 12px;
  }

  .media-gallery-stage {
    max-height: none;
  }

  .payment-info-cards {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .payment-method-btn {
    width: auto;
  }

  .payment-selector {
    grid-template-columns: 1fr;
  }

  .recharge-modal__dialog {
    padding: 18px 14px;
  }

  .account-modal__dialog {
    padding: 18px 14px;
  }

  .user-info-modal__dialog {
    padding: 18px 14px;
  }

  .diamond-pill {
    min-width: 108px;
  }

  .recharge-pill {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .user-info-open {
    width: 34px;
    height: 34px;
  }

  .float-links {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .quick-links-toggle {
    width: 52px;
    height: 52px;
  }

  .quick-links-menu {
    bottom: 60px;
    gap: 6px;
    padding: 6px;
  }

  .float-links[data-always-visible="true"] .quick-links-menu {
    gap: 8px;
    padding: 0;
  }

  .float-links[data-always-visible="true"] .quick-links-menu .whatsapp-float {
    width: 48px;
    height: 48px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }

  .quick-links-menu .whatsapp-float {
    width: 44px;
    height: 44px;
    right: auto;
    bottom: auto;
  }

  .site-chat-widget {
    right: 14px;
    bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .site-chat-widget__card {
    width: min(340px, calc(100vw - 28px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile hard-fix to avoid horizontal overflow on iPhone/Android */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  html,
  body,
  .site-header,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(1120px, calc(100% - 1rem));
    max-width: 100%;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    min-width: 0;
    gap: 6px;
  }

  .mobile-page-menu {
    display: block;
  }

  .mobile-page-menu__button {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .header-cta:not(.diamond-pill):not(.user-info-open):not(.mobile-page-menu__button):not(.recharge-pill) {
    display: none;
  }

  .diamond-pill {
    min-width: 0;
    padding: 8px 10px;
  }

  .recharge-pill {
    padding: 8px 9px;
    font-size: 0.76rem;
  }

  .diamond-label {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    margin: 4px 0 0;
    padding-bottom: 2px;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 7px 10px;
  }
}
