/* ============================================
   SNIPERS GAME ROOM — snipersgameroom.com
   PREMIUM EDITION • GSAP Animations • Glitch FX
   ============================================ */
:root {
  --bg: #0a0a0c;
  --panel: #131316;
  --panel-2: #1a1a1f;
  --red: #e3242b;
  --red-bright: #ff2a2a;
  --red-dark: #8f1015;
  --text: #eaeaea;
  --muted: #9a9aa2;
  --glow: 0 0 12px rgba(255, 42, 42, .55), 0 0 40px rgba(227, 36, 43, .25);
  --transition: all .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  perspective: 1000px;
}

h1, h2, h3, .logo-text, .btn { font-family: 'Orbitron', 'Rajdhani', sans-serif; }

a { color: var(--red-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Nav ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 12, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(227, 36, 43, .35);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1200px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--red); }
.logo-text {
  color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: 2px;
  text-shadow: var(--glow);
}
.logo-text span { color: var(--red-bright); }
nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
nav ul a {
  color: var(--text); font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  font-size: .85rem;
}
nav ul a:hover, nav ul a.active { color: var(--red-bright); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 6px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: .85rem;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; box-shadow: var(--glow);
}
.btn-ghost {
  border: 2px solid var(--red); color: #fff; background: transparent;
}
.btn-ghost:hover { background: rgba(227, 36, 43, .15); }

/* ---------- Hero ---------- */
.hero {
  position: relative; text-align: center; padding: 90px 20px 70px;
  border-bottom: 1px solid rgba(227, 36, 43, .3);
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow: hidden;
  background: var(--bg);
}

/* Hero background image */
.hero-bg-image {
  display: none;
}

/* Animated hero background overlay */
.hero-bg-animate {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(227, 36, 43, .22), transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(227, 36, 43, .05) 22px 23px);
  pointer-events: none;
  z-index: 2;
}
.hero img.hero-logo {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 24px;
  border: 3px solid var(--red); box-shadow: var(--glow);
  position: relative;
  z-index: 20;
  animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: var(--glow); transform: scale(1); }
  50% { box-shadow: 0 0 30px rgba(255, 42, 42, 0.9), 0 0 60px rgba(227, 36, 43, 0.5); transform: scale(1.05); }
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: 4px;
  color: #fff; text-shadow: var(--glow); text-transform: uppercase;
  position: relative;
  z-index: 20;
  animation: title-glow 2s ease-in-out infinite;
}

@keyframes title-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 42, 42, 0.5), 0 0 20px rgba(227, 36, 43, 0.3); }
  50% { text-shadow: 0 0 20px rgba(255, 42, 42, 0.9), 0 0 40px rgba(227, 36, 43, 0.5), 0 0 60px rgba(255, 42, 42, 0.3); }
}
.hero h1 span { color: var(--red-bright); }
/* ========== GAMES TICKER ========== */
.games-ticker {
  margin: 30px auto 40px;
  max-width: 900px;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: linear-gradient(90deg,
    rgba(10, 10, 12, 0.85) 0%,
    rgba(19, 19, 22, 0.7) 50%,
    rgba(10, 10, 12, 0.85) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 42, 42, 0.3);
  border-radius: 8px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

.games-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 0 12px var(--red-bright);
}

.games-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 0 12px var(--red-bright);
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--red-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.8);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ff2a2a;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff2a2a;
  animation: live-pulse 1.5s ease-in-out infinite;
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #ff2a2a;
  animation: live-ring 1.5s ease-out infinite;
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px #ff2a2a; }
  50% { transform: scale(1.2); box-shadow: 0 0 20px #ff2a2a, 0 0 30px #ff2a2a; }
}

@keyframes live-ring {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}

.ticker-games {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.game-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s;
  white-space: nowrap;
}

.game-title:hover {
  color: var(--red-bright);
  text-shadow: 0 0 12px rgba(255, 42, 42, 0.8);
  transform: scale(1.05);
}

.game-separator {
  color: var(--red);
  font-size: 0.6rem;
  opacity: 0.7;
  animation: separator-pulse 2s ease-in-out infinite;
}

@keyframes separator-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; text-shadow: 0 0 8px var(--red-bright); }
}

@media (max-width: 640px) {
  .games-ticker {
    flex-direction: column;
    padding: 14px 20px;
    gap: 12px;
  }
  .game-title { font-size: 0.9rem; }
}
.hero .cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.hero .btn {
  position: relative;
  overflow: hidden;
}

.hero .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.stats {
  display: flex; gap: 40px; justify-content: center; margin-top: 46px; flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.stat {
  padding: 20px 30px;
  background: rgba(227, 36, 43, 0.1);
  border: 2px solid rgba(255, 42, 42, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.stat:hover {
  background: rgba(227, 36, 43, 0.2);
  border-color: var(--red-bright);
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.4);
  transform: translateY(-5px);
}

.stat b {
  display: block;
  font-size: 1.9rem;
  color: var(--red-bright);
  font-family: 'Orbitron', sans-serif;
  animation: stat-count 0.5s ease-out;
}

.stat small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes stat-count {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-title {
  text-align: center; font-size: 1.7rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px; color: #fff;
}
.section-title span { color: var(--red-bright); }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 42px; }
.rule { width: 70px; height: 3px; background: var(--red); margin: 14px auto 0; box-shadow: var(--glow); }

/* ---------- Video embeds ---------- */
.video-wrap {
  position: relative; padding-top: 56.25%; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(227, 36, 43, .4); box-shadow: 0 8px 30px rgba(0, 0, 0, .6);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }

/* Compact grid for gear cards */
#gearGrid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel); border: 1px solid #26262c; border-radius: 10px;
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .15s, border-color .15s;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.card:hover { transform: translateY(-4px); border-color: var(--red); }
.card .icon {
  font-size: 3.5rem;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 20px;
  background:
    linear-gradient(145deg, #1f1f24, #0a0a0c),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
  background-blend-mode: overlay;
  box-shadow:
    inset 2px 2px 6px rgba(255, 42, 42, 0.4),
    inset -2px -2px 6px rgba(0, 0, 0, 0.9),
    inset 0 0 20px rgba(255, 42, 42, 0.15),
    8px 8px 20px rgba(0, 0, 0, 0.8),
    -4px -4px 16px rgba(255, 42, 42, 0.1),
    0 0 30px rgba(255, 42, 42, 0.3);
  filter:
    drop-shadow(0 0 12px rgba(255, 42, 42, 0.6))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
  animation: icon-shine 3s ease-in-out infinite;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow:
    0 0 20px rgba(255, 42, 42, 0.9),
    0 0 40px rgba(227, 36, 43, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.9),
    -1px -1px 2px rgba(255, 255, 255, 0.2);
}

.card .icon::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 16px 16px 40% 40%;
  pointer-events: none;
}

.card:hover .icon {
  transform: translateY(-6px) scale(1.1) rotateX(10deg);
  box-shadow:
    inset 2px 2px 6px rgba(255, 42, 42, 0.6),
    inset -2px -2px 6px rgba(0, 0, 0, 0.9),
    inset 0 0 25px rgba(255, 42, 42, 0.25),
    12px 12px 28px rgba(0, 0, 0, 0.9),
    -6px -6px 20px rgba(255, 42, 42, 0.15),
    0 0 50px rgba(255, 42, 42, 0.6);
}

@keyframes icon-shine {
  0%, 100% {
    filter:
      drop-shadow(0 0 12px rgba(255, 42, 42, 0.6))
      drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
  }
  50% {
    filter:
      drop-shadow(0 0 24px rgba(255, 42, 42, 0.9))
      drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
  }
}
.card h3 { color: #fff; font-size: 1.05rem; letter-spacing: 1px; }
.card .price { color: var(--red-bright); font-weight: 700; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card .btn { align-self: flex-start; padding: 10px 22px; font-size: .75rem; }
.badge {
  display: inline-block; background: var(--red-dark); color: #fff; border-radius: 4px;
  padding: 2px 10px; font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
  align-self: flex-start;
}

/* ---------- Premium Social Cards ---------- */
.socials-section {
  padding: 80px 0;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.social-card {
  position: relative;
  padding: 32px 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
  background: linear-gradient(145deg, #1a1a1f, #0a0a0c);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.08),
    inset -2px -2px 4px rgba(0, 0, 0, 0.6),
    6px 6px 20px rgba(0, 0, 0, 0.6),
    -3px -3px 12px rgba(255, 255, 255, 0.02);
}

/* Top gloss shine */
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: 16px 16px 50% 50%;
  pointer-events: none;
  z-index: 1;
}

/* Brand color glow layer */
.social-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.social-card:hover {
  transform: translateY(-12px) scale(1.05);
}

.social-card:hover::after {
  opacity: 1;
}

/* Icon container with 3D embossed effect */
.social-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(145deg, #252530, #0a0a0c);
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.1),
    inset -3px -3px 8px rgba(0, 0, 0, 0.8),
    4px 4px 12px rgba(0, 0, 0, 0.8);
}

.social-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  transition: all 0.4s;
}

.social-card:hover .social-icon {
  transform: translateY(-6px) rotateY(360deg);
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.15),
    inset -3px -3px 8px rgba(0, 0, 0, 0.9),
    8px 8px 24px rgba(0, 0, 0, 0.9);
}

.social-label {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.social-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.social-card:hover .social-sub {
  color: #fff;
}

/* ========== YOUTUBE ========== */
.social-card.youtube:hover {
  border-color: #FF0000;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 0, 0, 0.6),
    12px 12px 32px rgba(0, 0, 0, 0.8);
}
.social-card.youtube:hover::after {
  background: radial-gradient(circle at 50% 30%, rgba(255, 0, 0, 0.25), transparent 70%);
}
.social-card.youtube .social-icon {
  color: #FF0000;
}
.social-card.youtube:hover .social-icon {
  background: linear-gradient(145deg, #FF3333, #CC0000);
  color: #fff;
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -3px -3px 8px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.7),
    4px 4px 12px rgba(0, 0, 0, 0.8);
}

/* ========== FACEBOOK ========== */
.social-card.facebook:hover {
  border-color: #1877F2;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(24, 119, 242, 0.6),
    12px 12px 32px rgba(0, 0, 0, 0.8);
}
.social-card.facebook:hover::after {
  background: radial-gradient(circle at 50% 30%, rgba(24, 119, 242, 0.25), transparent 70%);
}
.social-card.facebook .social-icon {
  color: #1877F2;
}
.social-card.facebook:hover .social-icon {
  background: linear-gradient(145deg, #4A9BFF, #0d5cba);
  color: #fff;
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -3px -3px 8px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(24, 119, 242, 0.7),
    4px 4px 12px rgba(0, 0, 0, 0.8);
}

/* ========== INSTAGRAM ========== */
.social-card.instagram:hover {
  border-color: #E4405F;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(228, 64, 95, 0.6),
    12px 12px 32px rgba(0, 0, 0, 0.8);
}
.social-card.instagram:hover::after {
  background: radial-gradient(circle at 50% 30%, rgba(228, 64, 95, 0.25), transparent 70%);
}
.social-card.instagram .social-icon {
  color: #E4405F;
}
.social-card.instagram:hover .social-icon {
  background: linear-gradient(145deg, #F58529, #DD2A7B 50%, #8134AF);
  color: #fff;
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -3px -3px 8px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(228, 64, 95, 0.7),
    4px 4px 12px rgba(0, 0, 0, 0.8);
}

/* ========== TIKTOK ========== */
.social-card.tiktok:hover {
  border-color: #00F2EA;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 242, 234, 0.6),
    12px 12px 32px rgba(0, 0, 0, 0.8);
}
.social-card.tiktok:hover::after {
  background: radial-gradient(circle at 50% 30%, rgba(0, 242, 234, 0.25), transparent 70%);
}
.social-card.tiktok .social-icon {
  color: #fff;
}
.social-card.tiktok:hover .social-icon {
  background: linear-gradient(145deg, #00F2EA, #FF0050);
  color: #fff;
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -3px -3px 8px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 242, 234, 0.7),
    4px 4px 12px rgba(0, 0, 0, 0.8);
}

/* ========== MERCH ========== */
.social-card.merch:hover {
  border-color: var(--red-bright);
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 42, 42, 0.7),
    12px 12px 32px rgba(0, 0, 0, 0.8);
}
.social-card.merch:hover::after {
  background: radial-gradient(circle at 50% 30%, rgba(255, 42, 42, 0.3), transparent 70%);
}
.social-card.merch .social-icon {
  color: var(--red-bright);
}
.social-card.merch:hover .social-icon {
  background: linear-gradient(145deg, #FF3B3B, #8f1015);
  color: #fff;
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -3px -3px 8px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 42, 42, 0.7),
    4px 4px 12px rgba(0, 0, 0, 0.8);
}

/* Legacy socials (for other pages) */
.socials {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}

.socials a {
  width: 56px; height: 56px; border-radius: 6px; display: grid; place-items: center;
  background: transparent; border: 2px solid rgba(227, 36, 43, 0.4); color: var(--text);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none;
}

.socials a:hover {
  border-color: var(--red-bright);
  background: rgba(227, 36, 43, 0.15);
  color: var(--red-bright);
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
  transform: translateY(-3px);
}

/* ---------- Disclosure / footer ---------- */
.disclosure {
  background: var(--panel); border-left: 3px solid var(--red);
  padding: 14px 20px; border-radius: 6px; color: var(--muted); font-size: .9rem;
  max-width: 900px; margin: 0 auto 40px;
}
footer {
  border-top: 1px solid rgba(227, 36, 43, .3); padding: 40px 20px; text-align: center;
  color: var(--muted); font-size: .9rem;
}
footer .foot-links { margin-bottom: 14px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
footer a { color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; padding: 60px 20px;
  background: linear-gradient(135deg, rgba(227, 36, 43, .15), rgba(10, 10, 12, 0)), var(--panel);
  border-top: 1px solid rgba(227, 36, 43, .3); border-bottom: 1px solid rgba(227, 36, 43, .3);
}
.cta-band h2 { font-size: 1.6rem; margin-bottom: 12px; letter-spacing: 2px; }
.cta-band p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { text-align: center; padding: 60px 20px 40px; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 3px; text-transform: uppercase; text-shadow: var(--glow); }
.page-hero h1 span { color: var(--red-bright); }
.page-hero p { color: var(--muted); max-width: 680px; margin: 14px auto 0; }

/* ========== SETUP SHOWCASE VIDEO ========== */
.showcase-video-section {
  padding: 20px 0 60px;
}

.showcase-video-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 42, 42, 0.4);
  box-shadow:
    0 0 30px rgba(255, 42, 42, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.6);
  background: var(--panel);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-video-wrap:hover {
  box-shadow:
    0 0 45px rgba(255, 42, 42, 0.6),
    0 25px 50px rgba(0, 0, 0, 0.8);
  border-color: var(--red-bright);
  transform: translateY(-4px);
}

.showcase-video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase-video-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 42, 42, 0.5);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  letter-spacing: 1.5px;
  z-index: 5;
  pointer-events: none;
}

.showcase-video-caption .live-badge {
  color: var(--red-bright);
  font-weight: 900;
  animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(255, 42, 42, 0.8); }
  50% { opacity: 0.7; text-shadow: 0 0 16px rgba(255, 42, 42, 1); }
}

@media (max-width: 768px) {
  .showcase-video-caption {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}

/* ========== IMAGE BACKGROUND ========== */
.bg-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-image: url('img/bg-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: bg-slow-zoom 30s ease-in-out infinite alternate;
}

@keyframes bg-slow-zoom {
  0% { background-size: 100%; background-position: center center; }
  100% { background-size: 110%; background-position: 52% 48%; }
}

.bg-video-container video {
  display: none;
}

.bg-video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 10, 12, 0.05) 0%, rgba(10, 10, 12, 0.25) 70%, rgba(10, 10, 12, 0.4) 100%);
  pointer-events: none;
}

/* Make content sit above the video */
body > *:not(.bg-video-container) {
  position: relative;
  z-index: 1;
}

/* Section backgrounds semi-transparent to show background */
section {
  background: rgba(10, 10, 12, 0.35) !important;
  backdrop-filter: blur(2px);
}

section[style*="background:var(--panel)"],
section[style*="background: var(--panel)"] {
  background: rgba(19, 19, 22, 0.55) !important;
}

.hero {
  background: transparent !important;
}

.cta-band {
  background: rgba(19, 19, 22, 0.65) !important;
  backdrop-filter: blur(3px);
}

/* Enhanced content readability */
.card, .gear-card, .tier-card {
  background: rgba(19, 19, 22, 0.85) !important;
  backdrop-filter: blur(8px);
}

header {
  background: rgba(10, 10, 12, 0.75) !important;
  backdrop-filter: blur(12px);
}

footer {
  background: rgba(10, 10, 12, 0.6) !important;
  backdrop-filter: blur(5px);
}

/* ========== 3D EFFECTS ========== */

/* 3D depth shadows for premium look */
.gear-card::after,
.tier-card::after,
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.3));
  pointer-events: none;
  border-radius: inherit;
}

/* 3D hero depth effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

/* 3D animated background */
@keyframes rotate-3d {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

.hero::after {
  animation: rotate-3d 120s linear infinite;
}

/* Hero logo 3D depth */
.hero-logo {
  filter: drop-shadow(0 20px 40px rgba(255, 42, 42, 0.3));
  transition: filter 0.3s;
  will-change: transform;
}

.hero-logo:hover {
  filter: drop-shadow(0 30px 60px rgba(255, 42, 42, 0.5));
}

/* 3D text shadow effect */
.hero h1 {
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    var(--glow);
}

/* ========== PREMIUM ANIMATIONS ========== */

/* Glitch effect */
@keyframes glitch {
  0%, 100% { text-shadow: -2px -2px 0 #ff2a2a, 2px 2px 0 #0ff; }
  25% { text-shadow: 2px -2px 0 #ff2a2a, -2px 2px 0 #0ff; }
  50% { text-shadow: -2px 0 0 #ff2a2a, 2px 0 0 #0ff; }
  75% { text-shadow: 0 2px 0 #ff2a2a, 0 -2px 0 #0ff; }
}

/* Neon pulse */
@keyframes neon-pulse {
  0%, 100% { box-shadow: var(--glow); }
  50% { box-shadow: 0 0 20px rgba(255, 42, 42, .8), 0 0 60px rgba(227, 36, 43, .4); }
}

/* Scan lines */
@keyframes scanlines {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* Fade-in up */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger reveal */
@keyframes stagger-reveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Bounce */
@keyframes bounce-in {
  0% { opacity: 0; transform: scale(0.95) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* 3D flip animation */
@keyframes flip-in {
  0% {
    opacity: 0;
    transform: rotateY(90deg) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) translateZ(0);
  }
}

/* 3D spin-in animation */
@keyframes spin-in-3d {
  0% {
    opacity: 0;
    transform: rotateX(90deg) rotateY(90deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) rotateY(0) scale(1);
  }
}

/* 3D float effect */
@keyframes float-3d {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-20px) rotateX(2deg);
  }
}

/* CRT scanline effect */
.scanlines::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.06),
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 999;
}

/* Floating element */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.float-anim { animation: float 3s ease-in-out infinite; }

/* Gear card premium styles - Compact & Readable */
.gear-card {
  background: var(--panel);
  border: 2px solid rgba(255, 42, 42, 0.2);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gear-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.gear-card:hover::before { opacity: 1; }

.gear-card:hover {
  border-color: var(--red-bright);
  box-shadow: var(--glow);
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg) scale(1.01);
}

.gear-card .gear-image {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid #26262c;
  overflow: hidden;
  position: relative;
}

.gear-card .gear-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.4s ease;
}

.gear-card:hover .gear-image img {
  transform: scale(1.08);
}

.gear-card h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.gear-card .gear-price {
  color: var(--red-bright);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 8px 0;
}

.gear-card .gear-specs {
  list-style: none;
  margin: 6px 0;
  padding: 0;
  font-size: 0.85rem;
  color: #c5c5cc;
  line-height: 1.5;
}

.gear-card .gear-specs li {
  padding: 3px 0;
  border-bottom: 1px solid rgba(255, 42, 42, 0.08);
  display: block;
  list-style: none;
}

.gear-card .gear-specs li:last-child { border-bottom: none; }

.gear-card .gear-specs li strong {
  color: #fff;
  font-weight: 700;
}

.gear-card .affiliate-tag {
  display: inline-block;
  background: rgba(255, 42, 42, 0.15);
  border: 1px solid rgba(227, 36, 43, 0.5);
  color: var(--red-bright);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 6px;
  align-self: flex-start;
}

.gear-card .btn {
  margin-top: 10px;
  align-self: stretch;
  text-align: center;
  padding: 8px 14px;
  font-size: 0.75rem;
}

/* Membership tier cards - 3D */
.tier-card {
  background: var(--panel);
  border: 2px solid #26262c;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
  backface-visibility: hidden;
}

.tier-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 42, 42, 0.1), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.tier-card:hover {
  border-color: var(--red-bright);
  box-shadow: var(--glow);
  transform: translateY(-12px) rotateX(3deg) rotateY(-3deg) scale(1.02);
}

.tier-card:hover::after { opacity: 1; }

.tier-card.featured {
  border-color: var(--red-bright);
  box-shadow: var(--glow);
  transform: scale(1.05);
}

.tier-card .tier-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tier-card .tier-price {
  font-size: 2.2rem;
  color: var(--red-bright);
  font-weight: 800;
  margin: 12px 0;
}

.tier-card .tier-price small {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
}

.tier-card .tier-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
  font-size: 0.95rem;
}

.tier-card .tier-features li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 42, 42, 0.1);
}

.tier-card .tier-features li:before {
  content: '✓ ';
  color: var(--red-bright);
  font-weight: 800;
  margin-right: 8px;
}

.tier-card .tier-features li:last-child { border-bottom: none; }

/* Filter buttons */
.filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #26262c;
  background: var(--panel);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red-bright);
  background: rgba(255, 42, 42, 0.1);
  color: var(--red-bright);
  box-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
}

/* Merch embed */
.merch-container {
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 42, 42, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.merch-container iframe {
  width: 100%;
  height: 800px;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .merch-container iframe {
    height: 600px;
  }

  .tier-card.featured {
    transform: scale(1.02);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #0e0e11; padding: 20px; gap: 18px;
    border-bottom: 2px solid var(--red);
  }
  nav ul.open { display: flex; }
}
