/* LRXTeamTV — Premium FX Layer */

/* ─── CUSTOM CURSOR (desktop) ─── */
@media (pointer: fine) {
  body.index-page {
    cursor: none;
  }

  body.index-page a,
  body.index-page button,
  body.index-page input,
  body.index-page textarea,
  body.index-page .glightbox {
    cursor: none;
  }

  #cursor-dot,
  #cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  #cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--lrx-red-hot);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--lrx-red-hot);
  }

  #cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 10, 26, 0.55);
    border-radius: 50%;
    transition: transform 0.12s ease-out, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  }

  body.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--lrx-red-hot);
    background: rgba(255, 10, 26, 0.06);
  }

  body.cursor-click #cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
  }
}

/* ─── TOAST ─── */
#lrx-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99998;
  padding: 16px 24px;
  background: #111;
  border: 1px solid var(--lrx-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: var(--lrx-glow);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
  max-width: min(360px, 90vw);
}

#lrx-toast.show {
  transform: translateY(0);
  opacity: 1;
}

#lrx-toast.success { border-color: #00e701; box-shadow: 0 0 30px rgba(0, 231, 1, 0.25); }
#lrx-toast.error { border-color: var(--lrx-red-hot); }

/* ─── HERO PILLS (ekip odaklı) ─── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 10, 26, 0.08);
  border: 1px solid rgba(255, 10, 26, 0.28);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-pill i {
  color: var(--lrx-red-hot);
  font-size: 0.95rem;
}

.hero-pill:hover {
  transform: translateY(-2px);
  border-color: var(--lrx-red-hot);
  background: rgba(255, 10, 26, 0.15);
}

/* ─── HERO SCROLL HINT ─── */
.hero-scroll-hint {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--lrx-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 3;
  opacity: 0;
  animation: heroReveal 0.8s ease 1.2s forwards;
}

.hero-scroll-hint i {
  font-size: 1.2rem;
  color: var(--lrx-red-hot);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

.hero-pill:nth-child(1) { animation: pillIn 0.6s ease 0.95s both; }
.hero-pill:nth-child(2) { animation: pillIn 0.6s ease 1.05s both; }
.hero-pill:nth-child(3) { animation: pillIn 0.6s ease 1.15s both; }

@keyframes pillIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION CUT (diagonal divider) ─── */
.section-cut {
  height: 80px;
  background: var(--lrx-bg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.section-cut-alt {
  background: var(--lrx-bg-2);
}

.section-cut-inner {
  position: absolute;
  inset: 0;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.section-cut-alt .section-cut-inner {
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  background: var(--lrx-bg-2);
}

.section-cut + .section,
.section-cut-alt + .section {
  padding-top: 40px;
}

/* ─── SECTION WATERMARK ─── */
.section-watermark {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(255, 10, 26, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: transform 0.1s linear;
}

.section-aggressive,
.gallery-section {
  position: relative;
  overflow: hidden;
}

.section-aggressive > .container,
.gallery-section > .container,
.gallery-section > .container-fluid {
  position: relative;
  z-index: 1;
}

/* ─── TILT CARDS ─── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.tilt-card .kick-card,
.tilt-card.lrx-card {
  transform: translateZ(20px);
}

/* ─── KICK CARD GLOW BORDER ─── */
.kick-card-glow {
  position: relative;
  overflow: hidden;
}

.kick-card-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 40%, var(--lrx-red-hot), transparent 60%);
  z-index: 0;
  animation: borderSpin 4s linear infinite;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.kick-card-glow::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--lrx-surface);
  z-index: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.kick-card-glow:hover::before {
  opacity: 1;
}

.kick-card-glow > * {
  position: relative;
  z-index: 1;
}

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderSpin {
  to { --glow-angle: 360deg; }
}

/* ─── TEAM CARD ROTATING RED BORDER ─── */
.team-glow-wrap {
  position: relative;
  padding: 2px;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0deg,
    transparent 250deg,
    var(--lrx-red-hot) 290deg,
    #fff 310deg,
    var(--lrx-red-hot) 330deg,
    transparent 360deg
  );
  animation: borderSpin 3s linear infinite;
  box-shadow: 0 0 24px rgba(255, 10, 26, 0.15);
}

.team-glow-wrap .team-card {
  position: relative;
  z-index: 1;
  height: 100%;
  margin: 0;
  border: none !important;
  background: var(--lrx-surface);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.team-glow-wrap:hover {
  box-shadow: 0 0 36px rgba(255, 10, 26, 0.35);
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .team-glow-wrap {
    background: linear-gradient(135deg, var(--lrx-red-hot), transparent, var(--lrx-red-hot));
    animation: none;
  }
}

/* fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .kick-card-glow::before { display: none; }
}

/* ─── GALLERY HOVER FX ─── */
.gallery-section .g-item,
.gallery-section .full-grid a,
.full-grid a {
  position: relative;
  overflow: hidden;
}

.gallery-section .g-item::after,
.gallery-section .full-grid a::after,
.full-grid a::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 10, 26, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-section .g-item:hover::after,
.gallery-section .full-grid a:hover::after,
.full-grid a:hover::after {
  opacity: 1;
}

.gallery-section .g-item:hover img,
.full-grid a:hover img {
  transform: scale(1.08);
}

.gallery-section .g-item img,
.full-grid a img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

/* ─── GLIGHTBOX THEME ─── */
.glightbox-container {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(12px);
}

.glightbox-container .gslide-media img {
  border: 1px solid rgba(255, 10, 26, 0.35);
  box-shadow: 0 0 60px rgba(255, 10, 26, 0.2);
  max-width: min(78vw, 1100px) !important;
  max-height: 78vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.glightbox-container .gslide-description,
.glightbox-container .gdesc-inner,
.glightbox-container .gslide-title {
  display: none !important;
}

.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
  background: rgba(255, 10, 26, 0.15) !important;
  border: 1px solid rgba(255, 10, 26, 0.45) !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.glightbox-container .gclose:hover,
.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
  background: rgba(255, 10, 26, 0.35) !important;
  transform: scale(1.05);
}

/* ─── Hover spotlight layer ─── */
.lrx-card,
.team-card,
.kick-card,
.gallery-section .g-item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
}

.lrx-card::after,
.team-card::after,
.kick-card::after,
.gallery-section .g-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lrx-card::after,
.team-card::after,
.kick-card::after {
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(255, 20, 40, 0.2), transparent 65%);
}

.gallery-section .g-item::before {
  background: radial-gradient(180px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.18), transparent 70%);
}

.lrx-card.spotlight-on::after,
.team-card.spotlight-on::after,
.kick-card.spotlight-on::after,
.gallery-section .g-item.spotlight-on::before {
  opacity: 1;
}

/* ─── SECTION LABEL SHIMMER ─── */
.section-label {
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: labelShimmer 4s ease infinite;
}

@keyframes labelShimmer {
  0%, 80%, 100% { left: -100%; }
  40% { left: 150%; }
}

/* ─── HERO LINE STROKE ─── */
.hero-line-1 {
  -webkit-text-stroke: 1px rgba(255, 10, 26, 0.15);
  paint-order: stroke fill;
}

/* ─── FOOTER PREMIUM ─── */
.footer-premium {
  padding: 60px 0 30px !important;
  background: linear-gradient(180deg, #000 0%, #0a0002 100%) !important;
  border-top: 1px solid rgba(255, 10, 26, 0.2) !important;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lrx-red-hot), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--lrx-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #5865f2 !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.25s ease;
}

.footer-discord:hover {
  background: rgba(88, 101, 242, 0.25);
  color: #fff !important;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.3);
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lrx-red-hot);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--lrx-muted) !important;
  font-size: 0.9rem;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff !important;
  transform: translateX(6px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--lrx-border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--lrx-muted);
}

.footer-tag {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255, 10, 26, 0.5);
  font-size: 0.9rem;
}

/* ─── CTA ENHANCED PULSE ─── */
.cta-banner {
  position: relative;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  background: linear-gradient(135deg, var(--lrx-red-hot), transparent, var(--lrx-red-hot)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  animation: ctaBorderPulse 3s ease infinite;
  pointer-events: none;
}

@keyframes ctaBorderPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

/* ─── TEAM CARD HOLO ─── */
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 10, 26, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card:hover::before {
  opacity: 1;
}

/* ─── INTRO ENHANCED ─── */
#lrx-intro .intro-sub::after {
  content: attr(data-pct);
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-watermark {
    font-size: 6rem;
    right: 2%;
    opacity: 0.5;
  }

  .hero-pills { gap: 8px; }
  .hero-scroll-hint { bottom: 54px; }
}

@media (max-width: 575px) {
  #lrx-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-pill {
    font-size: 0.68rem;
    padding: 8px 14px;
  }

  .hero-scroll-hint { display: none; }
}

@media (pointer: coarse) {
  #cursor-dot,
  #cursor-ring { display: none !important; }
}

/* ═══════════════════════════════════════
   CINEMATIC + NEON + KICK BLAST
   ═══════════════════════════════════════ */

/* Intro curtains */
.intro-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #000;
  z-index: 2;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
}

.intro-curtain-left { left: 0; border-right: 1px solid rgba(255, 10, 26, 0.3); }
.intro-curtain-right { right: 0; border-left: 1px solid rgba(255, 10, 26, 0.3); }

#lrx-intro.reveal .intro-curtain-left { transform: translateX(-100%); }
#lrx-intro.reveal .intro-curtain-right { transform: translateX(100%); }

.intro-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 10, 26, 0.12) 50%, transparent 60%);
  animation: introScan 2s ease infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes introScan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Hero cinematic reveal */
body.cinematic-loading .hero-cinematic .hero-content > *,
body.cinematic-loading .hero-cinematic .hero-side {
  opacity: 0;
  animation: none !important;
}

body.cinematic-loading .hero-cinematic .hero-pills {
  opacity: 0;
  animation: none;
}

.hero-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: #000;
  z-index: 8;
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1) 0.15s;
}

.hero-curtain-left { left: 0; }
.hero-curtain-right { right: 0; }

body.cinematic-ready .hero-curtain-left { transform: translateX(-100%); }
body.cinematic-ready .hero-curtain-right { transform: translateX(100%); }

.hero-flash-burst {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: radial-gradient(circle at 30% 40%, rgba(255, 10, 26, 0.35), transparent 55%);
  opacity: 0;
}

body.cinematic-ready .hero-flash-burst {
  animation: heroBurst 0.8s ease 0.2s forwards;
}

@keyframes heroBurst {
  0% { opacity: 0; transform: scale(0.8); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.2); }
}

body.cinematic-ready .hero-pills {
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

body.cinematic-ready .hero-side {
  animation: cinematicIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

body.cinematic-ready .hero-content > * {
  animation: cinematicIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.cinematic-ready .hero-tag { animation-delay: 0.1s; }
body.cinematic-ready .hero-title { animation-delay: 0.25s; }
body.cinematic-ready .hero-divider { animation-delay: 0.4s; }
body.cinematic-ready .hero-desc { animation-delay: 0.5s; }
body.cinematic-ready .hero-actions { animation-delay: 0.65s; }

@keyframes cinematicIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

body.cinematic-ready .hero-line-1 {
  animation: titleSlam 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes titleSlam {
  from { opacity: 0; transform: translateX(-40px) skewX(-6deg); letter-spacing: 0.2em; }
  to { opacity: 1; transform: translateX(0) skewX(0); letter-spacing: 0.04em; }
}

/* Kick blast CTA (replaces left Discord) */
.hero-kick-blast {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  min-width: 0;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 231, 1, 0.12), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(0, 231, 1, 0.45);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-kick-blast:hover {
  color: #fff;
  border-color: #00e701;
  box-shadow: 0 0 40px rgba(0, 231, 1, 0.35), inset 0 0 30px rgba(0, 231, 1, 0.08);
  transform: translateY(-3px);
}

.kick-blast-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 231, 1, 0.25), transparent 30%);
  animation: kickSpin 3s linear infinite;
  pointer-events: none;
}

@keyframes kickSpin {
  to { transform: rotate(360deg); }
}

.hero-kick-blast strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.kick-blast-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: kickShine 3.5s ease infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes kickShine {
  0%, 70%, 100% { left: -120%; }
  40% { left: 140%; }
}

.kick-blast-icon {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  font-size: 1.25rem;
  color: rgba(0, 231, 1, 0.85);
  z-index: 1;
  flex-shrink: 0;
}

/* Neon section bridges */
.neon-bridge {
  position: relative;
  height: 72px;
  margin: -12px 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.neon-bridge-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 10, 26, 0.03), transparent);
}

.neon-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lrx-red-hot), #fff, var(--lrx-red-hot), transparent);
  box-shadow: 0 0 12px var(--lrx-red-hot), 0 0 24px rgba(255, 10, 26, 0.4);
  opacity: 0;
  transform: scaleX(0);
}

.neon-line-a {
  top: 35%;
  left: 5%;
  right: 5%;
  transform-origin: left;
}

.neon-line-b {
  top: 60%;
  left: 15%;
  right: 15%;
  transform-origin: right;
  animation-delay: 0.2s;
}

.neon-bridge.neon-active .neon-line {
  animation: neonDraw 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.neon-bridge.neon-active .neon-line-b {
  animation-delay: 0.25s;
}

@keyframes neonDraw {
  0% { opacity: 0; transform: scaleX(0); }
  60% { opacity: 1; }
  100% { opacity: 0.85; transform: scaleX(1); }
}

.neon-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: var(--lrx-red-hot);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--lrx-red-hot), 0 0 40px rgba(255, 10, 26, 0.5);
  opacity: 0;
  transform: scale(0);
}

.neon-bridge.neon-active .neon-node {
  animation: neonPulse 0.6s ease 0.5s forwards, neonGlow 2s ease 1s infinite;
}

@keyframes neonPulse {
  to { opacity: 1; transform: scale(1); }
}

@keyframes neonGlow {
  0%, 100% { box-shadow: 0 0 20px var(--lrx-red-hot); }
  50% { box-shadow: 0 0 35px var(--lrx-red-hot), 0 0 60px rgba(255, 10, 26, 0.6); }
}

/* Masonry item hover in modal */
.g-masonry-item {
  position: relative;
}

.g-masonry-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(255, 10, 26, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}

.g-masonry-item:hover::after {
  opacity: 1;
}

@media (max-width: 575px) {
  .hero-kick-blast {
    width: 100%;
    min-width: 0;
  }

  .hero-kick-blast strong {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-lrx,
  .hero-actions .hero-kick-blast {
    width: 100%;
    justify-content: center;
  }
}

/* ═══ EXTRA WOW FX ═══ */

/* Shockwave on cinematic reveal */
.hero-shockwave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border: 2px solid rgba(255, 10, 26, 0.6);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}

body.cinematic-ready .hero-shockwave {
  animation: shockwave 1.4s ease 0.15s forwards;
}

@keyframes shockwave {
  0% { opacity: 0.8; transform: scale(0.2); }
  100% { opacity: 0; transform: scale(8); }
}

/* Floating orbs in hero */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-floaters span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--lrx-red-hot);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--lrx-red-hot);
  opacity: 0.5;
  animation: floaterDrift 8s ease-in-out infinite;
}

.hero-floaters span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-floaters span:nth-child(2) { top: 32%; right: 18%; animation-delay: 1.5s; width: 4px; height: 4px; }
.hero-floaters span:nth-child(3) { bottom: 28%; left: 22%; animation-delay: 3s; }
.hero-floaters span:nth-child(4) { top: 55%; right: 8%; animation-delay: 4.5s; width: 8px; height: 8px; }

@keyframes floaterDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(18px, -24px); opacity: 0.9; }
}

/* Holographic frame ring */
.hero-frame-holo {
  position: relative;
}

.hero-frame-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 10, 26, 0.35);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  animation: holoRing 4s ease infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes holoRing {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); box-shadow: 0 0 30px rgba(255, 10, 26, 0.35); }
}

/* Title shimmer */
body.cinematic-ready .hero-line-2 {
  background: linear-gradient(90deg, var(--lrx-red-hot), #fff, var(--lrx-red-hot), #ff6b7a);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShimmer 5s linear infinite, titleSlam 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

@keyframes titleShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Marquee glow pulse */
.hero-marquee {
  box-shadow: 0 -8px 40px rgba(255, 10, 26, 0.25);
  animation: marqueeGlow 3s ease infinite;
}

@keyframes marqueeGlow {
  0%, 100% { box-shadow: 0 -4px 24px rgba(255, 10, 26, 0.15); }
  50% { box-shadow: 0 -12px 48px rgba(255, 10, 26, 0.4); }
}

/* Kick section spotlight on navigate */
.kick-section-spotlight {
  position: relative;
  transition: box-shadow 0.6s ease;
}

.kick-section-spotlight.kick-highlight {
  animation: kickSectionFlash 1.8s ease;
}

@keyframes kickSectionFlash {
  0% { box-shadow: inset 0 0 0 rgba(0, 231, 1, 0); }
  25% { box-shadow: inset 0 0 80px rgba(0, 231, 1, 0.12); }
  100% { box-shadow: inset 0 0 0 rgba(0, 231, 1, 0); }
}

/* Click ripple */
.click-ripple {
  position: fixed;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: rgba(255, 10, 26, 0.5);
  pointer-events: none;
  z-index: 99997;
  animation: clickRipple 0.7s ease forwards;
}

@keyframes clickRipple {
  to { transform: scale(12); opacity: 0; }
}

/* Section title glitch flash on view */
.section-title h2.title-flash {
  animation: titleFlash 0.6s ease;
}

@keyframes titleFlash {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 30px rgba(255, 10, 26, 0.6); color: #fff; }
}

/* ═══════════════════════════════════════
   ULTRA PREMIUM LAYER v2
   ═══════════════════════════════════════ */

/* Scroll-top premium ring */
.scroll-top-premium {
  width: 52px !important;
  height: 52px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease !important;
  background: rgba(0, 0, 0, 0.85) !important;
  overflow: visible !important;
}

.scroll-top-premium.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-premium .scroll-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2.5;
}

.scroll-ring-fill {
  fill: none;
  stroke: var(--lrx-red-hot);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 119.38;
  stroke-dashoffset: 119.38;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 4px var(--lrx-red-hot));
}

.scroll-top-premium i {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}

/* Typewriter cursor */
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 3px;
  background: var(--lrx-red-hot);
  vertical-align: text-bottom;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Confetti */
#confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100002;
  overflow: hidden;
}

.confetti-bit {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  animation: confettiFly 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes confettiFly {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* Magnetic logo */
.magnetic-logo {
  transition: transform 0.15s ease, text-shadow 0.25s ease;
}

.magnetic-logo:hover .sitename {
  text-shadow: 0 0 24px rgba(255, 10, 26, 0.6);
}

/* Kick section mesh bg */
.kick-section-mesh {
  position: relative;
  overflow: hidden;
}

.kick-section-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 231, 1, 0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 10, 26, 0.08), transparent 45%),
    linear-gradient(rgba(255, 10, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 10, 26, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
  pointer-events: none;
  z-index: 0;
  animation: meshDrift 20s linear infinite;
}

.kick-section-mesh > .container {
  position: relative;
  z-index: 1;
}

@keyframes meshDrift {
  to { background-position: 0 0, 0 0, 40px 40px, 40px 40px; }
}

/* Contact form focus glow */
.contact-form-wrapper .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 10, 26, 0.15), 0 0 20px rgba(255, 10, 26, 0.12) !important;
}

.contact-form-wrapper .input-with-icon:focus-within i {
  color: #fff;
  text-shadow: 0 0 10px var(--lrx-red-hot);
}

/* Principle card quote glow */
.principle-card {
  position: relative;
}

.principle-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 10, 26, 0.2);
  font-family: Georgia, serif;
  pointer-events: none;
}

.principle-card p {
  padding-left: 8px;
}

/* Team owner electric pulse */
.team-card.owner {
  animation: ownerPulse 4s ease infinite;
}

@keyframes ownerPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 10, 26, 0); }
  50% { box-shadow: 0 0 35px rgba(255, 10, 26, 0.2); }
}

/* FAQ active glow */
.faq-item.faq-active {
  box-shadow: inset 4px 0 0 var(--lrx-red), 0 0 24px rgba(255, 10, 26, 0.1) !important;
}

/* CTA banner mesh */
.cta-banner {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255, 10, 26, 0.12), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 10, 26, 0.08), transparent 50%),
    linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(0, 0, 0, 0.6)) !important;
}

/* Nav active pill glow */
#navmenu ul li a.active {
  text-shadow: 0 0 12px rgba(255, 10, 26, 0.5);
}
