/* ============================================
   SHADOW GAMING - Styles
   S'appuie sur variables.css du bundle existant
   ============================================ */

/* ===== HERO ===== */
.gaming-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(174,0,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(212,168,75,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--c-dark-border);
  overflow: hidden;
}
.gaming-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  pointer-events: none;
}
.gaming-hero__scanline {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174,0,0,0.6), transparent);
  animation: ghScan 6s linear infinite;
}
@keyframes ghScan { 0%{top:0} 100%{top:100%} }
.gaming-hero__inner { position: relative; z-index: 2; }
.gaming-hero__label {
  display: inline-block;
  font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: var(--c-red-light); margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem; border: 1px solid rgba(174,0,0,0.4);
  background: rgba(174,0,0,0.05);
}
.gaming-hero__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(3rem, 11vw, 8rem); line-height: 0.92;
  letter-spacing: -0.02em; margin: 0 0 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #d4a84b 60%, #ae0000 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(174,0,0,0.15);
}
.gaming-hero__sub {
  font-family: var(--ff-body); font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--c-white-muted); max-width: 600px; line-height: 1.55;
  margin: 0 0 2.5rem;
}
.gaming-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.gh-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem; font-family: var(--ff-body);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; cursor: pointer; transition: all 0.25s var(--ease-out-quart);
  border: 1px solid transparent;
}
.gh-btn--red { background: var(--c-red); color: #fff; box-shadow: 0 8px 30px rgba(174,0,0,0.35); }
.gh-btn--red:hover { background: var(--c-red-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(174,0,0,0.5); }
.gh-btn--ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.2); }
.gh-btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.gh-btn--gold { background: var(--c-gold); color: #0a0a0a; }
.gh-btn--gold:hover { background: var(--c-gold-light); transform: translateY(-2px); }
.gh-btn--sm { padding: 0.65rem 1.1rem; font-size: 0.7rem; letter-spacing: 0.12em; }

/* ===== SECTION BASE ===== */
.gaming-section { padding: var(--s-section) 0; position: relative; }
.gaming-section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.gaming-section__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0;
  color: var(--c-white); letter-spacing: -0.01em;
}
.gaming-section__title .accent { color: var(--c-red); }
.gaming-section__kicker {
  display: block; font-family: var(--ff-body); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--c-red-light); margin-bottom: 0.6rem;
}
.gaming-section__desc {
  font-family: var(--ff-body); font-size: 1rem; color: var(--c-white-muted);
  max-width: 480px; line-height: 1.6;
}

/* ===== FEATURED GAME ===== */
.gh-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
  border: 1px solid var(--c-dark-border);
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.gh-featured::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, transparent 60%, rgba(174,0,0,0.08) 100%);
}
.gh-featured__cover { position: relative; min-height: 480px; overflow: hidden; }
.gh-featured__body {
  padding: 3rem; display: flex; flex-direction: column;
  justify-content: space-between; gap: 2rem;
}
.gh-featured__live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--c-red-light);
  align-self: flex-start;
}
.gh-featured__live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-red);
  box-shadow: 0 0 0 0 rgba(174,0,0,0.7); animation: ghPulse 2s infinite;
}
@keyframes ghPulse {
  0% { box-shadow: 0 0 0 0 rgba(174,0,0,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(174,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(174,0,0,0); }
}
.gh-featured__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1;
  margin: 0.5rem 0 0.6rem; color: var(--c-white);
}
.gh-featured__tagline {
  font-family: var(--ff-body); font-size: 1.1rem; color: var(--c-white-muted);
  margin: 0 0 1.5rem; line-height: 1.5;
}
.gh-featured__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.gh-chip {
  font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); color: var(--c-white-muted);
  border-radius: 2px;
}
.gh-chip--gold { color: var(--c-gold); border-color: rgba(212,168,75,0.3); background: rgba(212,168,75,0.05); }
.gh-featured__quote {
  font-family: var(--ff-body); font-size: 1.05rem; color: var(--c-white); line-height: 1.55;
  padding-left: 1rem; border-left: 2px solid var(--c-red); margin: 0 0 2rem;
}
.gh-featured__score { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.5rem; }
.gh-featured__score-num {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 4rem; line-height: 1; color: var(--c-gold);
}
.gh-featured__score-label {
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-white-muted);
}
.gh-featured__ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ===== COVER GENERATIVE ===== */
.gh-cover {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 2rem;
  text-align: center; overflow: hidden;
}
.gh-cover__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, hsla(var(--h1,320), 80%, 50%, 0.45), transparent 55%),
    radial-gradient(circle at 70% 70%, hsla(var(--h2,280), 70%, 40%, 0.40), transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a14 100%);
}
.gh-cover__noise {
  position: absolute; inset: 0; opacity: 0.18; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.gh-cover__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.gh-cover__label {
  position: relative; z-index: 2;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3rem); line-height: 0.9;
  letter-spacing: -0.01em; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.gh-cover__sub {
  position: relative; z-index: 2;
  font-family: var(--ff-body); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 0.8rem;
}
.gh-cover__corner { position: absolute; width: 20px; height: 20px; border: 1px solid rgba(255,255,255,0.4); }
.gh-cover__corner--tl { top: 1rem; left: 1rem; border-right: 0; border-bottom: 0; }
.gh-cover__corner--tr { top: 1rem; right: 1rem; border-left: 0; border-bottom: 0; }
.gh-cover__corner--bl { bottom: 1rem; left: 1rem; border-right: 0; border-top: 0; }
.gh-cover__corner--br { bottom: 1rem; right: 1rem; border-left: 0; border-top: 0; }

/* IMG variant - real game cover */
.gh-cover--img { background: #0a0a0a; }
.gh-cover__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease-out-quart);
}
.gh-card:hover .gh-cover__img { transform: scale(1.08); }
.gh-cover__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.45) 100%),
    radial-gradient(ellipse at center, transparent 60%, rgba(10,10,10,0.35) 100%);
}

/* ===== FILTERS ===== */
.gh-filters {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0 0 1rem;
  margin: 0 0 2rem; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gh-filters::-webkit-scrollbar { display: none; }
.gh-filter {
  flex-shrink: 0; font-family: var(--ff-body); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.65rem 1.1rem; background: transparent;
  border: 1px solid rgba(255,255,255,0.12); color: var(--c-white-muted);
  cursor: pointer; border-radius: 2px; transition: all 0.2s var(--ease-out-quart);
}
.gh-filter:hover { border-color: rgba(255,255,255,0.3); color: var(--c-white); }
.gh-filter--active { background: var(--c-red); border-color: var(--c-red); color: #fff; }

/* ===== GRID ===== */
.gh-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gh-card {
  position: relative; display: block; text-decoration: none;
  background: var(--c-dark-card); border: 1px solid var(--c-dark-border);
  border-radius: 4px; overflow: hidden;
  transition: all 0.35s var(--ease-out-quart);
}
.gh-card:hover {
  transform: translateY(-4px); border-color: var(--c-red);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(174,0,0,0.15);
}
.gh-card__cover { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #111; }
.gh-card__badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 3;
  font-family: var(--ff-body); font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 0.65rem; background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 2px;
}
.gh-card__badge--live { background: rgba(174,0,0,0.95); border-color: rgba(255,80,80,0.4); }
.gh-card__badge--pick { background: rgba(212,168,75,0.95); color: #0a0a0a; border-color: transparent; }
.gh-card__badge--sponsored { background: rgba(0,120,200,0.95); border-color: transparent; }
.gh-card__badge--soon { background: rgba(60,60,60,0.95); }
.gh-card__score {
  position: absolute; bottom: 0.8rem; right: 0.8rem; z-index: 3;
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.6rem; line-height: 1; color: var(--c-gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.gh-card__score sup { font-size: 0.55em; color: var(--c-white-dim); font-weight: 600; }
.gh-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.gh-card__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; margin: 0 0 0.4rem; color: var(--c-white); line-height: 1.15; }
.gh-card__meta { font-family: var(--ff-body); font-size: 0.72rem; color: var(--c-white-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== SHADOW PICKS ===== */
.gh-picks { background: linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 100%); border-top: 1px solid var(--c-dark-border); border-bottom: 1px solid var(--c-dark-border); }
.gh-picks__categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.gh-picks__cat { padding: 1.25rem 1.4rem; background: rgba(255,255,255,0.02); border: 1px solid var(--c-dark-border); border-radius: 4px; transition: all 0.25s var(--ease-out-quart); cursor: default; }
.gh-picks__cat:hover { border-color: var(--c-gold); background: rgba(212,168,75,0.04); }
.gh-picks__cat-icon { font-family: var(--ff-display); font-size: 1.4rem; color: var(--c-gold); margin-bottom: 0.4rem; }
.gh-picks__cat-title { font-family: var(--ff-body); font-size: 0.95rem; font-weight: 700; color: var(--c-white); margin: 0 0 0.3rem; }
.gh-picks__cat-desc { font-size: 0.8rem; color: var(--c-white-dim); margin: 0; }
.gh-picks__disclaimer { font-family: var(--ff-body); font-size: 0.72rem; color: var(--c-white-dim); text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--c-dark-border); letter-spacing: 0.05em; }

/* ===== QUIZ PLACEHOLDER ===== */
.gh-quiz { text-align: center; padding: 3rem 2rem; background: radial-gradient(ellipse at center, rgba(174,0,0,0.08) 0%, transparent 70%), var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; max-width: 800px; margin: 0 auto; }
.gh-quiz__icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }
.gh-quiz__title { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0 0 0.6rem; }
.gh-quiz__sub { color: var(--c-white-muted); margin: 0 0 1.6rem; }
.gh-quiz__soon { display: inline-block; padding: 0.4rem 1rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-gold); border: 1px solid var(--c-gold); border-radius: 2px; }

/* ===== BRANDS SECTION ===== */
.gh-brands { background: linear-gradient(135deg, #0a0a0a 0%, #110a0a 100%); border-top: 1px solid var(--c-dark-border); }
.gh-brands__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 3rem 0; }
.gh-brands__col h4 { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; margin: 0 0 1rem; color: var(--c-gold); letter-spacing: 0.05em; }
.gh-brands__col ul { list-style: none; padding: 0; margin: 0; }
.gh-brands__col li { font-family: var(--ff-body); font-size: 0.95rem; color: var(--c-white-muted); padding: 0.5rem 0; padding-left: 1.2rem; position: relative; line-height: 1.4; }
.gh-brands__col li::before { content: '▸'; position: absolute; left: 0; color: var(--c-red); font-size: 0.8rem; top: 0.55rem; }
.gh-brands__ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ===== NEWSLETTER ===== */
.gh-newsletter { max-width: 700px; margin: 0 auto; text-align: center; padding: 2.5rem 2rem; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; }
.gh-newsletter h3 { font-family: var(--ff-display); font-size: 1.6rem; margin: 0 0 0.5rem; }
.gh-newsletter p { color: var(--c-white-muted); margin: 0 0 1.5rem; }
.gh-newsletter form { display: flex; gap: 0.5rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.gh-newsletter input { flex: 1; min-width: 200px; padding: 0.9rem 1rem; background: #0a0a0a; border: 1px solid var(--c-dark-border); color: var(--c-white); font-family: var(--ff-body); font-size: 0.95rem; border-radius: 2px; }
.gh-newsletter input:focus { outline: none; border-color: var(--c-red); }

/* ===== GAME PAGE (landing) ===== */
.gp-hero { position: relative; padding: 10rem 0 4rem; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; }
.gp-hero__cover { position: absolute; inset: 0; z-index: 0; }
.gp-hero__cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 70%, #0a0a0a 100%); }
.gp-hero__content { position: relative; z-index: 2; width: 100%; }
.gp-hero__status { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; padding: 0.4rem 0.9rem; background: rgba(174,0,0,0.15); border: 1px solid rgba(174,0,0,0.4); color: var(--c-red-light); border-radius: 2px; margin-bottom: 1.5rem; }
.gp-hero__title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(3rem, 8vw, 6rem); line-height: 0.95; margin: 0 0 1rem; color: var(--c-white); letter-spacing: -0.02em; }
.gp-hero__tagline { font-family: var(--ff-body); font-size: clamp(1.1rem, 1.5vw, 1.4rem); color: var(--c-gold); margin: 0 0 2rem; font-weight: 500; }
.gp-hero__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.gp-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Scores bar */
.gp-scores { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; background: var(--c-dark-card); border-top: 1px solid var(--c-dark-border); border-bottom: 1px solid var(--c-dark-border); }
.gp-score { padding: 2rem 1rem; text-align: center; border-right: 1px solid var(--c-dark-border); }
.gp-score:last-child { border-right: none; }
.gp-score__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--c-gold); margin-bottom: 0.5rem; }
.gp-score__num--shadow { color: var(--c-red); }
.gp-score__label { font-family: var(--ff-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-white-muted); }

/* Review blocks */
.gp-review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gp-review-card { padding: 2rem; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; }
.gp-review-card h4 { font-family: var(--ff-display); font-size: 1rem; margin: 0 0 1rem; color: var(--c-red); letter-spacing: 0.05em; text-transform: uppercase; }
.gp-review-card p { font-family: var(--ff-body); font-size: 1rem; line-height: 1.6; color: var(--c-white); margin: 0; }

/* Links list */
.gp-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.gp-link { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.2rem; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); color: var(--c-white); text-decoration: none; font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; border-radius: 2px; transition: all 0.2s var(--ease-out-quart); }
.gp-link:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-2px); }
.gp-link__tag { font-size: 0.6rem; padding: 0.15rem 0.4rem; border-radius: 2px; letter-spacing: 0.15em; text-transform: uppercase; }
.gp-link__tag--aff { background: rgba(212,168,75,0.2); color: var(--c-gold); }
.gp-link__tag--off { background: rgba(255,255,255,0.05); color: var(--c-white-muted); }
.gp-link__tag--spon { background: rgba(0,120,200,0.2); color: #5ab8ff; }

/* Disclaimer */
.gp-disclaimer { font-family: var(--ff-body); font-size: 0.75rem; color: var(--c-white-dim); margin-top: 1rem; line-height: 1.5; }

/* Videos */
.gp-videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.gp-video { position: relative; aspect-ratio: 16/9; background: #0a0a0a; border: 1px solid var(--c-dark-border); cursor: pointer; overflow: hidden; }
.gp-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.gp-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(174,0,0,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; pointer-events: none; }

/* Setup products */
.gp-setup { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.gp-setup__card { padding: 1.5rem; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; text-decoration: none; display: block; transition: all 0.25s var(--ease-out-quart); }
.gp-setup__card:hover { border-color: var(--c-gold); transform: translateY(-3px); }
.gp-setup__card h5 { font-family: var(--ff-display); font-size: 1rem; margin: 0 0 0.5rem; color: var(--c-gold); }
.gp-setup__card p { font-size: 0.85rem; color: var(--c-white-muted); margin: 0; }

/* CTA grid */
.gp-ctas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gp-cta-card { padding: 2rem; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; text-align: center; }
.gp-cta-card--gold { border-color: rgba(212,168,75,0.3); background: linear-gradient(135deg, rgba(212,168,75,0.05) 0%, var(--c-dark-card) 100%); }
.gp-cta-card h4 { font-family: var(--ff-display); font-size: 1.3rem; margin: 0 0 0.6rem; }
.gp-cta-card p { color: var(--c-white-muted); margin: 0 0 1.5rem; font-size: 0.95rem; }

/* FAQ */
.gp-faq__item { border-bottom: 1px solid var(--c-dark-border); }
.gp-faq__q { width: 100%; text-align: left; background: transparent; border: none; padding: 1.5rem 0; font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--c-white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.gp-faq__q:hover { color: var(--c-red); }
.gp-faq__icon { transition: transform 0.3s var(--ease-out-quart); flex-shrink: 0; }
.gp-faq__item--open .gp-faq__icon { transform: rotate(45deg); }
.gp-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-quart), padding 0.3s; font-family: var(--ff-body); font-size: 1rem; color: var(--c-white-muted); line-height: 1.6; }
.gp-faq__item--open .gp-faq__a { max-height: 500px; padding: 0 0 1.5rem; }

/* ===== DEAD AS DISCO TOOL ===== */
.dad-tool { background: linear-gradient(135deg, #0d0612 0%, #160a14 50%, #0d0612 100%); border: 1px solid rgba(174,0,0,0.25); border-radius: 4px; padding: 2.5rem; position: relative; overflow: hidden; }
.dad-tool::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 20% 20%, rgba(212,168,75,0.06), transparent 50%), radial-gradient(circle at 80% 80%, rgba(174,0,0,0.08), transparent 50%); }
.dad-tool > * { position: relative; z-index: 1; }
.dad-tool__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.dad-tool__title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 0.5rem; color: var(--c-white); }
.dad-tool__title .accent { color: var(--c-red); }
.dad-tool__sub { color: var(--c-white-muted); margin: 0; font-size: 0.95rem; }
.dad-tool__beta { font-family: var(--ff-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-gold); border: 1px solid var(--c-gold); padding: 0.3rem 0.7rem; border-radius: 2px; white-space: nowrap; }
.dad-drop { border: 2px dashed rgba(174,0,0,0.4); border-radius: 4px; padding: 3rem 2rem; text-align: center; cursor: pointer; transition: all 0.25s var(--ease-out-quart); background: rgba(174,0,0,0.03); }
.dad-drop:hover, .dad-drop--over { border-color: var(--c-red); background: rgba(174,0,0,0.08); }
.dad-drop__icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--c-red); }
.dad-drop__txt { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-white); margin: 0 0 0.5rem; }
.dad-drop__hint { font-size: 0.85rem; color: var(--c-white-dim); margin: 0; }
.dad-drop input[type="file"] { display: none; }

.dad-loading { padding: 2rem; text-align: center; color: var(--c-white-muted); }
.dad-loading__spin { display: inline-block; width: 30px; height: 30px; border: 2px solid rgba(212,168,75,0.2); border-top-color: var(--c-gold); border-radius: 50%; animation: dadSpin 0.8s linear infinite; margin-right: 1rem; vertical-align: middle; }
@keyframes dadSpin { to { transform: rotate(360deg); } }

.dad-result { display: none; }
.dad-result--show { display: block; }

.dad-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; padding: 1.5rem; background: rgba(0,0,0,0.3); border-radius: 4px; }
.dad-meta__label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-white-dim); margin-bottom: 0.3rem; }
.dad-meta__val { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-white); word-break: break-all; }

.dad-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.dad-stat { padding: 1.5rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; text-align: center; }
.dad-stat__label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-white-dim); margin-bottom: 0.6rem; }
.dad-stat__val { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--c-gold); }
.dad-stat__val--red { color: var(--c-red); }
.dad-stat__unit { font-size: 0.5em; color: var(--c-white-dim); font-weight: 600; margin-left: 0.2em; }
.dad-stat__justif { font-size: 0.75rem; color: var(--c-white-muted); margin-top: 0.6rem; }

.dad-wave-wrap { padding: 1rem; background: rgba(0,0,0,0.4); border-radius: 4px; margin-bottom: 1.5rem; }
.dad-wave { min-height: 100px; }

.dad-controls { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.dad-control { padding: 1.25rem; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; }
.dad-control__label { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-white-muted); margin-bottom: 0.7rem; }
.dad-control__val { font-family: var(--ff-display); font-size: 1rem; color: var(--c-gold); letter-spacing: 0; text-transform: none; font-weight: 800; }
.dad-control input[type=range] { width: 100%; accent-color: var(--c-red); }
.dad-control__row { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.5rem; }
.dad-control__btn { flex: 1; padding: 0.6rem; background: var(--c-dark); border: 1px solid var(--c-dark-border); color: var(--c-white); font-family: var(--ff-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; cursor: pointer; border-radius: 2px; transition: all 0.2s var(--ease-out-quart); }
.dad-control__btn:hover { border-color: var(--c-gold); color: var(--c-gold); }
.dad-control__btn--active { background: var(--c-red); border-color: var(--c-red); color: #fff; }

.dad-export { display: flex; flex-wrap: wrap; gap: 0.7rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }

.dad-toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(150%); padding: 1rem 1.5rem; background: var(--c-dark-card); border: 1px solid var(--c-gold); color: var(--c-white); font-family: var(--ff-body); font-size: 0.9rem; border-radius: 4px; z-index: 9999; pointer-events: none; transition: transform 0.3s var(--ease-out-quart); }
.dad-toast--show { transform: translateX(-50%) translateY(0); }

.dad-privacy { margin-top: 1.5rem; padding: 1rem; font-size: 0.75rem; color: var(--c-white-dim); text-align: center; line-height: 1.6; }
.dad-privacy strong { color: var(--c-white-muted); }

/* Similar games */
.gp-similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gh-featured { grid-template-columns: 1fr; }
  .gh-featured__cover { min-height: 320px; }
  .gh-featured__body { padding: 2rem 1.5rem; }
  .gp-score { padding: 1.25rem 0.4rem; }
  .gp-score__num { font-size: 1.7rem; }
  .gp-score__label { font-size: 0.55rem; letter-spacing: 0.15em; }
}
@media (max-width: 600px) {
  .gp-scores { grid-template-columns: repeat(3, 1fr); }
  .gp-score:nth-child(n+4) { border-top: 1px solid var(--c-dark-border); }
  .gp-score:nth-child(3) { border-right: none; }
  .gp-score:nth-child(5) { grid-column: 2; border-right: 1px solid var(--c-dark-border); }
  .dad-stats { grid-template-columns: 1fr; }
  .dad-tool { padding: 1.5rem; }
  .gh-featured__body { padding: 1.5rem; }
  .gh-featured__score-num { font-size: 3rem; }
}

/* ====================================================
   ============== 50-VISUAL-UPGRADES BLOCK ============
   ==================================================== */

/* #3 Particles canvas (hero) */
.gaming-hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.gaming-hero__inner { position: relative; z-index: 3; }

/* #2 Scanline intensify */
.gaming-hero__scanline--rich {
  background: linear-gradient(90deg, transparent, rgba(255,40,40,0.55), rgba(255,255,255,0.15), rgba(255,40,40,0.55), transparent);
  box-shadow: 0 0 20px rgba(255,40,40,0.45);
  animation-duration: 4.5s !important;
}

/* #3 RGB glitch on hero title */
.gh-glitch { position: relative; }
.gh-glitch::before, .gh-glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; right: 0;
  pointer-events: none; opacity: 0;
  transition: opacity 0.05s;
  white-space: pre-line;
}
.gh-glitch::before { color: #ff003c; -webkit-text-fill-color: #ff003c; transform: translate(-3px, 0); mix-blend-mode: screen; }
.gh-glitch::after { color: #00ffff; -webkit-text-fill-color: #00ffff; transform: translate(3px, 0); mix-blend-mode: screen; }
.gh-glitch--active::before { opacity: 0.55; animation: ghGlitch 0.28s steps(4) both; }
.gh-glitch--active::after { opacity: 0.55; animation: ghGlitch2 0.28s steps(4) both; }
@keyframes ghGlitch { 0%{transform:translate(-3px,0)} 25%{transform:translate(-5px,2px)} 50%{transform:translate(-2px,-2px)} 75%{transform:translate(-4px,1px)} 100%{transform:translate(-3px,0)} }
@keyframes ghGlitch2 { 0%{transform:translate(3px,0)} 25%{transform:translate(5px,-2px)} 50%{transform:translate(2px,2px)} 75%{transform:translate(4px,-1px)} 100%{transform:translate(3px,0)} }

/* #7 Marquee ticker */
.gh-ticker {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--c-dark-border);
  border-bottom: 1px solid var(--c-dark-border);
  background: rgba(0,0,0,0.4);
  padding: 0.8rem 0;
  font-family: var(--ff-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.gh-ticker__track { display: inline-block; animation: ghTicker 38s linear infinite; }
.gh-ticker__item { display: inline-block; padding: 0 2.5rem; color: var(--c-white-muted); }
.gh-ticker__item .accent { color: var(--c-red); }
.gh-ticker__item .gold { color: var(--c-gold); }
.gh-ticker__sep { color: var(--c-red); margin: 0 0.5rem; }
@keyframes ghTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* #5 Counter stats */
.gh-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.gh-stat { padding: 1.5rem; background: rgba(255,255,255,0.02); border: 1px solid var(--c-dark-border); border-radius: 4px; text-align: center; }
.gh-stat__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; color: var(--c-gold); margin-bottom: 0.5rem; }
.gh-stat__num--red { color: var(--c-red); }
.gh-stat__label { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-white-muted); }

/* #9 Tilt 3D */
.gh-card, .gh-featured__cover { transform-style: preserve-3d; will-change: transform; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }

/* #10 Featured halo */
.gh-featured { position: relative; }
.gh-featured::after {
  content: ''; position: absolute; inset: -2px; pointer-events: none;
  border-radius: 6px; z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(174,0,0,0.20), transparent 60%);
  filter: blur(40px);
  animation: ghHaloPulse 2.4s ease-in-out infinite;
}
@keyframes ghHaloPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* #12 Featured score giant */
.gh-featured__score-num { font-size: clamp(3rem, 7vw, 5.5rem); }

/* #14+16 Card hover meta + desaturate */
.gh-card { position: relative; }
.gh-card__cover .gh-cover__img { filter: saturate(1.05); transition: transform 0.6s var(--ease-out-quart), filter 0.6s ease; }
.gh-card:hover .gh-cover__img { transform: scale(1.1); filter: saturate(0.65) brightness(0.7); }
.gh-card__hover-meta {
  position: absolute; inset: 0; padding: 1.2rem; z-index: 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out-quart);
  pointer-events: none;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.92) 100%);
}
.gh-card__hover-quote {
  font-family: var(--ff-body); font-size: 0.85rem; line-height: 1.4; color: var(--c-white);
  margin: 0 0 0.5rem; font-weight: 500;
  border-left: 2px solid var(--c-red); padding-left: 0.6rem;
}
.gh-card__hover-mini-scores { display: flex; gap: 0.6rem; font-family: var(--ff-display); font-size: 0.75rem; }
.gh-card__hover-mini-scores span { background: rgba(0,0,0,0.6); padding: 0.2rem 0.5rem; border-radius: 2px; color: var(--c-gold); }
.gh-card__hover-mini-scores span.live { color: var(--c-red); }
.gh-card:hover .gh-card__hover-meta { opacity: 1; transform: translateY(0); }

/* #17 Border sweep */
.gh-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 4px;
  background: conic-gradient(from 0deg, transparent 0%, var(--c-red) 20%, var(--c-gold) 35%, transparent 50%);
  opacity: 0; transition: opacity 0.3s; z-index: 0; pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
.gh-card:hover::before { opacity: 1; animation: ghSweep 2.5s linear infinite; }
@keyframes ghSweep { to { transform: rotate(360deg); } }

/* #18 Hexagon score */
.gh-card__score {
  background: var(--c-gold); color: #0a0a0a;
  padding: 0.5rem 0.8rem; border-radius: 0;
  clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
  text-shadow: none; font-size: 1.3rem;
  min-width: 64px; text-align: center;
}
.gh-card__score sup { color: rgba(0,0,0,0.5); }

/* #15+20 Sticker tear badge + pulse dot */
.gh-card__badge--live { transform: rotate(-3deg); padding: 0.45rem 0.8rem !important; }
.gh-card__badge--live::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: #fff; border-radius: 50%; margin-right: 6px; vertical-align: 1px;
  animation: ghDot 1.2s ease-in-out infinite;
}
@keyframes ghDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

/* #21 Featured 'IN GAME' sticker */
.gh-featured__cover { z-index: 2; }
.gh-featured__cover::before {
  content: 'IN GAME';
  position: absolute; top: -8px; right: 12px; width: 80px; height: 26px;
  background: var(--c-red); color: #fff; z-index: 10;
  font-family: var(--ff-display); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.25em;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-2deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* #22 Ranking number */
.gh-card__rank {
  position: absolute; bottom: 0.6rem; left: 1.2rem; z-index: 0;
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 0.85;
  color: rgba(255,255,255,0.05);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}

/* #23+24 Filter chips + counts */
.gh-filter { border-radius: 999px; display: inline-flex; align-items: center; gap: 0.5rem; }
.gh-filter__count {
  background: rgba(255,255,255,0.08); color: var(--c-white-muted);
  padding: 0.05rem 0.5rem; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700;
  min-width: 1.4em; text-align: center;
}
.gh-filter--active .gh-filter__count { background: rgba(0,0,0,0.35); color: #fff; }

/* #26 Shadow Picks bg */
.gh-picks { position: relative; }
.gh-picks::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('/assets/img/gaming/hi-fi-rush-hero.jpg');
  background-size: cover; background-position: center;
  filter: blur(40px) saturate(1.2) brightness(0.4);
  opacity: 0.25; z-index: 0; pointer-events: none;
}
.gh-picks > .container { position: relative; z-index: 1; }

/* #27 Picks tiles overlay */
.gh-picks__cat { position: relative; overflow: hidden; }
.gh-picks__cat::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(212,168,75,0.06));
  pointer-events: none;
}

/* #28 Horizontal scroll mobile */
@media (max-width: 700px) {
  .gh-picks__categories {
    grid-template-columns: none;
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 0.8rem; padding-bottom: 1rem; margin-right: -1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .gh-picks__categories::-webkit-scrollbar { display: none; }
  .gh-picks__cat { min-width: 75vw; scroll-snap-align: start; }
}

/* #30 "Mon top de la semaine" */
.gh-pick-badge {
  position: absolute; top: -8px; right: -8px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-gold); color: #0a0a0a;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(212,168,75,0.4);
  z-index: 5;
}

/* #34 Studios filigrane */
.gh-studios { margin: 3rem 0; text-align: center; }
.gh-studios__label {
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--c-white-dim);
  margin-bottom: 1.2rem;
}
.gh-studios__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.5rem 2.5rem; opacity: 0.5; transition: opacity 0.3s;
}
.gh-studios__logos:hover { opacity: 0.85; }
.gh-studios__logo {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.3em;
  color: var(--c-white-muted); text-transform: uppercase;
  filter: grayscale(1);
}

/* #35 Case study */
.gh-case {
  background: linear-gradient(135deg, rgba(174,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%);
  border: 1px solid rgba(174,0,0,0.25);
  border-radius: 4px; padding: 2rem;
  margin: 2.5rem 0;
}
.gh-case__label { font-family: var(--ff-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-red-light); margin-bottom: 0.8rem; }
.gh-case__title { font-family: var(--ff-display); font-size: 1.4rem; margin: 0 0 1rem; color: var(--c-white); }
.gh-case__metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: 1rem; }
.gh-case__metric { text-align: center; }
.gh-case__metric-num { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 800; color: var(--c-gold); }
.gh-case__metric-label { font-size: 0.7rem; color: var(--c-white-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* #38 Newsletter preview */
.gh-newsletter-preview {
  margin-bottom: 1.5rem; padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.3); border: 1px solid var(--c-dark-border);
  border-radius: 4px; text-align: left;
  font-family: 'Courier New', monospace; font-size: 0.78rem; color: var(--c-white-muted);
  line-height: 1.7;
}
.gh-newsletter-preview strong { color: var(--c-gold); }

/* #39 Newsletter glow */
.gh-newsletter input:focus { box-shadow: 0 0 0 1px var(--c-red), 0 0 24px rgba(174,0,0,0.35); }
.gh-newsletter input::placeholder { color: var(--c-white-dim); }

/* #40 Parallax hero */
.gp-hero__cover .gh-cover--img { will-change: transform; }
.gp-hero__cover .gh-cover__img { transition: none; }

/* #41 Sticky bar */
.gp-sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(8,8,8,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-dark-border);
  transform: translateY(-100%); transition: transform 0.4s var(--ease-out-quart);
  padding: 0.7rem 0;
}
.gp-sticky--show { transform: translateY(0); }
.gp-sticky__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: var(--w-container); margin: 0 auto; padding: 0 var(--s-container); }
.gp-sticky__title { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--c-white); margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gp-sticky__cta { white-space: nowrap; }
@media (max-width: 600px) { .gp-sticky__title { font-size: 0.85rem; } }

/* #42 Score progress bar */
.gp-score { position: relative; }
.gp-score__bar { height: 2px; background: rgba(255,255,255,0.06); margin-top: 0.5rem; overflow: hidden; }
.gp-score__bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--c-red), var(--c-gold)); transition: width 1.2s var(--ease-out-quart); }

/* #43 Screenshots carousel */
.gp-shots {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  gap: 0.6rem; padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.gp-shots::-webkit-scrollbar { height: 6px; }
.gp-shots::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 3px; }
.gp-shots > * { min-width: min(480px, 85vw); scroll-snap-align: start; }
.gp-shots__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border: 1px solid var(--c-dark-border); border-radius: 4px;
  display: block; background: #0a0a0a;
  transition: transform 0.4s var(--ease-out-quart);
}
.gp-shots__img:hover { transform: scale(1.02); border-color: var(--c-gold); }

/* #45 Back FAB mobile */
.gp-back-fab {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(174,0,0,0.95); color: #fff;
  display: none; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.gp-back-fab:hover { transform: scale(1.08); }
@media (max-width: 768px) { .gp-back-fab { display: flex; } }

/* #46 Waveform skeleton */
.dad-loading--rich {
  height: 120px; padding: 0;
  background: repeating-linear-gradient(90deg, rgba(174,0,0,0.06) 0 6px, rgba(174,0,0,0.18) 6px 8px);
  background-size: 200% 100%;
  animation: dadSkel 1.2s linear infinite;
  border-radius: 4px; margin: 0 0 1rem;
}
@keyframes dadSkel { to { background-position: -200% 0; } }

/* #47 BPM pulse */
.dad-bpm-pulse {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--c-red); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; color: var(--c-red);
  opacity: 0.3;
}
.dad-bpm-pulse--on { opacity: 1; animation: dadPulse var(--bpm-dur, 0.5s) ease-in-out infinite; }
@keyframes dadPulse { 0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(174,0,0,0.5)} 50%{transform:scale(1.18);box-shadow:0 0 0 20px rgba(174,0,0,0)} }

/* #50 View transition leave */
html.gp-leave main { animation: gpLeave 0.28s ease forwards; }
@keyframes gpLeave { to { opacity: 0; transform: translateY(-12px); } }

/* ====== ROUND 2 ====== */

/* #1 Hero cycling backgrounds with Ken Burns */
.gaming-hero { isolation: isolate; }
.gh-hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  mask-image: linear-gradient(180deg, black 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}
.gh-hero-bg__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
  filter: brightness(0.35) saturate(1.1);
  animation: ghKenBurns 22s ease-in-out infinite alternate;
}
.gh-hero-bg__slide--active { opacity: 1; }
@keyframes ghKenBurns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}

/* #6+11 Twitch LIVE badge in hero */
.gh-live-badge {
  display: none;
  align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(174,0,0,0.18); border: 1px solid var(--c-red);
  font-family: var(--ff-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-red-light);
  border-radius: 999px; margin-bottom: 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
}
.gh-live-badge--show { display: inline-flex; }
.gh-live-badge:hover { background: rgba(174,0,0,0.35); transform: translateY(-1px); }
.gh-live-badge__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-red);
  animation: ghDot 1s ease-in-out infinite;
}
.gh-live-badge__uptime { color: var(--c-white); font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.6; }

/* #19 Sparkline + #29 Price tag */
.gh-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem; margin-top: 0.8rem;
  padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.gh-card__price { display: flex; align-items: baseline; gap: 0.4rem; font-family: var(--ff-display); }
.gh-card__price-pct {
  background: var(--c-red); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem; border-radius: 2px;
}
.gh-card__price-was { color: var(--c-white-dim); font-size: 0.75rem; text-decoration: line-through; }
.gh-card__price-now { color: var(--c-gold); font-size: 1.05rem; font-weight: 800; }
.gh-card__spark { opacity: 0.85; }

/* #31 Quiz SVG mockup */
.gh-quiz-mockup {
  margin: 1rem auto 2rem; max-width: 460px;
  background: rgba(0,0,0,0.4); border: 1px solid var(--c-dark-border);
  border-radius: 8px; padding: 1.2rem;
  position: relative; overflow: hidden;
}
.gh-quiz-mockup::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(212,168,75,0.06) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: ghShimmer 3.5s linear infinite; pointer-events: none;
}
@keyframes ghShimmer { to { background-position: -200% 0; } }
.gh-quiz-mockup__step { font-family: var(--ff-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; color: var(--c-red-light); text-transform: uppercase; margin-bottom: 0.6rem; }
.gh-quiz-mockup__q { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-white); margin-bottom: 1rem; line-height: 1.3; text-align: left; }
.gh-quiz-mockup__opts { display: grid; gap: 0.5rem; text-align: left; }
.gh-quiz-mockup__opt {
  padding: 0.7rem 1rem; background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-dark-border); border-radius: 4px;
  font-family: var(--ff-body); font-size: 0.85rem; color: var(--c-white-muted);
  display: flex; align-items: center; gap: 0.6rem;
}
.gh-quiz-mockup__opt--selected { border-color: var(--c-red); background: rgba(174,0,0,0.1); color: var(--c-white); }
.gh-quiz-mockup__opt-key {
  font-family: var(--ff-display); font-weight: 800; font-size: 0.75rem;
  color: var(--c-gold); width: 16px;
}
.gh-quiz-mockup__bar { height: 2px; background: rgba(255,255,255,0.06); margin-top: 1rem; border-radius: 1px; overflow: hidden; }
.gh-quiz-mockup__bar-fill { width: 38%; height: 100%; background: var(--c-red); }

/* #44 Mentions cards */
.gp-mentions { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.gp-mention {
  padding: 1.4rem; background: var(--c-dark-card);
  border: 1px solid var(--c-dark-border); border-radius: 4px;
  position: relative;
}
.gp-mention::before {
  content: '"'; position: absolute; top: -10px; left: 14px;
  font-family: var(--ff-display); font-size: 4rem; line-height: 1;
  color: var(--c-red); opacity: 0.4;
}
.gp-mention__text {
  font-family: var(--ff-body); font-size: 0.95rem; line-height: 1.55;
  color: var(--c-white); margin: 0 0 0.8rem;
  font-style: normal;
}
.gp-mention__source {
  font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold);
}

/* #36 Stats counter — kept neutral wording (no fake follower numbers) */

/* ====== QUIZ V2 (real, working) ====== */
.ghq { text-align: left; max-width: 640px; margin: 0 auto; }
.ghq__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; gap: 1rem; }
.ghq__step { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-red-light); }
.ghq__back { background: none; border: none; color: var(--c-white-muted); font-family: var(--ff-body); font-size: 0.8rem; cursor: pointer; padding: 0.3rem 0.5rem; }
.ghq__back:hover { color: var(--c-gold); }
.ghq__q { font-family: var(--ff-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--c-white); margin-bottom: 1.5rem; line-height: 1.25; text-align: left; }
.ghq__opts { display: grid; gap: 0.6rem; margin-bottom: 1.5rem; }
.ghq__opt {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.2rem; text-align: left;
  background: rgba(255,255,255,0.03); color: var(--c-white);
  border: 1px solid var(--c-dark-border); border-radius: 4px;
  font-family: var(--ff-body); font-size: 0.95rem;
  cursor: pointer; transition: all 0.2s var(--ease-out-quart);
  width: 100%;
}
.ghq__opt:hover { border-color: var(--c-red); background: rgba(174,0,0,0.08); transform: translateX(4px); }
.ghq__opt-key { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--c-dark); color: var(--c-gold); font-family: var(--ff-display); font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.ghq__opt:hover .ghq__opt-key { background: var(--c-red); color: #fff; }
.ghq__opt-label { flex: 1; }
.ghq__bar { height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px; overflow: hidden; }
.ghq__bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-red), var(--c-gold)); transition: width 0.4s var(--ease-out-quart); }
.ghq--result { text-align: center; }
.ghq__profile-label { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--c-red-light); margin-bottom: 0.5rem; }
.ghq__profile-name { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; margin: 0 0 1rem; background: linear-gradient(180deg, #fff 0%, var(--c-gold) 70%, var(--c-red) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ghq__profile-desc { color: var(--c-white-muted); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.55; }
.ghq__reco-label { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 1rem; }
.ghq__reco { display: grid; gap: 0.8rem; margin-bottom: 2rem; text-align: left; }
.ghq__reco-card { display: flex; align-items: stretch; gap: 0; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; text-decoration: none; overflow: hidden; transition: all 0.25s var(--ease-out-quart); }
.ghq__reco-card:hover { border-color: var(--c-red); transform: translateX(4px); }
.ghq__reco-img { width: 130px; height: auto; object-fit: cover; flex-shrink: 0; }
.ghq__reco-body { padding: 0.9rem 1.1rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.ghq__reco-body h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-white); margin: 0 0 0.3rem; }
.ghq__reco-body p { font-family: var(--ff-body); font-size: 0.85rem; color: var(--c-white-muted); margin: 0 0 0.5rem; line-height: 1.4; }
.ghq__reco-meta { display: flex; gap: 0.6rem; align-items: center; }
.ghq__reco-score { font-family: var(--ff-display); font-weight: 800; color: var(--c-gold); font-size: 0.9rem; }
.ghq__reco-price { font-family: var(--ff-display); font-weight: 700; color: var(--c-white); font-size: 0.85rem; }
.ghq__email { padding: 1.2rem; background: rgba(0,0,0,0.3); border: 1px solid var(--c-dark-border); border-radius: 4px; margin-bottom: 1rem; }
.ghq__email p { font-family: var(--ff-body); font-size: 0.85rem; color: var(--c-white-muted); margin: 0 0 0.8rem; }
.ghq__email-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ghq__email-row input { flex: 1; min-width: 200px; padding: 0.7rem 1rem; background: #0a0a0a; border: 1px solid var(--c-dark-border); color: var(--c-white); font-family: var(--ff-body); font-size: 0.9rem; border-radius: 2px; }
.ghq__email-row input:focus { outline: none; border-color: var(--c-red); }
.ghq__restart { background: none; border: 1px solid var(--c-dark-border); color: var(--c-white-muted); padding: 0.5rem 1rem; font-family: var(--ff-body); font-size: 0.8rem; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
.ghq__restart:hover { color: var(--c-gold); border-color: var(--c-gold); }
@media (max-width: 600px) {
  .ghq__reco-card { flex-direction: column; }
  .ghq__reco-img { width: 100%; aspect-ratio: 16/9; }
}

/* ====== PRICING 3-TIER (Brands) ====== */
.gh-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin: 2.5rem 0; }
.gh-pricing__tier { padding: 2rem 1.5rem; background: var(--c-dark-card); border: 1px solid var(--c-dark-border); border-radius: 4px; position: relative; display: flex; flex-direction: column; }
.gh-pricing__tier--featured { border-color: var(--c-red); background: linear-gradient(180deg, rgba(174,0,0,0.06) 0%, var(--c-dark-card) 100%); transform: scale(1.02); box-shadow: 0 12px 40px rgba(174,0,0,0.15); }
.gh-pricing__tier--featured::before { content: 'POPULAIRE'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--c-red); color: #fff; font-family: var(--ff-body); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.3em; padding: 0.35rem 0.8rem; border-radius: 2px; }
.gh-pricing__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--c-white); margin: 0 0 0.4rem; }
.gh-pricing__price { font-family: var(--ff-display); font-weight: 800; font-size: 2rem; color: var(--c-gold); margin: 0 0 0.3rem; line-height: 1; }
.gh-pricing__price small { font-size: 0.55em; color: var(--c-white-muted); font-weight: 600; }
.gh-pricing__sub { font-family: var(--ff-body); font-size: 0.8rem; color: var(--c-white-muted); margin: 0 0 1.2rem; min-height: 2.5em; }
.gh-pricing__features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.gh-pricing__features li { font-family: var(--ff-body); font-size: 0.9rem; color: var(--c-white); padding: 0.5rem 0 0.5rem 1.5rem; position: relative; line-height: 1.4; border-bottom: 1px solid rgba(255,255,255,0.05); }
.gh-pricing__features li::before { content: '✓'; position: absolute; left: 0; color: var(--c-gold); font-weight: 800; }
.gh-pricing__note { font-size: 0.7rem; color: var(--c-white-dim); text-align: center; margin-top: 2rem; }

/* ====== PROPOSE GAME form ====== */
.gh-propose { margin: 2.5rem 0; padding: 2rem; background: rgba(0,0,0,0.3); border: 1px solid var(--c-dark-border); border-radius: 4px; text-align: center; }
.gh-propose h3 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--c-white); margin: 0 0 0.5rem; }
.gh-propose p { color: var(--c-white-muted); margin: 0 0 1.2rem; font-size: 0.9rem; }
.gh-propose form { display: grid; gap: 0.7rem; max-width: 500px; margin: 0 auto; }
.gh-propose input, .gh-propose textarea { padding: 0.8rem 1rem; background: #0a0a0a; border: 1px solid var(--c-dark-border); color: var(--c-white); font-family: var(--ff-body); font-size: 0.9rem; border-radius: 2px; }
.gh-propose input:focus, .gh-propose textarea:focus { outline: none; border-color: var(--c-red); }
.gh-propose textarea { min-height: 80px; resize: vertical; }



