/* =============================================
   BUMPER GOAL — STYLESHEET v2
   Sports-brand dark aesthetic, neon lime #CCFF00
   ============================================= */

:root {
  --lime:   #CCFF00;
  --black:  #080808;
  --dark:   #111111;
  --dark2:  #161616;
  --gray:   #272727;
  --gray2:  #383838;
  --text:   #d8d8d8;
  --muted:  #888888;
  --white:  #ffffff;
  --radius: 14px;
  --ease:   0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Rubik', sans-serif;
  background: var(--black);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.75;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5.5rem 0; }

/* ── ACCENT COLOR ── */
.accent { color: var(--lime); }
.lime   { color: var(--lime); } /* backwards compat */

/* ── GLOW TEXT ── */
.glow {
  text-shadow:
    0 0 30px rgba(204,255,0,0.55),
    0 0 80px rgba(204,255,0,0.25);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
p  { color: var(--text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-lead {
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 1.25rem;
  color: var(--text);
}

/* ── SECTION LABEL (pill tag) ── */
.section-label,
.section-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}

.btn-lime,
.btn-primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 0 22px rgba(204,255,0,0.38);
}
.btn-lime:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 44px rgba(204,255,0,0.6), 0 10px 30px rgba(204,255,0,0.25);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 1.05rem 2.6rem;
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime);
}
.btn-outline:hover {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 0 28px rgba(204,255,0,0.35);
}

.btn-play {
  background: var(--gray2);
  color: var(--white);
  border: 1px solid var(--gray2);
  gap: 0.75rem;
}
.btn-play:hover {
  background: var(--gray);
  color: var(--lime);
}

.btn-full { width: 100%; justify-content: center; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--dark2);
  border-top: 1px solid var(--gray);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--lime); text-decoration: underline; }
.cookie-banner.hidden { display: none; }
@media (max-width: 580px) {
  .cookie-banner { flex-direction: column; text-align: center; align-items: center; }
}

/* ── INSTAGRAM FLOAT ── */
.instagram-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem 0.75rem 1.1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(220,39,67,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: igPulse 2.8s ease-in-out infinite;
}
.instagram-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(220,39,67,0.65);
  animation: none;
}
@keyframes igPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(220,39,67,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(220,39,67,0.75), 0 0 0 6px rgba(220,39,67,0.12); }
}

/* ── ACCESSIBILITY FLOAT ── */
.access-float {
  position: fixed;
  bottom: 5.5rem;
  left: 1.8rem;
  z-index: 500;
  background: #0057b8;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.access-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,87,184,0.5);
}

/* ── FORM CONSENT ── */
.form-consent {
  margin-bottom: 0.25rem;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--lime);
  cursor: pointer;
}
.consent-label a { color: var(--lime); text-decoration: underline; }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  z-index: 500;
  background: var(--lime);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(204,255,0,0.45), 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 42px rgba(204,255,0,0.7), 0 6px 24px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════
   NAVBAR
   ══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 1.2rem 0;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem 0;
  border-bottom-color: rgba(204,255,0,0.1);
}
.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* phone icon in navbar — visible on mobile, hidden on desktop */
.nav-phone {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.4rem;
  color: var(--lime);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity var(--ease);
}
.nav-phone:hover { opacity: 0.8; }
.nav-phone-num { font-size: 0.85rem; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; display: block; }
.logo-text-fallback { font-size: 1.5rem; font-weight: 900; color: var(--white); display: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover  { color: var(--lime); }
.nav-links a.active { color: var(--lime); }

.nav-cta {
  background: var(--lime) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  box-shadow: 0 0 14px rgba(204,255,0,0.35) !important;
}
.nav-cta:hover {
  background: #d8ff19 !important;
  box-shadow: 0 0 28px rgba(204,255,0,0.55) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #0e1500 50%, #080808 100%);
}
#hero-video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  pointer-events: none;
}
#hero-video-player iframe { width: 100%; height: 100%; border: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.6) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.8) 100%
  );
}

/* Grain noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 1.5rem;
}

/* eyebrow tag above headline */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(204,255,0,0.1);
  border: 1px solid rgba(204,255,0,0.4);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(204,255,0,0.8);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero h1 em { font-style: normal; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* hero stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat-num {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  color: var(--lime);
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  font-weight: 500;
}
.stat-line {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(204,255,0,0.5), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ══════════════════════════════════
   KEVIN SECTION
   ══════════════════════════════════ */
.kevin-section {
  background: var(--dark2);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.kevin-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: center;
}

/* photo */
.kevin-photo-wrap {
  position: relative;
  background: linear-gradient(160deg, #1a1a1a, #1c2300);
  border-radius: var(--radius);
  min-height: 300px;
}
.kevin-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.kevin-badge {
  position: absolute;
  bottom: -0.65rem;
  right: -0.65rem;
  background: var(--lime);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 0 14px rgba(204,255,0,0.4);
}

/* content */
.kevin-eyebrow {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.kevin-content h2 { margin-bottom: 0; }

.kevin-quote {
  font-size: 1.45rem;
  font-style: italic;
  color: var(--white);
  border-right: 4px solid var(--lime);
  padding-right: 1.4rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.55;
  position: relative;
}
.quote-mark {
  color: var(--lime);
  font-size: 2rem;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
  opacity: 0.6;
}

.views-badge {
  background: rgba(204,255,0,0.12);
  border: 1px solid rgba(204,255,0,0.35);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Kevin video */
.kevin-video-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray);
}
.kevin-video-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

/* ── RESPONSIVE VIDEO (16:9) ── */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray);
  max-width: 680px;
  margin: 0 auto;
}
.video-responsive.video-lg { max-width: 860px; }
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ══════════════════════════════════
   STARS / CELEBRITIES SECTION
   ══════════════════════════════════ */
.stars-section {
  background: var(--dark2);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.stars-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.star-card {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.star-card:hover {
  border-color: rgba(204,255,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.star-photo-wrap {
  position: relative;
  overflow: hidden;
}
.star-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.star-card:hover .star-photo-wrap img { transform: scale(1.04); }

.star-name-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  padding: 2.5rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.star-title-badge {
  background: var(--lime);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.03em;
  box-shadow: 0 0 12px rgba(204,255,0,0.4);
}
.star-name-tag strong {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.star-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  padding: 1.25rem 1.5rem;
  margin: 0;
  line-height: 1.65;
  border-right: 3px solid var(--lime);
}

/* Videos row */
.stars-videos {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray);
}
.star-video-col {
  flex: 1;
  min-width: 0;
}

/* Shorts vertical video (9:16) */
.video-shorts {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray);
  max-width: 300px;
  margin: 0 auto;
}
.video-shorts iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ══════════════════════════════════
   EXPLAINER SECTION
   ══════════════════════════════════ */
.explainer-section {
  background: var(--black);
  border-top: 1px solid var(--gray);
  text-align: center;
}
.explainer-section .section-label { display: block; text-align: center; }
.explainer-section h2  { text-align: center; }
.explainer-section .section-lead { margin: 0 auto 2rem; text-align: center; }

/* ══════════════════════════════════
   TESTIMONIALS PREVIEW
   ══════════════════════════════════ */
.testimonials-preview { background: var(--dark2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.5rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-size: 4rem;
  color: var(--lime);
  font-weight: 900;
  line-height: 1;
  opacity: 0.3;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: rgba(204,255,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(204,255,0,0.06);
}

/* stars — new class name */
.t-stars,
.stars {
  color: var(--lime);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}
.t-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}
.t-name {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gray);
  font-style: normal;
  font-weight: 600;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── TESTIMONIALS SLIDER ── */
.ts-wrap {
  position: relative;
  padding: 0 3rem;
  margin-bottom: 0.5rem;
}
.ts-viewport {
  overflow: hidden;
  direction: ltr;
}
.ts-track {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.ts-slide {
  flex: 0 0 calc(33.333% - 0.84rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  background: var(--dark2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ts-slide img { width: 100%; height: auto; display: block; }
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(204,255,0,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
  z-index: 2;
  line-height: 1;
  padding-bottom: 2px;
}
.ts-arrow:hover {
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 28px rgba(204,255,0,0.6);
}
.ts-arrow-prev { left:  0; }
.ts-arrow-next { right: 0; }

/* 1000+ proof image */
.readers-proof {
  margin-top: 2rem;
  text-align: center;
}
.readers-proof img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius);
  margin: 0 auto;
  display: block;
}

/* ══════════════════════════════════
   WHAT IS
   ══════════════════════════════════ */
.what-is { background: var(--black); }
.games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.game-tag {
  background: var(--dark2);
  border: 1px solid rgba(204,255,0,0.2);
  color: var(--text);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--ease), color var(--ease);
}
.game-tag:hover { border-color: rgba(204,255,0,0.5); color: var(--lime); }

/* ══════════════════════════════════
   EVENTS
   ══════════════════════════════════ */
.events { background: var(--dark2); }

.event-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.25rem;
  align-items: start;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--gray);
}
.event-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* oversized number with lime glow */
.event-num {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  text-shadow:
    0 0 20px rgba(204,255,0,0.5),
    0 0 50px rgba(204,255,0,0.2);
  padding-top: 0.1rem;
}

.event-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.how-it-works {
  margin: 1.25rem 0 1.5rem;
  padding-right: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--text);
}
.how-it-works li::marker { color: var(--lime); }

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.event-tags span {
  background: var(--gray);
  border: 1px solid var(--gray2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
}

/* single CTA at end of events */
.events-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray);
}
.events-cta p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════
   PRICING
   ══════════════════════════════════ */
.pricing { background: var(--black); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pricing-card:hover {
  border-color: rgba(204,255,0,0.35);
  box-shadow: 0 0 30px rgba(204,255,0,0.08), 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* featured / popular card */
.pricing-card--featured {
  border-color: var(--lime);
  box-shadow: 0 0 28px rgba(204,255,0,0.2), 0 8px 32px rgba(0,0,0,0.5);
}
.pricing-card--featured:hover {
  border-color: var(--lime);
  box-shadow: 0 0 50px rgba(204,255,0,0.35), 0 16px 50px rgba(0,0,0,0.5);
}

.pc-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(204,255,0,0.5);
}

.pc-icon { font-size: 2.2rem; }

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.pc-from {
  font-size: 0.82rem;
  color: var(--muted);
  align-self: center;
}
.pc-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.pc-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  align-self: center;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pc-features li {
  font-size: 0.92rem;
  color: var(--text);
  padding-right: 1.2rem;
  position: relative;
}
.pc-features li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
}

.pc-btn { width: 100%; justify-content: center; margin-top: auto; }

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* ══════════════════════════════════
   COLLAGE / GALLERY
   ══════════════════════════════════ */
.collage-section { background: var(--dark2); }

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.collage-item {
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #1f2200 100%);
  position: relative;
}
.collage-item.tall  { grid-row:    span 2; }
.collage-item.wide  { grid-column: span 2; }
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.collage-item:hover img { transform: scale(1.07); }

.collage-cta { text-align: center; margin-top: 1.5rem; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  overflow-y: auto;
  padding: 5rem 1rem 2rem;
}
.lightbox.open { display: block; }
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--lime);
  color: var(--black);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease);
}
.lightbox-close:hover { transform: scale(1.12); }
.lightbox-grid {
  max-width: 1080px;
  margin: 0 auto;
  columns: 3;
  column-gap: 8px;
}
.lightbox-grid img {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 8px;
  break-inside: avoid;
  display: block;
}

/* ── JS broken-image placeholder ── */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #1f2200 100%);
  font-size: 2rem;
  color: rgba(204,255,0,0.25);
  border-radius: inherit;
}
.collage-item, .t-screenshot { position: relative; }

/* ══════════════════════════════════
   WHO WE ARE
   ══════════════════════════════════ */
.who-we-are { background: var(--black); }

.owner-bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}
.owner-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  flex-shrink: 0;
}
.owner-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.owner-content h2 { margin-bottom: 1.25rem; }
.owner-intro {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-right: 1.1rem;
  border-right: 4px solid var(--lime);
  line-height: 1.6;
}
.owner-values {
  color: var(--lime);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════
   FAQ + TRUST BAR
   ══════════════════════════════════ */
.faq { background: var(--dark2); }

/* trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2rem;
  margin-bottom: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--dark);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: var(--radius);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.trust-check {
  color: var(--lime);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.faq-item {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item:hover { border-color: rgba(204,255,0,0.25); }
.faq-q {
  width: 100%;
  background: var(--dark2);
  color: var(--white);
  border: none;
  padding: 1.15rem 1.5rem;
  text-align: right;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--ease);
}
.faq-q::after {
  content: '+';
  color: var(--lime);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.faq-q.open::after { content: '−'; }
.faq-q:hover { background: var(--gray); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ══════════════════════════════════
   CONTACT
   ══════════════════════════════════ */
.contact { background: var(--black); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-lead { margin-bottom: 2rem; }

.contact-promise {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group input {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--gray);
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  direction: rtl;
}
.form-group input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.1);
}
.form-group input::placeholder { color: var(--muted); }

.form-group select {
  width: 100%;
  display: block;
  background: var(--dark2);
  border: 1px solid var(--gray);
  color: var(--muted);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  direction: rtl;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-group select.has-value { color: var(--white); }
.form-group select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.1);
}
.form-group select option { background: var(--dark2); color: var(--white); }
.consent-error { color: #ff5555; font-size: 0.82rem; margin-top: 0.35rem; display: none; }
.consent-error.show { display: block; }

.form-success {
  display: none;
  text-align: center;
  color: #5dff8a;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem;
  background: rgba(93,255,138,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(93,255,138,0.22);
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--gray);
  padding: 2.75rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.footer-links a {
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity var(--ease);
}
.footer-links a:hover { opacity: 0.7; }

.footer-copy {
  font-size: 0.77rem;
  color: var(--gray2);
}

/* ══════════════════════════════════
   TESTIMONIALS PAGE
   ══════════════════════════════════ */
.testimonials-page { background: var(--black); }
.testimonials-page-grid {
  columns: 3;
  column-gap: 1rem;
  orphans: 1;
  widows: 1;
}
.t-screenshot {
  break-inside: avoid;
  margin-bottom: 0.85rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--gray);
  min-height: 80px;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.t-screenshot:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.t-screenshot img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.t-screenshot:hover img { transform: scale(1.02); }
.t-screenshot .img-placeholder {
  min-height: 120px;
  border-radius: var(--radius);
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .kevin-inner { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .stars-grid { gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .ts-slide { flex: 0 0 calc(50% - 0.625rem); }
  .collage-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .lightbox-grid { columns: 2; }
  .testimonials-page-grid { columns: 2; }
  .contact-inner { gap: 2.5rem; }
}

@media (max-width: 720px) {
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  section { padding: 3.5rem 0; }

  .nav-phone { display: flex; }
  .nav-phone-num { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(8,8,8,0.99);
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--gray);
    backdrop-filter: blur(14px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .kevin-inner { grid-template-columns: 1fr; text-align: center; }
  .kevin-photo-wrap { max-width: 230px; margin: 0 auto; }
  .kevin-quote { border-right: 4px solid var(--lime); padding-right: 1rem; text-align: right; }

  .stars-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .stars-videos { flex-direction: row; gap: 0.65rem; }
  .star-name-tag strong { font-size: 1rem; }
  .star-quote { font-size: 0.88rem; padding: 0.9rem 1rem; }

  .owner-bio { grid-template-columns: 1fr; gap: 1.5rem; }
  .owner-photo { aspect-ratio: 4/3; }

  .event-block { grid-template-columns: 1fr; gap: 0.75rem; }
  .event-num { font-size: 3rem; }

  .collage-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 0; }
  .stat { padding: 0 1rem; }
  .stat-num { font-size: 1.6rem; }

  .trust-bar { padding: 1.25rem; gap: 0.75rem 1.5rem; }
  .ts-slide { flex: 0 0 82%; }
  .ts-wrap  { padding: 0 2.75rem; }

  .lightbox-grid { columns: 2; }
  .testimonials-page-grid { columns: 2; column-gap: 0.6rem; }
}

@media (max-width: 420px) {
  .collage-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .stat-line { display: none; }
  .testimonials-page-grid { columns: 2; column-gap: 0.4rem; }
  .t-screenshot { margin-bottom: 0.4rem; }
  .trust-bar { flex-direction: column; }
}
