/* Variables */
:root {
  --bg: #f4f5f7;
  --surface: #fff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.6);
  --accent: #1a73e8;
  --accent-2: #34a853;
  --glass: rgba(255, 255, 255, 0.6);
  --shadow: 0 10px 30px rgba(11, 18, 32, 0.08);
  --radius: 14px;
  --maxw: 1150px;
}

/* Dark theme */
body.dark {
  --bg: #0b0f13;
  --surface: #0f1720;
  --text: #e6eef8;
  --muted: rgba(230, 238, 248, 0.7);
  --accent: #4ea1ff;
  --accent-2: #5cd07a;
  --glass: rgba(255, 255, 255, 0.04);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    background 0.3s,
    color 0.3s;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.page-loader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(26, 115, 232, 0.18),
      transparent 24%
    ),
    radial-gradient(circle at 80% 80%, rgba(52, 168, 83, 0.18), transparent 22%);
  pointer-events: none;
}

.page-loader-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.loader {
  --path: rgba(0, 0, 0, 0.28);
  --dot: #eea228;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative;
}

.loader:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 37px;
  left: 19px;
  transform: translate(-18px, -18px);
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

.loader svg {
  display: block;
  width: 100%;
  height: 100%;
}

.loader svg rect,
.loader svg polygon,
.loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

.loader.triangle {
  width: 48px;
}

.loader.triangle:before {
  left: 21px;
  transform: translate(-10px, -18px);
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }

  66% {
    stroke-dashoffset: 147;
  }

  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }

  66% {
    transform: translate(10px, -18px);
  }

  100% {
    transform: translate(-10px, -18px);
  }
}

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }

  50% {
    stroke-dashoffset: 128;
  }

  75% {
    stroke-dashoffset: 192;
  }

  100% {
    stroke-dashoffset: 256;
  }
}

@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }

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

  75% {
    transform: translate(0, -36px);
  }

  100% {
    transform: translate(-18px, -18px);
  }
}

@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }

  50% {
    stroke-dashoffset: 175;
  }

  75% {
    stroke-dashoffset: 225;
  }

  100% {
    stroke-dashoffset: 275;
  }
}

.page-loader-text {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, var(--glass), transparent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
/* header when page is scrolled */
.site-header.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 28px rgba(11, 18, 32, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  font-weight: 800;
  font-size: 18px;
}
.menu-toggle {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
/* Nav underline effect */
.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 56%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  opacity: 0.95;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.main-nav a:hover {
  background: rgba(0, 0, 0, 0.03);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.cta {
  background: var(--text);
  color: var(--surface);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}
.profile-icon {
  display: inline-block;
  color: var(--text);
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}

/* Mobile nav */
.menu-toggle {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition:
    background 0.2s,
    transform 0.3s;
}
.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.menu-toggle.open {
  /* rotate optional, keep icon handled by JS */
  transform: rotate(0);
}
body.dark .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.menu-toggle i {
  display: block;
  font-size: 1.2em;
  color: var(--text);
}

/* overlay/foundation for side panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(200, 200, 200, 0.95); /* grey overlay */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 95;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

/* panel that slides from left */
.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  max-width: 320px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}
.mobile-nav.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel a {
  color: var(--text);
  padding: 12px 0;
  border-radius: 8px;
}

.close-btn {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  transition: color 0.2s;
}
.close-btn:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-inner {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-title {
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 900;
}
.accent {
  color: var(--text);
}
.hero-sub {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 15px;
}

/* Gallery area - Creative tilt cards */
.hero-gallery {
  position: relative;
  margin: 26px 0 18px;
}
.cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  transform: rotate(-6deg);
  transition: transform 0.85s;
  will-change: transform;
}
.card {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
  transform-origin: center;
}
.card:nth-child(1) {
  transform: rotate(-10deg);
}
.card:nth-child(2) {
  transform: rotate(-4deg);
}
.card:nth-child(3) {
  transform: rotate(3deg);
}
.card:nth-child(4) {
  transform: rotate(8deg);
}
.card:nth-child(5) {
  transform: rotate(14deg);
}
.card:nth-child(6) {
  transform: rotate(-7deg);
}
.card:hover {
  transform: translateY(-10px) scale(1.06) rotate(2deg);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* tags */
.tag {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow);
}
.tag-left {
  left: 12%;
}
.tag-right {
  right: 12%;
  left: auto;
  background: var(--accent-2);
}

/* CTA */
.hero-cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn.primary {
  background: var(--text);
  color: var(--surface);
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Brands slider */
.brands {
  padding: 5px 0;
}
.section-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}
.brand-container {
  overflow: hidden;
  width: 100%;
}
.brand-track {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
}
.brand-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
}
.brand-item img {
  height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.brand-item img:hover {
  opacity: 1;
}

/* Stats */
.stats-inner {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 36px 0;
}

.stat-card {
  text-align: center;
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 160px;
}

.stat-card h3 {
  font-size: 28px;
  margin-bottom: 6px;
}
.stat-card p {
  color: var(--muted);
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.testi {
  background: var(--surface);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  transition: transform 0.25s;
}
.testi:hover {
  transform: rotate(0deg) scale(1.02);
}
.testi p {
  color: var(--muted);
  margin-bottom: 12px;
}
.testi cite {
  font-size: 13px;
  color: var(--muted);
}

/* Player Stories grid */
.player-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.player-card,
.story-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.player-card:hover,
.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
.pc-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.pc-body {
  padding: 20px;
}
.pc-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pc-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ accordion */
.accordion {
  margin-top: 18px;
}
.accordion-item {
  background: var(--surface);
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.acc-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 700;
  padding: 8px;
  font-size: 15px;
  cursor: pointer;
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  color: var(--muted);
  padding-top: 6px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 9999;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.lightbox .close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Story modal */
.story-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 9998;
}
.story-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.story-content {
  background: var(--surface);
  color: var(--text);
  padding: 24px;
  border-radius: 12px;
  max-width: 720px;
  width: 94%;
  box-shadow: var(--shadow);
}

/* tiny cursor glow */

/* helpers / entrance */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Reveal stagger helpers */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 540ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 540ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Custom cursor (ring + dot) */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  margin-top: -18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transition:
    transform 120ms linear,
    background 180ms linear,
    opacity 180ms linear;
  mix-blend-mode: difference;
  display: block;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
#cursor.small {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
}
#cursor.enlarge {
  transform: scale(1.6);
  background: rgba(26, 115, 232, 0.12);
}

/* interactive hover state for links/buttons */
a:hover,
.cta:hover,
.btn:hover,
button:hover {
  cursor: none;
}

@media (prefers-reduced-motion: reduce) {
  #cursor {
    display: none;
  }
}

/* Button ripple */
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.45);
  opacity: 0.9;
  pointer-events: none;
}
.ripple.fast span {
  background: rgba(255, 255, 255, 0.18);
}

/* Back to top */
#back-to-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: var(--text);
  color: var(--surface);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  cursor: pointer;
  box-shadow: 0 10px 30px rgb5a(11, 18, 32, 0.12);
}
#back-to-top.show {
  display: flex;
}

/* Mobile panel item stagger (css only) */
.mobile-panel a {
  opacity: 0;
  transform: translateX(-12px);
}
.mobile-nav.open .mobile-panel a:nth-of-type(1) {
  transition: 220ms ease 80ms;
  opacity: 1;
  transform: none;
}
.mobile-nav.open .mobile-panel a:nth-of-type(2) {
  transition: 220ms ease 120ms;
  opacity: 1;
  transform: none;
}
.mobile-nav.open .mobile-panel a:nth-of-type(3) {
  transition: 220ms ease 160ms;
  opacity: 1;
  transform: none;
}
.mobile-nav.open .mobile-panel a:nth-of-type(4) {
  transition: 220ms ease 200ms;
  opacity: 1;
  transform: none;
}
.mobile-nav.open .mobile-panel a:nth-of-type(5) {
  transition: 220ms ease 240ms;
  opacity: 1;
  transform: none;
}
.mobile-nav.open .mobile-panel a:nth-of-type(6) {
  transition: 220ms ease 280ms;
  opacity: 1;
  transform: none;
}

/* Tag subtle parallax smoothing */
.tag {
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: #f88158;
  z-index: 99999;
  transition: width 120ms linear;
}

/* Smooth wrapper for transform-based smooth scrolling */
#smooth-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Respect reduced motion: hide animated extras */
@media (prefers-reduced-motion: reduce) {
  #scroll-progress {
    display: none;
  }
  .cards {
    transition: none;
  }
}
.hero-title,
.hero-sub,
.cards,
.hero-cta,
.section-title,
.testi {
  animation: fadeUp 1s ease both;
}

/* responsive */
@media (max-width: 1000px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .cta {
    display: none;
  }
  .profile-icon {
    display: inline-block;
    color: var(--text);
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin: 36px 0;
  }
  .header-inner {
    padding: 12px 0;
  }
  .menu-toggle {
    display: inline-block;
  }
  .main-nav {
    display: none;
  }
  /* overlay handled with opacity, not display */
  .hero-title {
    font-size: 34px;
  }
  .cards {
    transform: none;
  }
  .card {
    width: 130px;
    height: 130px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .hero-title {
    font-size: 28px;
  }
  .card {
    width: 110px;
    height: 110px;
  }
  .container {
    padding: 0 14px;
  }
}

/* small polish for dark mode */
body.dark .testi,
body.dark .stat-card,
body.dark .card {
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* -----------------------------
   Neon Theme (single theme)
   - Enabled by adding `neon` class to <body>
   - Styles are intentionally vibrant and glowy
   ----------------------------- */
body.neon {
  --bg: #070013;
  --surface: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  --text: #eaf6ff;
  --muted: rgba(234, 246, 255, 0.7);
  --accent: #ff2d95;
  --accent-2: #6a5cff;
  --glass: rgba(255, 255, 255, 0.03);
  --shadow: 0 14px 40px rgba(106, 92, 255, 0.12);
}

.neon .cta,
.neon .btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow:
    0 6px 20px rgba(255, 45, 149, 0.14),
    0 0 30px rgba(106, 92, 255, 0.08);
}

.neon .tag {
  box-shadow: 0 8px 30px rgba(255, 45, 149, 0.12);
}

/* Neon glow for cards and elements */
.neon .card,
.neon .player-card,
.neon .story-card,
.neon .stat-card,
.neon .testi {
  border: 1px solid rgba(255, 45, 149, 0.06);
  box-shadow:
    0 18px 60px rgba(106, 92, 255, 0.08),
    0 0 18px rgba(255, 45, 149, 0.03);
}

/* Neon toggle button look */
.icon-btn#neon-toggle {
  font-size: 18px;
  padding: 8px;
  border-radius: 10px;
  transition:
    box-shadow 0.18s,
    transform 0.12s;
  color: var(--accent);
}
.icon-btn#neon-toggle.active {
  box-shadow:
    0 6px 28px rgba(255, 45, 149, 0.18),
    0 0 36px rgba(106, 92, 255, 0.12) inset;
  transform: translateY(-2px);
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 6px rgba(255, 45, 149, 0.12);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.18);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 45, 149, 0.12);
  }
}
.icon-btn#neon-toggle.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  animation: neonPulse 2.2s infinite ease-in-out;
}
