:root {
  --red: #e8000d;
  --red-dark: #8a0008;
  --yellow: #ffd700;
  --green-neon: #39ff14;
  --black: #060606;
  --white: #ffffff;
  --s3-red: #e8000d;
  --s3-yellow: #ffd700;
  --s3-green: #39ff14;
  --s3-white: #ffffff;
  --s3-black: #060606;
  --s4-red: #e8000d;
  --s4-yellow: #ffd700;
  --s4-green: #39ff14;
  --s4-cyan: #00eeff;
  --s4-pink: #ff00aa;
  --s4-black: #060606;
  --s4-dark: #0d0d0d;
  --s4-white: #ffffff;
    --glv-neon-pink:   #ff00cc;
      --glv-neon-cyan:   #00f5ff;
      --glv-neon-green:  #39ff14;
      --glv-neon-yellow: #ffee00;
      --glv-neon-orange: #ff6600;
      --glv-neon-purple: #bf00ff;
      --glv-bg-dark:     #050510;
      --glv-radius: 14px;
      --glv-gap: 10px;
}

.middle {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  font-family: 'Rajdhani', sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

/* ================= MARQUEE ================= */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
  position: relative;
  z-index: 10;
}

/* FIXED BOOK BUTTON */
.marquee-book-btn {
  position: absolute;
  top: 0px;
  right: -12px;
  z-index: 20;
  background: #000;
  color: var(--yellow);
  font-weight: 900;
  font-size: 14px;
  padding: 9px 30px;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.6);
  transition: transform 0.2s ease;
}

.marquee-book-btn:hover {
  transform: scale(1.05);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  white-space: nowrap;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.marquee-item .dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= HERO (UNCHANGED STYLE) ================= */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-bottom: 32px;
  background-image: url('./img/banner.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.9;
}

.content-grid,
.headline-block,
.left-panel,
.right-panel,
.stats-bar {
  position: relative;
}

.divider {
  position: absolute;
  font-size: 3rem;
}

.hero-orb {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 0, 13, 0.28) 0%, transparent 65%);
}

.hero-orb2 {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.07) 0%, transparent 65%);
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 30px;
  background: #0c0c0c;
  border-bottom: 2px solid var(--red);
}

.top-bar-text {
  font-weight: 700;
  flex: 1;
}

.book-btn {
  background: var(--red);
  color: #fff;
  padding: 11px 24px;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

/* HEADLINE */
.headline-block {
  text-align: center;
  padding: 28px 24px;
}

.headline-main {
  font-family: 'Bebas Neue';
  font-size: 3rem;
  color: var(--yellow);
}

.headline-main .line2 {
  color: var(--green-neon);
}

.headline-sub {
  font-size: 22px;
}

/* GRID */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* LEFT */
.venue-title {
  font-family: 'Bebas Neue';
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.features li {
  list-style: none;
  margin: 8px 0;
  font-size: 18px;
}

/* RIGHT */
.img-frame img {
  width: 100%;
  object-fit: cover;
}

/* STATS */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  max-width: 1100px;
  margin: 10px auto;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 18px;
  display: grid;
  gap: 7px;
}

span.stat-num {
  font-weight: 700;
  font-size: 24px;
}

/* RESPONSIVE */
@media(max-width:800px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;

  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 26px;
  margin: 10px 0;
  cursor: pointer;

  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);

  position: relative;
  overflow: hidden;

  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.35);
  transition: all 0.3s ease;
  border: 3px solid #fff;
}

.button_text {
  display: grid;
  font-size: 20px;
  gap: 4px;
  color: #000000;
}

.button_text .sub-text {
  font-size: 15px;
}

span.arrow {
  font-size: 30px;
  animation: bounceArrow 1s infinite;
}

/* TEXT STACK */
.cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cta-sub {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.75;
  margin-top: 2px;
}

/* HOVER EFFECT */
.cta-main-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

/* SHINE EFFECT */
.cta-main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transition: 0.5s;
}

.cta-main-btn:hover::before {
  left: 120%;
}

/* ARROW ANIMATION */
@keyframes bounceArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

.offer-green {
  margin-top: 20px;
}

.offer-line .offer-badge {
  font-weight: 600;
  font-size: 20px;
}

.offer-line .offer-badge span {
  margin-top: 50px;
  background-color: #fff;
  padding: 5px;
  color: #000;
  font-weight: 700;
}

.offer-line .offer-badge.green {
  font-weight: 700;
}

.img-caption {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

.feature-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 25px;

  /* 🔥 Yellow gradient container */
  background: linear-gradient(135deg, #ffe259, #ffa751);

  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);

  position: relative;
  overflow: hidden;
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD BASE */
.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px;
  border-radius: 14px;

  color: #fff;
  font-family: 'Rajdhani', sans-serif;

  transition: 0.3s ease;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

/* CARD TEXT */
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 800;
}

.feature-card p {
  font-size: 14.5px;
  opacity: 0.9;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
}

/* IMAGE */
.feature-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* INDIVIDUAL COLORS */
.bowling {
  /* background: linear-gradient(135deg, #ff8c00, #ff3d00); */
  background-image: url('./img/bowling.png');

}

.arcade {
  background-image: url('./img/arcade.png');
}

.party {
  background-image: url('./img/party.png');
}

.food {
  background-image: url('./img/music.png');
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.bowling-section {
  position: relative;
  overflow: hidden;
  padding: 70px 60px;
  min-height: 650px;

  background:
    radial-gradient(circle at center, rgba(136, 0, 255, .35), transparent 40%),
    linear-gradient(135deg, #05003f 0%, #37002c 45%, #18001d 100%);
}

/* Stars Effect */
.bowling-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: .35;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  color: #ffff00;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.section-heading p {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 80px;
}

.left-content {
  flex: 1;
}

.left-content h3 {
  color: #d7ff00;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 25px;
}

.left-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.feature {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.feature span {
  color: #ffd000;
  margin-right: 8px;
}

.right-content {
  flex: 1;
  position: relative;
  min-height: 420px;
}

.img-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 30px;
}

.img-card img {
  width: 100%;
  height: 100%;
}

.card-one {
  left: 80px;
  top: 10px;
  transform: rotate(-12deg);
}

.card-two {
  left: 250px;
  top: 25px;
  transform: rotate(8deg);
}

@media(max-width:992px) {

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .content-wrap {
    flex-direction: column;
    text-align: center;
  }

  .left-content h3 {
    font-size: 38px;
  }

  .left-content p {
    font-size: 18px;
  }

  .right-content {
    width: 100%;
    height: 500px;
  }

  .card-one {
    left: 50%;
    transform: translateX(-140px) rotate(-10deg);
  }

  .card-two {
    left: 50%;
    transform: translateX(40px) rotate(8deg);
  }
}

.s3-section {
  position: relative;
  background: linear-gradient(160deg, #0a0000 0%, #150000 40%, #1a0000 70%, #0a0000 100%);
  overflow: hidden;
  padding: 58px 0 68px;
}


/* ── HEADING ── */
.s3-head-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: .05em;
  line-height: 1.05;
  color: var(--s3-yellow);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 30px rgba(255, 215, 0, .55);
  animation: s3TitleGlow 3s ease-in-out infinite;
}

@keyframes s3TitleGlow {

  0%,
  100% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 30px rgba(255, 215, 0, .55)
  }

  50% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 55px rgba(255, 215, 0, 1), 0 0 90px rgba(255, 215, 0, .4)
  }
}

.s3-head-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .9);
  line-height: 1.5;
}

/* ── CARD BASE ── */
.s3-card {
  background: rgba(15, 5, 5, .88);
  border: 1.5px solid rgba(232, 0, 13, .35);
  border-radius: 12px;
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  animation: s3FadeUp .8s ease both;
  cursor: pointer;
  margin-bottom: 20px;
}

.s3-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, .06), transparent);
  transition: left .5s;
}

.s3-card:hover::before {
  left: 100%;
}

.s3-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--s3-red), var(--s3-yellow), var(--s3-red));
  opacity: 0;
  transition: opacity .3s;
}

.s3-card:hover::after {
  opacity: 1;
}

.s3-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .6), 0 0 30px rgba(232, 0, 13, .35);
  border-color: var(--s3-red);
}

/* Featured (tall middle) */
.s3-card.s3-featured {
  border-color: rgba(255, 215, 0, .45);
  background: linear-gradient(160deg, rgba(28, 10, 0, .92), rgba(16, 5, 0, .94));
  box-shadow: 0 0 28px rgba(255, 215, 0, .1), inset 0 0 28px rgba(255, 215, 0, .04);
}

.s3-card.s3-featured::after {
  background: linear-gradient(90deg, var(--s3-yellow), var(--s3-red), var(--s3-yellow));
}

.s3-card.s3-featured:hover {
  border-color: var(--s3-yellow);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .6), 0 0 40px rgba(255, 215, 0, .35);
}

/* ── CARD ELEMENTS ── */
.s3-badge {
  display: inline-block;
  background: var(--s3-red);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(232, 0, 13, .5);
  animation: s3BadgeBlink 2s ease-in-out infinite;
}

@keyframes s3BadgeBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .7
  }
}

.s3-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: .05em;
  line-height: 1.18;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .85);
  margin-bottom: 12px;
}

.s3-card.s3-featured .s3-card-title {
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  color: var(--s3-yellow);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .9), 0 0 20px rgba(255, 215, 0, .5);
}

.s3-big-promo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .8);
  line-height: 1.25;
  margin-bottom: 16px;
}

.s3-highlight {
  color: var(--s3-yellow);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .9), 0 0 20px rgba(255, 215, 0, .7);
}

.s3-deal-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.s3-deal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
  padding: 8px 12px;
  background: rgba(0, 0, 0, .5);
  border-left: 3px solid var(--s3-red);
  border-radius: 0 6px 6px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, .7);
  transition: background .2s, border-color .2s;
}

.s3-deal-row:hover {
  background: rgba(232, 0, 13, .12);
  border-color: var(--s3-yellow);
}

.s3-deal-row .s3-arrow {
  color: var(--s3-yellow);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, .8));
}

.s3-deal-row .s3-free-tag {
  color: var(--s3-green);
  text-shadow: 0 0 8px rgba(57, 255, 20, .7);
  font-weight: 800;
}

.s3-amt {
  color: var(--s3-yellow);
  text-shadow: 0 0 10px rgba(255, 215, 0, .6);
  font-weight: 800;
}

.s3-flat30 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.2;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .9);
  margin-bottom: 18px;
  text-align: center;
}

.s3-flat30 .s3-pct {
  display: block;
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  color: var(--s3-red);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 30px rgba(232, 0, 13, .8);
  animation: s3PctPulse 2s ease-in-out infinite;
}

@keyframes s3PctPulse {

  0%,
  100% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 30px rgba(232, 0, 13, .8)
  }

  50% {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 60px rgba(232, 0, 13, 1), 0 0 90px rgba(232, 0, 13, .4)
  }
}

.s3-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 0, 13, .5), transparent);
  margin: 14px 0;
}

/* CTA button */
.s3-cta {
  display: flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(135deg, var(--s3-yellow), #ff8c00);
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden;
  animation: s3CtaGlow 2.5s ease-in-out infinite;
  transition: transform .15s;
  text-decoration: none;
}

.s3-cta:hover {
  transform: scale(1.03);
}

@keyframes s3CtaGlow {

  0%,
  100% {
    box-shadow: 0 3px 20px rgba(255, 180, 0, .4)
  }

  50% {
    box-shadow: 0 3px 40px rgba(255, 215, 0, .9)
  }
}

.s3-cta-icon {
  background: var(--s3-red);
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  padding: 12px 14px;
  flex-shrink: 0;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.s3-cta-text {
  flex: 1;
  text-align: center;
  padding: 4px 10px;
}

.s3-cta-main {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #000;
  letter-spacing: .05em;
  line-height: 1.2;
}

.s3-cta-sub {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .65);
  letter-spacing: .04em;
}

@keyframes s3FadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* animation delays per card */
.s3-delay-1 {
  animation-delay: .05s
}

.s3-delay-2 {
  animation-delay: .15s
}

.s3-delay-3 {
  animation-delay: .1s
}

.s3-delay-4 {
  animation-delay: .2s
}

.s3-delay-5 {
  animation-delay: .25s
}

.s4-section {
  position: relative;
  background: linear-gradient(170deg, #050010 0%, #0a0020 35%, #050015 70%, #020008 100%);
  overflow: hidden;
  padding: 64px 0 72px;
}


.s4-head {
  text-align: center;
  margin-bottom: 44px;
  animation: s4FadeUp .7s ease both;
}

.s4-head-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: .06em;
  line-height: 1.05;
  color: var(--s4-white);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 30px rgba(102, 0, 204, .6);
}

.s4-head-main span {
  color: var(--s4-yellow);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .9), 0 0 30px rgba(255, 215, 0, .6);
}

.s4-head-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-top: 8px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .9);
}

.s4-gallery-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 4px;
  margin-bottom: 12px;
}

.s4-gallery-wrap::before,
.s4-gallery-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.s4-gallery-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #050010, transparent);
}

.s4-gallery-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #050010, transparent);
}

.s4-belt {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: s4BeltScroll 30s linear infinite;
  cursor: pointer;
}

.s4-belt:hover {
  animation-play-state: paused;
}

@keyframes s4BeltScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.s4-gitem {
  width: 400px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 2px solid rgba(102, 0, 204, .4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5), 0 0 14px rgba(102, 0, 204, .2);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: pointer;
}

.s4-gitem:hover {
  border-color: #ff00aa;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .7), 0 0 30px rgba(255, 0, 170, .45);
  transform: scale(1.06) translateY(-4px);
  z-index: 2;
}

.s4-gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s4-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .38);
  transition: background .2s;
}

.s4-play-overlay:hover {
  background: rgba(0, 0, 0, .15);
}

.s4-play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 3px;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 170, .5);
}

.s4-type-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 2px 7px;
  font-family: 'Orbitron', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}

/* MODAL */
.s4-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
  animation: s4ModalFadeIn .25s ease;
}

.s4-modal-overlay.active {
  display: flex;
}

@keyframes s4ModalFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.s4-modal-box {
  position: relative;
  max-width: 860px;
  width: 92%;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid#fff;
  background: #0a0015;
  animation: s4ModalSlide .3s ease;
}

@keyframes s4ModalSlide {
  from {
    transform: scale(.9);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.s4-modal-media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050010;
  min-height: 320px;
}

.s4-modal-media img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.s4-modal-media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.s4-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, .7);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.s4-modal-close:hover {
  background: var(--s4-red);
  border-color: var(--s4-red);
}

.s4-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, .6);
  border: 1.5px solid rgba(102, 0, 204, .5);
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.s4-modal-arrow:hover {
  background: rgba(102, 0, 204, .5);
  border-color: #ff00aa;
  box-shadow: 0 0 20px rgba(255, 0, 170, .5);
}

.s4-modal-arrow.prev {
  left: 12px;
}

.s4-modal-arrow.next {
  right: 12px;
}

.s4-modal-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  background: rgba(0, 0, 0, .5);
  padding: 4px 12px;
  border-radius: 20px;
}

.s4-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 48px auto 44px;
  padding: 0 24px;
}

.s4-div-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.s4-div-label {
 font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .18em;
    color: rgb(255 255 255 / 90%);
    text-shadow: 0 0 10px #ffffff20;
    white-space: nowrap;
}

.s4-testi-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.s4-testi-track {
  display: flex;
  gap: 22px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.s4-tcard {
  flex: 0 0 calc(50% - 11px);
  background: rgba(10, 0, 22, .85);
  border: 1.5px solid rgba(102, 0, 204, .3);
  border-radius: 14px;
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  animation: s4FadeUp .8s ease both;
}

.s4-tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6600cc, #ff00aa, #00eeff);
  opacity: .7;
}

.s4-tcard:hover {
  border-color: #ff00aa;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5), 0 0 24px rgba(255, 0, 170, .25);
}

.s4-tcard-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: .7;
  color: rgba(102, 0, 204, .35);
  position: absolute;
  top: 14px;
  right: 18px;
  pointer-events: none;
  user-select: none;
}

.s4-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-right: 12px;
  box-shadow: 0 0 12px rgba(102, 0, 204, .4);
  font-weight: 900;
}

.s4-stars {
  color: #ffd700;
  font-size: .85rem;
  letter-spacing: .05em;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, .5));
}

.s4-review-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, .8);
  margin: 8px 0 6px;
}

.s4-review-body {
  font-family: 'Rajdhani', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, .6);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.s4-review-meta {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .04em;
  margin-top: 10px;
}

.s4-testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 0, 22, .9);
  border: 1.5px solid rgba(102, 0, 204, .45);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.s4-testi-btn:hover {
  background: rgba(102, 0, 204, .35);
  border-color: #ff00aa;
  box-shadow: 0 0 16px rgba(255, 0, 170, .45);
}

.s4-testi-btn.prev {
  left: 6px;
}

.s4-testi-btn.next {
  right: 6px;
}

.s4-testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.s4-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(102, 0, 204, .35);
  border: 1px solid rgba(102, 0, 204, .4);
  cursor: pointer;
  transition: background .3s, box-shadow .3s, transform .3s;
}

.s4-dot.active {
  background: #ff00aa;
  border-color: #ff00aa;
  box-shadow: 0 0 10px rgba(255, 0, 170, .7);
  transform: scale(1.3);
}

@keyframes s4FadeUp {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:768px) {
  .s4-tcard {
    flex: 0 0 100%;
  }

  .s4-testi-wrap {
    padding: 0 44px;
  }
}

/* =========================
   MAIN SECTION
========================= */
.rf-section{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;

  background: radial-gradient(circle at 20% 20%, #2a003f 0%, transparent 35%),
              radial-gradient(circle at 80% 30%, #003b57 0%, transparent 40%),
              radial-gradient(circle at 40% 90%, #3a0010 0%, transparent 45%),
              #060612;
  font-family: Arial, sans-serif;
  color:#fff;
}

/* =========================
   NEON OVERLAY
========================= */
.rf-neon-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,0,200,0.08), transparent 40%),
    linear-gradient(240deg, rgba(0,200,255,0.08), transparent 40%),
    radial-gradient(circle at center, rgba(255,0,100,0.12), transparent 60%);
  filter: blur(40px);
  animation: neonMove 8s ease-in-out infinite alternate;
  z-index:0;
}

@keyframes neonMove{
  0%{transform:scale(1) translateX(0);}
  100%{transform:scale(1.1) translateX(20px);}
}

/* =========================
   GRID BACKGROUND
========================= */
.rf-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;

  background-image:
    linear-gradient(rgba(255,0,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.15) 1px, transparent 1px);

  background-size: 60px 60px;
  transform: perspective(300px) rotateX(60deg);
  opacity: 0.25;
  animation: gridMove 10s linear infinite;
}

@keyframes gridMove{
  from{background-position:0 0;}
  to{background-position:0 60px;}
}

/* =========================
   SCAN LINE EFFECT
========================= */
.rf-scan {
  position: absolute;
  left:0;
  right:0;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(0,220,255,.6), transparent);
  animation: scanMove 6s linear infinite;
}

@keyframes scanMove{
  0%{top:-10px; opacity:0;}
  10%{opacity:1;}
  100%{top:100%; opacity:0;}
}

/* =========================
   LAYOUT
========================= */
.rf-inner{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.rf-heading{
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(255,0,255,0.4);
}

.rf-heading span{
  color:#ff2aff;
}

.rf-text{
  margin-top: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 400px;
}

/* BUTTON */
.rf-btn{
  margin-top: 25px;
  display:inline-block;
  padding: 12px 20px;
  background: linear-gradient(90deg,#ff004c,#ff00d4);
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 0 25px rgba(255,0,200,0.4);
  transition:0.3s;
}

.rf-btn:hover{
  transform: translateY(-3px);
  box-shadow:0 0 40px rgba(0,255,255,0.3);
}

/* =========================
   RIGHT IMAGE STACK (AUTO SCROLL)
========================= */
.rf-right{
  height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.rf-col{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.rf-col-1{
  animation: scrollUp 18s linear infinite;
}

.rf-col-2{
  animation: scrollDown 20s linear infinite;
}

@keyframes scrollUp{
  0%{transform:translateY(0);}
  100%{transform:translateY(-50%);}
}

@keyframes scrollDown{
  0%{transform:translateY(-50%);}
  100%{transform:translateY(0);}
}

/* CARD */
.rf-card{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.rf-card:hover{
  transform:scale(1.05);
  box-shadow:0 0 25px rgba(255,0,255,0.3);
}

.rf-card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
  .rf-inner{
    grid-template-columns:1fr;
  }

  .rf-right{
    height: 350px;
  }
}



.glv-wrapper {
      background: var(--glv-bg-dark);
      background-image:
        radial-gradient(ellipse 80% 60% at 20% 10%,  rgba(191,0,255,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 90%,  rgba(0,245,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 50%,  rgba(255,0,204,0.10) 0%, transparent 70%);
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      padding: 40px 24px 56px;
      color: #fff;
      overflow-x: hidden;
      position: relative;
    }
 
    /* scanline overlay */
    .glv-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.08) 3px,
        rgba(0,0,0,0.08) 4px
      );
      pointer-events: none;
      z-index: 0;
    }
 
    /* ── HEADER ── */
    .glv-header {
      text-align: center;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
      animation: glvFadeDown 0.7s ease both;
    }
 
    .glv-header h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(1.2rem, 4vw, 2rem);
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: linear-gradient(90deg, var(--glv-neon-pink), var(--glv-neon-cyan), var(--glv-neon-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 12px rgba(255,0,204,0.7));
      animation: glvHueShift 6s linear infinite;
    }
 
    .glv-header p {
      font-size: clamp(0.85rem, 2vw, 1rem);
      color: rgba(255,255,255,0.55);
      margin-top: 8px;
      letter-spacing: 0.05em;
    }
 
    @keyframes glvHueShift {
      0%   { filter: drop-shadow(0 0 14px rgba(255,0,204,0.9)); }
      33%  { filter: drop-shadow(0 0 14px rgba(0,245,255,0.9)); }
      66%  { filter: drop-shadow(0 0 14px rgba(57,255,20,0.9)); }
      100% { filter: drop-shadow(0 0 14px rgba(255,0,204,0.9)); }
    }
 
    /* ── GRID ── */
    .glv-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--glv-gap);
      max-width: 920px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
 
    .glv-col-group {
      display: flex;
      flex-direction: column;
      gap: var(--glv-gap);
    }
 
    .glv-col-group:nth-child(1) { --glv-col-neon: var(--glv-neon-pink); }
    .glv-col-group:nth-child(2) { --glv-col-neon: var(--glv-neon-cyan); }
    .glv-col-group:nth-child(3) { --glv-col-neon: var(--glv-neon-green); }
    .glv-col-group:nth-child(4) { --glv-col-neon: var(--glv-neon-purple); }
 
    .glv-photo-card {
      position: relative;
      border-radius: var(--glv-radius);
      overflow: hidden;
      cursor: pointer;
      background: #111;
      border: 1.5px solid rgba(255,255,255,0.08);
      box-shadow: 0 0 0px transparent;
      transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
      animation: glvFadeUp 0.55s ease both;
    }
 
    .glv-col-group:nth-child(1) .glv-photo-card:nth-child(1) { animation-delay: 0.05s; }
    .glv-col-group:nth-child(1) .glv-photo-card:nth-child(2) { animation-delay: 0.15s; }
    .glv-col-group:nth-child(2) .glv-photo-card:nth-child(1) { animation-delay: 0.10s; }
    .glv-col-group:nth-child(2) .glv-photo-card:nth-child(2) { animation-delay: 0.20s; }
    .glv-col-group:nth-child(3) .glv-photo-card:nth-child(1) { animation-delay: 0.15s; }
    .glv-col-group:nth-child(3) .glv-photo-card:nth-child(2) { animation-delay: 0.25s; }
    .glv-col-group:nth-child(4) .glv-photo-card:nth-child(1) { animation-delay: 0.20s; }
    .glv-col-group:nth-child(4) .glv-photo-card:nth-child(2) { animation-delay: 0.30s; }
 
    .glv-photo-card:hover {
      border-color: var(--glv-col-neon);
      box-shadow:
        0 0 12px var(--glv-col-neon),
        0 0 30px color-mix(in srgb, var(--glv-col-neon) 40%, transparent),
        inset 0 0 10px color-mix(in srgb, var(--glv-col-neon) 10%, transparent);
      transform: translateY(-4px) scale(1.01);
    }
 
    .glv-photo-card.glv-tall  { aspect-ratio: 3 / 4; }
    .glv-photo-card.glv-short { aspect-ratio: 4 / 3; }
 
    .glv-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease, filter 0.3s ease;
      filter: brightness(0.82) saturate(1.2) contrast(1.05);
    }
 
    .glv-photo-card:hover img {
      transform: scale(1.07);
      filter: brightness(1.0) saturate(1.3) contrast(1.08);
    }
 
    .glv-photo-card .glv-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--glv-col-neon) 20%, transparent) 0%,
        transparent 50%,
        rgba(0,0,0,0.55) 100%
      );
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding: 12px;
    }
 
    .glv-photo-card:hover .glv-overlay { opacity: 1; }
 
    .glv-zoom-icon {
      width: 36px;
      height: 36px;
      background: var(--glv-col-neon);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 14px var(--glv-col-neon);
      transform: scale(0.7);
      transition: transform 0.25s ease;
    }
 
    .glv-photo-card:hover .glv-zoom-icon { transform: scale(1); }
    .glv-zoom-icon svg { width: 16px; height: 16px; fill: #000; }
 
    /* ── CTA ── */
    .glv-cta-section {
      text-align: center;
      margin-top: 36px;
      position: relative;
      z-index: 1;
      animation: glvFadeUp 0.6s ease 0.4s both;
    }
 
    .glv-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(90deg, #ff0080, #ff6600);
      color: #fff;
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 14px 30px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 20px rgba(255,0,128,0.6), 0 0 40px rgba(255,102,0,0.3);
      transition: box-shadow 0.3s ease, transform 0.2s ease;
      animation: glvPulseCTA 2.5s ease-in-out infinite;
    }
 
    .glv-cta-btn:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 0 30px rgba(255,0,128,0.9), 0 0 60px rgba(255,102,0,0.5);
      animation: none;
    }
 
    @keyframes glvPulseCTA {
      0%, 100% { box-shadow: 0 0 20px rgba(255,0,128,0.6), 0 0 40px rgba(255,102,0,0.3); }
      50%       { box-shadow: 0 0 30px rgba(255,0,128,0.9), 0 0 60px rgba(255,102,0,0.6); }
    }
 
    .glv-cta-btn .glv-chevrons {
      background: rgba(255,255,255,0.2);
      padding: 3px 7px;
      border-radius: 4px;
    }
 
    .glv-cta-sub {
      color: rgba(255,255,255,0.4);
      font-size: 0.72rem;
      margin-top: 9px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
 
    /* ── LIGHTBOX ── */
    .glv-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5, 5, 16, 0.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
 
    .glv-lightbox.glv-active {
      display: flex;
      animation: glvFadeIn 0.2s ease both;
    }
 
    .glv-lb-inner {
      position: relative;
      max-width: 960px;
      width: 100%;
    }
 
    .glv-lb-img-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      max-height: 82vh;
    }
 
    #glvLbImg {
      max-width: 100%;
      max-height: 82vh;
      object-fit: contain;
      border-radius: var(--glv-radius);
      display: block;
      border: 1.5px solid rgba(0,245,255,0.4);
      box-shadow:
        0 0 25px rgba(0,245,255,0.4),
        0 0 60px rgba(191,0,255,0.3),
        0 20px 60px rgba(0,0,0,0.7);
      animation: glvScaleIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
      transition: opacity 0.12s ease;
    }
 
    .glv-lb-close {
      position: absolute;
      top: -48px;
      right: 0;
      width: 38px;
      height: 38px;
      background: rgba(255,0,204,0.15);
      border: 1px solid rgba(255,0,204,0.5);
      border-radius: 50%;
      color: var(--glv-neon-pink);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-shadow: 0 0 8px var(--glv-neon-pink);
      box-shadow: 0 0 10px rgba(255,0,204,0.4);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
 
    .glv-lb-close:hover {
      background: rgba(255,0,204,0.35);
      transform: rotate(90deg);
      box-shadow: 0 0 20px rgba(255,0,204,0.8);
    }
 
    .glv-lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      background: rgba(0,245,255,0.1);
      border: 1px solid rgba(0,245,255,0.4);
      border-radius: 50%;
      color: var(--glv-neon-cyan);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-shadow: 0 0 8px var(--glv-neon-cyan);
      box-shadow: 0 0 10px rgba(0,245,255,0.3);
      transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    }
 
    .glv-lb-nav:hover {
      background: rgba(0,245,255,0.25);
      box-shadow: 0 0 22px rgba(0,245,255,0.8);
    }
 
    .glv-lb-prev { left: -62px; }
    .glv-lb-next { right: -62px; }
    .glv-lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
    .glv-lb-next:hover { transform: translateY(-50%) translateX(3px); }
 
    .glv-lb-counter {
      text-align: center;
      color: rgba(0,245,255,0.5);
      font-family: 'Orbitron', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      margin-top: 14px;
      text-shadow: 0 0 8px rgba(0,245,255,0.6);
    }
 
    /* ── KEYFRAMES ── */
    @keyframes glvFadeIn   { from { opacity: 0; } to { opacity: 1; } }
    @keyframes glvFadeUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes glvFadeDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes glvScaleIn  { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .glv-grid { grid-template-columns: repeat(2, 1fr); }
      .glv-lb-prev { left: -8px; }
      .glv-lb-next { right: -8px; }
      .glv-lb-close { top: -42px; }
    }