
:root {
  --bg: #05010a;
  --bg-2: #0d0415;
  --bg-soft: rgba(19, 8, 28, 0.78);
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.065);
  --card-border: rgba(217, 70, 239, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --primary: #cd13ea;
  --primary-2: #d900ff;
  --primary-3: #b924c6;
  --accent-pink: #ff0084;
  --accent-blue: #60a5fa;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --glow: 0 0 30px rgba(217, 70, 239, 0.24);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #05010a;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
body { cursor: auto; }
a, button, .card, .benefit-card, .faq-question, .reviews img, .nav-container, .tag, .logo, .socials a { cursor: pointer; }
* { -webkit-user-select: none; user-select: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 70, 239, 0.24), transparent 22%),
    radial-gradient(circle at 85% 24%, rgba(96, 165, 250, 0.10), transparent 18%),
    radial-gradient(circle at 50% 82%, rgba(244, 114, 182, 0.08), transparent 24%),
    linear-gradient(180deg, #040109 0%, #080211 36%, #10031a 68%, #05010a 100%);
}

.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 56px);
  opacity: .14;
  transform-origin: center;
  animation: gridFloat 26s linear infinite;
}

.background::after {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 10% 20%, rgba(217, 70, 239, 0.22), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.10), transparent 16%),
    radial-gradient(circle at 68% 74%, rgba(244, 114, 182, 0.10), transparent 20%),
    radial-gradient(circle at 24% 86%, rgba(232, 121, 249, 0.16), transparent 20%);
  filter: blur(24px);
  opacity: .85;
  animation: glowShift 18s ease-in-out infinite alternate;
}

#site-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 1;
}

main, footer, .navbar {
  position: relative;
}

main, footer {
  z-index: 3;
}

.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 16px;
}

.nav-container {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(240, 171, 252, 0.2);
  background: linear-gradient(180deg, rgba(16, 7, 28, 0.78), rgba(10, 4, 18, 0.66));
  backdrop-filter: blur(18px);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,.06);
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary-2);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  transition: color .25s ease, transform .25s ease;
}
nav a:hover, nav a.active {
  color: var(--primary-2);
  transform: translateY(-1px);
}

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

.social-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: #f8f5ff;
  transition: transform .25s ease, filter .25s ease;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(240, 171, 252, 0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 14px 28px rgba(0,0,0,.32), 0 0 22px rgba(168,85,247,.18);
}

.social-link:hover svg {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.social-instagram:hover { background: linear-gradient(135deg, rgba(245,133,41,.2), rgba(221,42,123,.2) 45%, rgba(129,52,175,.22) 72%, rgba(81,91,212,.18)); }
.social-youtube:hover { background: linear-gradient(135deg, rgba(255,0,0,.22), rgba(255,70,70,.12)); }
.social-discord:hover { background: linear-gradient(135deg, rgba(88,101,242,.26), rgba(168,85,247,.16)); }

main { position: relative; z-index: 1; }
.container,
.hero,
.hero-games,
.reviews,
.packages,
.stats,
.benefits,
.faq,
.contact-final,
.page-hero,
.gear-section,
.programs-section,
.disclaimer-section,
.why-section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 170px 0 90px;
}

.page-hero {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 0 80px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(216,180,254,.5);
  background: rgba(216,180,254,.05);
  color: var(--primary-2);
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(168,85,247,.12);
}

h1, .page-hero h1 {
  margin: 28px 0 18px;
  font-size: clamp(3.1rem, 8vw, 6.6rem);
  line-height: .93;
  letter-spacing: -0.06em;
  font-weight: 900;
}

h1 span, .page-hero h1 span {
  background: linear-gradient(90deg, #fdf4ff 0%, #f0abfc 45%, #d946ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p, .page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 500;
}


.hero-games {
  width: min(1040px, 100%);
  margin-top: 34px;
  padding: 20px 18px 18px;
  border-radius: 28px;
  border: 1px solid rgba(216,180,254,.14);
  background: linear-gradient(180deg, rgba(17,7,28,.66), rgba(12,5,22,.38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 16px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

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

.hero-games-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--primary-2);
}

.hero-games-head p {
  margin: 0;
  max-width: 540px;
  text-align: right;
  font-size: .92rem;
  color: rgba(255,255,255,.68);
}

.games-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.games-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: gamesMarquee 24s linear infinite;
}

.games-marquee:hover .games-track {
  animation-play-state: paused;
}

.game-chip {
  position: relative;
  min-width: 170px;
  height: 92px;
  padding: 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 30px rgba(0,0,0,.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  isolation: isolate;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.game-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 34%), linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  z-index: -1;
}

.game-chip::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  filter: blur(16px);
  z-index: -1;
}

.game-chip:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(216,180,254,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 34px rgba(0,0,0,.3), 0 0 24px rgba(168,85,247,.16);
}

.game-chip strong {
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,.38);
}

.game-chip-tag {
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
}

.game-fortnite { background: linear-gradient(135deg, rgb(0, 255, 225), rgba(82,76,255,.78)); }
.game-warzone { background: linear-gradient(135deg, rgb(153, 255, 0), rgba(23,35,24,.85)); }
.game-valorant { background: linear-gradient(135deg, rgba(255, 0, 34, 0.92), rgba(70,15,22,.84)); }
.game-cs2 { background: linear-gradient(135deg, rgb(255, 145, 0), rgba(104,46,10,.84)); }
.game-apex { background: linear-gradient(135deg, rgba(255, 57, 30, 0.9), rgba(48,14,12,.84)); }
.game-rust { background: linear-gradient(135deg, rgba(209,110,46,.9), rgba(47,22,15,.86)); }
.game-rocket { background: linear-gradient(135deg, rgba(1, 149, 255, 0.9), rgba(19,51,126,.84)); }
.game-lol { background: linear-gradient(135deg, rgb(0, 234, 255), rgba(18,78,96,.84)); }

@keyframes gamesMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
.hero-actions, .page-actions, .contact-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn, .card .buy-link, .program-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--primary-2), var(--primary));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 34px rgba(168,85,247,.18), 0 0 18px rgba(168,85,247,.08);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn::before, .card .buy-link::before, .program-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .45s ease;
}
.btn:hover::before, .card .buy-link:hover::before, .program-link:hover::before { left: 130%; }
.btn:hover, .card .buy-link:hover, .program-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 44px rgba(168,85,247,.28), 0 0 26px rgba(168,85,247,.16);
  filter: brightness(1.06);
}
.btn:active, .card .buy-link:active, .program-link:active { transform: translateY(0) scale(.98); }

.btn-outline {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(216,180,254,.3);
  color: var(--primary-2);
  box-shadow: none;
}

section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.section-head h2, .reviews h2, .packages h2, .benefits h2, .faq h2, .contact-final h2, .gear-section h2, .programs-section h2, .why-section h2, .disclaimer-section h2 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: .98;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.section-head p, .subtitle, .section-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}
.reviews, .packages, .stats, .benefits, .faq, .contact-final { position: relative; }

.reviews { text-align: center; overflow: hidden; }
.reviews-container {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.reviews-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 38s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
.reviews-track:hover img { opacity: .48; transform: scale(.96); }
.reviews-track img:hover { opacity: 1; }
.reviews img {
  width: auto;
  max-height: 170px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.58), 0 10px 20px rgba(0,0,0,.4), 0 0 25px rgba(168,85,247,.14);
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease, opacity .45s ease;
}
.reviews img:hover {
  transform: translateY(-14px) scale(1.07);
  box-shadow: 0 35px 70px rgba(0,0,0,.74), 0 15px 30px rgba(0,0,0,.5), 0 0 35px rgba(168,85,247,.28), 0 0 70px rgba(168,85,247,.12);
  filter: brightness(1.05);
}
@keyframes scrollReviews { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.packages .section-head { margin-bottom: 30px; }
.limited-spots {
  margin: 0 0 30px;
  text-align: center;
  color: var(--primary-2);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(168,85,247,.18);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.card, .benefit-card, .faq-item, .stat-card, .gear-card, .program-card, .why-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, opacity .35s ease;
  overflow: hidden;
}
.cards:hover .card { opacity: .56; transform: scale(.96); }
.cards .card:hover {
  opacity: 1;
  z-index: 5;
  transform: translateY(-22px) scale(1.07);
  border-color: rgba(216,180,254,.42);
  box-shadow: 0 28px 58px rgba(0,0,0,.56), 0 0 38px rgba(168,85,247,.34), 0 0 70px rgba(168,85,247,.16);
}
.card::before, .benefit-card::before, .gear-card::before, .program-card::before, .why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(216,180,254,.17), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover::before, .benefit-card:hover::before, .gear-card:hover::before, .program-card:hover::before, .why-card:hover::before { opacity: 1; }
.card h3, .gear-card h3, .program-card h3, .why-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.price {
  margin: 18px 0 16px;
  font-size: 2.05rem;
  color: var(--primary-2);
  font-weight: 900;
}
.card ul, .gear-list, .program-features, .why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.card li, .gear-list li, .program-features li, .why-list li {
  margin: 12px 0;
  color: rgba(255,255,255,.84);
  line-height: 1.55;
}
.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-2), var(--primary));
  color: white;
}
.popular { border-color: rgba(216,180,254,.35); }
.buy-link { width: 100%; }
.card-note {
  margin: -4px 0 18px;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
  font-size: .96rem;
}
.priority-upsell {
  margin: 28px auto 0;
  max-width: 920px;
  padding: 18px 22px;
  border-radius: 22px;
  text-align: center;
  font-weight: 700;
  line-height: 1.65;
  color: #ecfff7;
  background: linear-gradient(135deg, rgba(0,255,156,.18), rgba(168,85,247,.18));
  border: 1px solid rgba(0,255,156,.34);
  box-shadow: 0 0 26px rgba(0,255,156,.12), 0 0 40px rgba(168,85,247,.12);
}
.priority-upsell strong {
  color: #7fffd1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.stat-card {
  padding: 28px 22px;
  border-radius: 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat-card:hover { transform: translateY(-8px); border-color: rgba(216,180,254,.3); box-shadow: 0 0 30px rgba(168,85,247,.14); }
.stat-number {
  margin: 0 0 8px;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--primary-2);
}
.stat-card p { margin: 0; color: var(--muted); font-weight: 600; }

.benefits h2 span, .faq h2 span, .section-head h2 span, .contact-final h2 span, .page-hero h1 span { color: var(--primary-2); }
.benefits-grid, .gear-grid, .programs-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.benefit-card, .gear-card, .program-card, .why-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease, opacity .38s ease;
  overflow: hidden;
}
.benefits-grid:hover .benefit-card { opacity: .58; transform: scale(.96); }
.benefits-grid .benefit-card:hover {
  opacity: 1;
  transform: translateY(-18px) scale(1.04);
  border-color: rgba(216,180,254,.45);
  box-shadow: 0 25px 50px rgba(0,0,0,.6), 0 0 30px rgba(168,85,247,.35), 0 0 60px rgba(168,85,247,.18);
}
.benefit-icon, .gear-icon, .program-icon, .why-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.35rem;
  background: rgba(168,85,247,.1);
  border: 1px solid rgba(168,85,247,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.benefit-card:hover .benefit-icon, .gear-card:hover .gear-icon, .program-card:hover .program-icon, .why-card:hover .why-icon {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 0 18px rgba(168,85,247,.34), 0 0 34px rgba(168,85,247,.18);
}
.benefit-card h3, .gear-card h3, .program-card h3, .why-card h3 { margin: 0 0 12px; }
.benefit-card p, .gear-card p, .program-card p, .why-card p, .contact-final p { margin: 0; color: var(--muted); line-height: 1.7; }

.faq-header { text-align: center; margin-bottom: 46px; }
.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,.45);
  background: rgba(168,85,247,.07);
  color: var(--primary-2);
  font-size: .85rem;
  font-weight: 700;
}
.faq-container { max-width: 980px; margin: 0 auto; }
.faq-item {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-color: rgba(216,180,254,.32); box-shadow: 0 0 28px rgba(168,85,247,.1); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  padding: 24px 26px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
}
.faq-question .icon {
  transition: transform .28s ease, opacity .28s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0;
  transition: max-height .35s ease, padding .35s ease, opacity .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 26px 24px;
  opacity: 1;
}
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}

.contact-final {
  padding-bottom: 110px;
  text-align: center;
}
.contact-panel {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border: 1px solid rgba(216,180,254,.14);
  box-shadow: 0 0 32px rgba(168,85,247,.12);
}

.page-hero .hero-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(168,85,247,.07);
  border: 1px solid rgba(216,180,254,.26);
  color: var(--primary-2);
  font-size: .85rem;
  font-weight: 700;
}
.page-grid-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.glass-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(216,180,254,.14);
  box-shadow: var(--shadow);
}
.glass-panel h3 { margin: 0 0 14px; font-size: 1.35rem; }
.glass-panel p, .glass-panel li { color: var(--muted); line-height: 1.7; }
.glass-panel ul { margin: 0; padding-left: 18px; }

.gear-card:hover, .program-card:hover, .why-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(216,180,254,.34);
  box-shadow: 0 22px 48px rgba(0,0,0,.55), 0 0 26px rgba(168,85,247,.18);
}
.gear-meta, .program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168,85,247,.08);
  border: 1px solid rgba(216,180,254,.16);
  color: var(--primary-2);
  font-size: .84rem;
  font-weight: 700;
}
.program-card .discount {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216,180,254,.09);
  border: 1px solid rgba(216,180,254,.18);
  color: var(--primary-2);
  font-weight: 800;
  font-size: .84rem;
}
.program-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.program-link.secondary, .btn.secondary {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(216,180,254,.22);
  box-shadow: none;
}
.disclaimer-box {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(216,180,254,.12);
  color: var(--muted);
  line-height: 1.8;
}

.cursor, .cursor-dot, .trail-dot {
  display: none !important;
}

.custom-pointer,
.pointer-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity .18s ease;
}

body.cursor-enabled .custom-pointer,
body.cursor-enabled .pointer-trail {
  opacity: 1;
}

body.cursor-enabled,
body.cursor-enabled a,
body.cursor-enabled button,
body.cursor-enabled .card,
body.cursor-enabled .benefit-card,
body.cursor-enabled .faq-question,
body.cursor-enabled .reviews img,
body.cursor-enabled .nav-container,
body.cursor-enabled .tag,
body.cursor-enabled .logo,
body.cursor-enabled .socials a {
  cursor: none !important;
}

.custom-pointer {
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-top: -13px;
  border-radius: 50%;
  border: 1px solid rgba(232, 218, 255, .52);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.28) 0%, rgba(225, 201, 255, .18) 28%, rgba(191, 144, 255, .12) 58%, rgba(168,85,247,.06) 74%, rgba(168,85,247,0) 100%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 16px rgba(216,180,254,.28),
    0 0 34px rgba(168,85,247,.16);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.custom-pointer::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.22), rgba(255,255,255,0) 72%);
}

.custom-pointer::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 50%;
  top: 50%;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  box-shadow: 0 0 8px rgba(255,255,255,.38), 0 0 14px rgba(216,180,254,.3);
}

.pointer-trail {
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,200,255,.62) 0%, rgba(168,85,247,.28) 52%, rgba(168,85,247,0) 100%);
  box-shadow: 0 0 12px rgba(216,180,254,.2);
  transition: opacity .35s ease, transform .35s ease;
  will-change: transform, opacity;
}

body.cursor-hover .custom-pointer {
  border-color: rgba(255,255,255,.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 0 22px rgba(216,180,254,.4),
    0 0 44px rgba(168,85,247,.22);
}

.faq-light {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-2);
  animation: faqBlink 2.5s infinite ease-in-out;
}
@keyframes faqBlink {
  0% { opacity: .3; transform: scale(.8); box-shadow: 0 0 3px var(--primary-2); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px var(--primary-2), 0 0 20px var(--primary); }
  100% { opacity: .3; transform: scale(.8); box-shadow: 0 0 3px var(--primary-2); }
}
.hero-light {
  display: inline-block;
  animation: pulseLightning 2s infinite ease-in-out;
}
@keyframes pulseLightning {
  0% { transform: scale(.9); filter: drop-shadow(0 0 2px var(--primary-2)); opacity: .7; }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 8px var(--primary-2)) drop-shadow(0 0 16px var(--primary)); opacity: 1; }
  100% { transform: scale(.9); filter: drop-shadow(0 0 2px var(--primary-2)); opacity: .7; }
}

[data-aos] { will-change: transform, opacity; }

@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .page-grid-head { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-container {
    border-radius: 28px;
    padding: 14px 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav { order: 3; width: 100%; gap: 18px; }
  .hero { padding-top: 220px; }
  .page-hero { padding-top: 220px; }
  .cards, .stats-grid, .benefits-grid, .gear-grid, .programs-grid, .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --container: min(1180px, calc(100% - 22px)); }
  .navbar { top: 10px; padding: 0 10px; }
  .nav-container { gap: 12px; }
  nav a { font-size: .88rem; }
  .socials a { width: 38px; height: 38px; }
  .reviews img { max-height: 220px; }
  .faq-question { font-size: .98rem; padding: 22px 18px; }
  .faq-answer, .faq-item.open .faq-answer { padding-left: 18px; padding-right: 18px; }
  .card, .benefit-card, .gear-card, .program-card, .why-card, .contact-panel, .glass-panel { padding: 24px; }
  .hero-actions, .page-actions, .program-actions, .contact-buttons { gap: 10px; }
  .hero-games { margin-top: 26px; padding: 16px 12px 14px; }
  .hero-games-head { flex-direction: column; align-items: flex-start; }
  .hero-games-head p { text-align: left; font-size: .86rem; }
  .game-chip { min-width: 144px; height: 86px; border-radius: 18px; }
  .btn, .card .buy-link, .program-link { width: 100%; }
}


html, body {
  background-color: var(--bg);
}

.background {
  inset: -18vh 0;
  min-height: 136vh;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background: linear-gradient(180deg, #05010a 0%, #0c0414 38%, #160925 70%, #07010d 100%);
}

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

.menu-dropdown {
  position: relative;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(216,180,254,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.menu-toggle:hover,
.menu-dropdown.open .menu-toggle {
  background: rgba(217, 70, 239, 0.9);
  border-color: rgba(216,180,254,.4);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(168,85,247,.24);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(216,180,254,.16);
  background: rgba(11, 4, 18, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0,0,0,.42), 0 0 24px rgba(168,85,247,.14);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.menu-dropdown.open .menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255,255,255,.88);
  font-size: .94rem;
  font-weight: 700;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.menu-panel a:hover,
.menu-panel a.active {
  background: rgba(168,85,247,.12);
  color: var(--primary-2);
  transform: translateX(2px);
}

.card {
  padding-top: 44px;
}

.featured-card {
  border-color: rgba(216,180,254,.32);
  box-shadow: 0 20px 42px rgba(0,0,0,.5), 0 0 24px rgba(168,85,247,.12);
}

.badge {
  top: 18px;
  right: 18px;
  max-width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 10px 26px rgba(168,85,247,.22);
}

.badge-soft {
  background: linear-gradient(90deg, rgba(216,180,254,.26), rgba(168,85,247,.92));
}

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

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

.policy-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(216,180,254,.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216,180,254,.08), transparent 40%, rgba(168,85,247,.04));
  pointer-events: none;
}

.policy-card h3 {
  margin: 0 0 18px;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.policy-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(168,85,247,.1);
  border: 1px solid rgba(216,180,254,.18);
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(168,85,247,.12);
}

.policy-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.84);
}

.policy-list li {
  margin: 12px 0;
  line-height: 1.72;
}

.policy-alert {
  border-color: rgba(250, 204, 21, .18);
}

.policy-highlight {
  border-color: rgba(74, 222, 128, .18);
}

.policy-disclaimer {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

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

@media (max-width: 640px) {
  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .menu-panel {
    right: 50%;
    transform: translate(50%, 8px);
    min-width: min(280px, calc(100vw - 40px));
  }

  .menu-dropdown.open .menu-panel {
    transform: translate(50%, 0);
  }

  .badge {
    position: static;
    display: inline-flex;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .card {
    padding-top: 24px;
  }
}


/* === Premium fondo + menú v2 === */
html {
  background:
    radial-gradient(circle at top, rgba(216,180,254,.08), transparent 30%),
    linear-gradient(180deg, #06020d 0%, #0a0412 35%, #10061a 68%, #08020e 100%);
  min-height: 100%;
}

body {
  min-height: 100%;
  background:
    radial-gradient(circle at 14% 16%, rgba(194,132,252,.18), transparent 0 22%),
    radial-gradient(circle at 84% 18%, rgba(168,85,247,.10), transparent 0 18%),
    radial-gradient(circle at 50% 75%, rgba(147,51,234,.10), transparent 0 24%),
    linear-gradient(180deg, #06020d 0%, #0b0412 34%, #12071d 66%, #08020e 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 22%, rgba(229, 200, 255, .08), transparent 0 12%),
    radial-gradient(circle at 78% 30%, rgba(198, 153, 255, .06), transparent 0 10%),
    radial-gradient(circle at 62% 78%, rgba(217, 70, 239, .1), transparent 0 14%),
    linear-gradient(120deg, rgba(255,255,255,.025) 0%, transparent 28%, transparent 72%, rgba(255,255,255,.02) 100%);
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  opacity: .22;
}

.background {
  inset: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 171, 252, 0.3), transparent 0 20%),
    radial-gradient(circle at 88% 18%, rgba(217, 70, 239, 0.2), transparent 0 18%),
    radial-gradient(circle at 18% 78%, rgba(124, 58, 237, 0.12), transparent 0 22%),
    radial-gradient(circle at 78% 72%, rgba(196, 181, 253, 0.10), transparent 0 20%),
    linear-gradient(180deg, rgba(8,3,13,.15) 0%, rgba(8,3,13,.04) 100%);
  filter: saturate(110%);
}

canvas {
  z-index: -3;
  opacity: .9;
  background: transparent;
}

.nav-container {
  background: linear-gradient(180deg, rgba(15, 7, 24, 0.76), rgba(13, 6, 21, 0.62));
  border: 1px solid rgba(231, 205, 255, 0.1);
  box-shadow: 0 16px 42px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04), 0 0 26px rgba(168,85,247,.14);
}

.menu-toggle {
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(233, 213, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 28px rgba(0,0,0,.22), 0 0 24px rgba(168,85,247,.10);
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 45%, rgba(168,85,247,.16));
  opacity: .95;
}

.menu-toggle-icon {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(216,180,254,.35));
}

.menu-toggle:hover,
.menu-dropdown.open .menu-toggle {
  background: linear-gradient(180deg, rgba(182, 120, 255, .30), rgba(94, 38, 157, .28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 34px rgba(0,0,0,.28), 0 0 34px rgba(168,85,247,.24);
}

.menu-panel {
  min-width: 260px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(233, 213, 255, .12);
  background: linear-gradient(180deg, rgba(20, 11, 31, 0.88), rgba(11, 6, 18, 0.84));
  box-shadow: 0 24px 60px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.06), 0 0 26px rgba(168,85,247,.12);
  backdrop-filter: blur(22px) saturate(145%);
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 36%, rgba(168,85,247,.08));
  pointer-events: none;
}

.menu-panel-header {
  position: relative;
  padding: 6px 8px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.menu-panel-kicker {
  display: block;
  margin-bottom: 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(216,180,254,.72);
}

.menu-panel-header strong {
  font-size: 1rem;
  letter-spacing: -.02em;
}

.menu-panel a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
}

.menu-item-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(168,85,247,.10));
  border: 1px solid rgba(216,180,254,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.menu-panel a:hover,
.menu-panel a.active {
  background: linear-gradient(90deg, rgba(168,85,247,.14), rgba(255,255,255,.03));
  border-color: rgba(216,180,254,.14);
  transform: translateX(3px);
  box-shadow: 0 10px 18px rgba(0,0,0,.16), 0 0 20px rgba(168,85,247,.08);
}

.menu-panel a:hover .menu-item-icon,
.menu-panel a.active .menu-item-icon {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(168,85,247,.16);
}

.reviews-container {
  padding: 10px 0 4px;
}

.reviews img {
  background: rgba(255,255,255,.03);
}


@keyframes gridFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 12px, 0) scale(1.015); }
  100% { transform: translate3d(-36px, 24px, 0) scale(1.03); }
}

@keyframes orbOne {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(10vw, 8vh, 0) scale(1.14); }
}

@keyframes orbTwo {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-8vw, 10vh, 0) scale(1.12); }
}

@keyframes orbThree {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(8vw, -8vh, 0) scale(1.08); }
}

@keyframes mistShift {
  0% { transform: translate3d(0, 0, 0); opacity: .55; }
  100% { transform: translate3d(-2.5vw, 2vh, 0); opacity: .82; }
}

@media (max-width: 640px) {
  .menu-toggle {
    width: 46px;
    height: 46px;
  }
  .menu-panel {
    min-width: min(300px, calc(100vw - 26px));
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 10px 24px rgba(0,0,0,.24);
  color: #f6ecff;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 171, 252, 0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 14px 28px rgba(0,0,0,.32), 0 0 22px rgba(168,85,247,.18);
}

.menu-toggle-icon {
  font-size: 1rem;
  text-shadow: 0 0 14px rgba(240, 171, 252, 0.65);
}

@keyframes floatAura {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -3%, 0) scale(1.06); }
  100% { transform: translate3d(-3%, 4%, 0) scale(0.98); }
}


@keyframes glowShift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, -1.5%, 0) scale(1.04); }
  100% { transform: translate3d(-2%, 2%, 0) scale(0.98); }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.cursor-enabled,
  body.cursor-enabled a,
  body.cursor-enabled button,
  body.cursor-enabled .card,
  body.cursor-enabled .benefit-card,
  body.cursor-enabled .faq-question,
  body.cursor-enabled .reviews img,
  body.cursor-enabled .nav-container,
  body.cursor-enabled .tag,
  body.cursor-enabled .logo,
  body.cursor-enabled .socials a {
    cursor: auto !important;
  }

  .custom-pointer,
  .pointer-trail {
    display: none !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  .games-track { animation: none; }
}


/* --- Purchase buttons green accent --- */
.card .buy-link {
  background: linear-gradient(135deg, rgba(24, 201, 100, .98), rgba(12, 168, 82, .96));
  border-color: rgba(111, 255, 177, .34);
  box-shadow: 0 16px 34px rgba(7, 84, 40, .34), inset 0 1px 0 rgba(255,255,255,.18);
}

.card .buy-link::before {
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.3) 48%, transparent 100%);
}

.card .buy-link:hover {
  border-color: rgba(158, 255, 198, .52);
  box-shadow: 0 18px 38px rgba(9, 97, 47, .42), inset 0 1px 0 rgba(255,255,255,.24);
}

/* --- Simple footer --- */
.site-footer {
  width: min(calc(100% - 24px), 1880px);
  margin: 8px auto 18px;
  padding: 18px 22px;
  border-radius: 28px;
  border: 1px solid rgba(216,180,254,.12);
  background: linear-gradient(90deg, rgba(6,14,18,.88) 0%, rgba(8,10,22,.92) 52%, rgba(5,6,18,.94) 100%);
  box-shadow: 0 20px 55px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px,auto) 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand-name {
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ff0000;
}

.footer-brand-name span {
  color: #ffffffc9;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.22);
}

.footer-copy {
  text-align: center;
  color: rgba(247, 247, 247, 0.46);
  font-size: .95rem;
  line-height: 1.35;
}

.footer-copy strong {
  color: rgba(255, 0, 0, 0.62);
  font-weight: 700;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-social:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(216,180,254,.22);
  background: rgba(168,85,247,.12);
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-footer {
    width: min(calc(100% - 16px), 1880px);
    padding: 14px 14px;
    border-radius: 22px;
  }

  .footer-copy {
    font-size: .84rem;
  }

  .footer-social {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}
