/* ==========================================
   HOME.CSS — Styles spécifiques homepage
   Thème : Space / Saturn / New Gen
   ========================================== */

/* HERO EXTRAS */
.hero-tag {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--neon-violet);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.btn-glow { box-shadow: 0 0 20px rgba(139,92,246,0.4), 0 0 40px rgba(139,92,246,0.1); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(139,92,246,0.6), 0 0 60px rgba(139,92,246,0.2); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.hero-stat { text-align: center; }
.hero-stat span { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 2px; color: var(--neon-violet); display: block; }
.hero-stat small { color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-sep { width: 1px; height: 30px; background: var(--border); }

/* SECTION LAYOUT */
.section-inner { max-width: 1300px; margin: 0 auto; padding: 5rem 2rem; position: relative; z-index: 1; }
.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(var(--gc), 0.06) 0%, transparent 60%);
  pointer-events: none;
}
section { position: relative; overflow: hidden; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-violet);
  margin-bottom: 0.4rem;
}
.header-actions { display: flex; gap: 1rem; align-items: center; }

/* PLAYLIST */
#topPlaylist { border-top: 1px solid var(--border); }
.playlist-list { display: flex; flex-direction: column; gap: 0; }
.playlist-item {
  display: grid;
  grid-template-columns: 36px 52px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
  cursor: pointer;
  border-bottom: 1px solid rgba(42,42,58,0.4);
}
.playlist-item:hover { background: rgba(255,255,255,0.03); }
.playlist-item.playing { background: rgba(139,92,246,0.08); }
.playlist-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-muted); text-align: center; min-width: 20px; }
.playlist-item.playing .playlist-num { color: var(--neon-violet); }
.playlist-cover { width: 52px; height: 52px; border-radius: 4px; object-fit: cover; background: var(--surface); }
.playlist-info { min-width: 0; }
.playlist-title { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.playlist-artist { color: var(--neon-orange); font-size: 0.75rem; margin-top: 0.1rem; }
.playlist-genre { color: var(--text-muted); font-size: 0.75rem; background: var(--surface); border: 1px solid var(--border); padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.playlist-bpm { color: var(--text-muted); font-size: 0.78rem; text-align: right; white-space: nowrap; }
.playlist-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--neon-cyan); white-space: nowrap; }
.playlist-play-btn {
  width: 36px; height: 36px; background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
  border-radius: 50%; color: var(--neon-violet); font-size: 0.75rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0;
}
.playlist-play-btn:hover, .playlist-item.playing .playlist-play-btn { background: var(--neon-violet); color: #fff; border-color: var(--neon-violet); }
.btn-play-all {
  background: linear-gradient(135deg, var(--neon-violet), #6d28d9);
  color: #fff; border: none; padding: 0.6rem 1.4rem; border-radius: 4px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s;
}
.btn-play-all:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139,92,246,0.4); }
.playlist-skeleton { height: 68px; background: var(--surface); border-radius: 6px; margin-bottom: 4px; animation: shimmer 1.5s infinite; }

/* TYPE BEATS GRID */
#typeBeats { border-top: 1px solid var(--border); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.type-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  overflow: hidden;
  display: block;
}
.type-card:hover { border-color: rgba(var(--tc), 0.6); transform: translateY(-4px); }
.type-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(var(--tc), 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.type-card:hover .type-glow { opacity: 1; }
.type-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.type-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 3px; color: rgb(var(--tc)); margin-bottom: 0.3rem; }
.type-sub { color: var(--text-muted); font-size: 0.78rem; }
.type-arrow { position: absolute; bottom: 1.2rem; right: 1.2rem; color: rgba(var(--tc), 0.5); font-size: 1.1rem; transition: all 0.3s; }
.type-card:hover .type-arrow { color: rgb(var(--tc)); transform: translateX(3px); }

.type-card-underground {
  background: linear-gradient(135deg, #1a0a02 0%, #2a1205 50%, #1a0a02 100%);
  border-color: rgba(255,100,0,0.3);
}
.type-card-underground .type-name { color: #ff6400; text-shadow: 0 0 20px rgba(255,100,0,0.4); }
.underground-badge {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: rgba(255,100,0,0.2); border: 1px solid rgba(255,100,0,0.4); color: #ff6400;
  font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; letter-spacing: 1px;
}

/* FEATURED BEATS */
#featuredBeats { border-top: 1px solid var(--border); }

/* UNDERGROUND SECTION */
#undergroundSection { border-top: 1px solid var(--border); }
.underground-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30,10,0,0.7) 40%, rgba(20,5,0,0.9) 100%);
  z-index: 0;
}
#undergroundSection::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,100,0,0.015) 10px,
    rgba(255,100,0,0.015) 20px
  );
}

/* BUDGET */
#budgetSection { border-top: 1px solid var(--border); }

/* LICENCES PREVIEW */
#licencesPreview { border-top: 1px solid var(--border); }
#licencesPreview .section-inner { padding-bottom: 5rem; }

/* MARKETPLACE CTA */
#marketplaceCta {
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(6,182,212,0.06) 0%, transparent 50%, rgba(139,92,246,0.04) 100%);
}
.mkt-cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.mkt-cta-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 2px; margin-bottom: 0.8rem; }
.mkt-cta-text p { color: var(--text-muted); max-width: 500px; line-height: 1.7; }
.mkt-cta-visual { display: flex; gap: 1.5rem; }
.mkt-stat { text-align: center; background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.2); border-radius: 12px; padding: 1.5rem 2rem; }
.mkt-stat span { font-family: var(--font-display); font-size: 2.5rem; color: var(--neon-cyan); letter-spacing: 2px; display: block; }
.mkt-stat small { color: var(--text-muted); font-size: 0.72rem; }

/* FOOTER */
footer { border-top: 1px solid var(--border); background: var(--bg2); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 4px; margin-bottom: 0.5rem; }
.footer-logo span { color: var(--neon-violet); }
.footer-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--neon-violet); }
.footer-copy { color: rgba(107,107,128,0.5); font-size: 0.75rem; }

/* GRADIENTS ON SECTION BORDERS */
#topPlaylist::after,
#typeBeats::after,
#featuredBeats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
}

@media (max-width: 900px) {
  .mkt-cta-inner { grid-template-columns: 1fr; }
  .mkt-cta-visual { justify-content: center; }
}
@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .playlist-item { grid-template-columns: 28px 42px 1fr auto; }
  .playlist-genre, .playlist-bpm { display: none; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 3rem 1rem; }
  .mkt-cta-visual { gap: 0.8rem; }
  .mkt-stat { padding: 1rem 1.2rem; }
}

/* ==========================================
   STREET SECTIONS — Style Urban / Graffiti
   À partir de #typeBeats vers le bas
   ========================================== */

/* Bande de peinture colorée — transition Space → Street */
.street-divider {
  height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #FF2020, #FFFC00, #00FF88, #FF6400, #A78BFA);
  box-shadow: 0 0 16px rgba(255,255,255,0.1);
}

/* Base des sections street */
.street-section {
  background: #000 !important;
}
.street-section .section-inner {
  border-top: none;
}

/* Eyebrow graffiti style */
.street-eyebrow {
  font-family: var(--font-accent) !important;
  font-size: 1rem !important;
  letter-spacing: 1px !important;
  text-transform: none !important;
  transform: rotate(-1.5deg);
  display: inline-block;
  color: var(--neon-violet);
}

/* Titres dans les street sections — couleur cyan */
.street-section h2 span {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 20px rgba(6,182,212,0.4);
}

/* ARTIST TYPE CARDS */
.artist-types-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.artist-types-row::-webkit-scrollbar { display: none; }

.artist-type-card {
  flex-shrink: 0;
  min-width: 150px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.artist-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--atc-glow, rgba(139,92,246,0.2)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.artist-type-card:hover {
  border-color: var(--atc, #8b5cf6);
  transform: translateY(-6px) rotate(-0.8deg);
  box-shadow: 0 10px 30px var(--atc-glow, rgba(139,92,246,0.2));
}
.artist-type-card:hover::before { opacity: 1; }

.at-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.6rem;
}
.at-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--atc, var(--neon-violet));
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}
.at-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Type cards dans street sections — bordures plus vives au hover */
.street-section .type-card:hover {
  box-shadow: 0 0 0 1px rgba(var(--tc),0.5), 0 8px 30px rgba(var(--tc),0.2);
}

/* Beat cards dans street sections */
.street-section .beat-card:hover {
  box-shadow: 0 8px 30px rgba(255,100,0,0.2);
  border-color: rgba(255,100,0,0.3);
}

/* License cards dans street sections */
.street-section .license-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.15);
}
.street-section .license-card.featured {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(6,182,212,0.2);
}
.street-section .license-badge {
  background: var(--neon-cyan);
}

/* Marketplace CTA dans street */
.street-section.mkt-cta-text p,
#marketplaceCta.street-section .mkt-cta-text p {
  color: rgba(255,255,255,0.6);
}
#marketplaceCta.street-section .mkt-stat {
  background: rgba(0,255,136,0.06);
  border-color: rgba(0,255,136,0.2);
}
#marketplaceCta.street-section .mkt-stat span {
  color: #00FF88;
}

@media (max-width: 768px) {
  .artist-type-card { min-width: 130px; padding: 1.2rem 1rem; }
  .at-name { font-size: 0.9rem; }
  .at-icon { font-size: 1.8rem; }
}


/* ==========================================
   IMAGES & EFFETS VISUELS — v2 IMMERSIF 2026
   ========================================== */

/* ── HERO : broken glass homme – pleine hauteur droite ── */
.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0.65;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.1s linear;
}

/* ── TORN FENCE : séparateur street pleine largeur ── */
.torn-fence-divider {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: invert(1) grayscale(1) contrast(1.8);
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.torn-fence-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, transparent 30%, transparent 70%, #000 100%);
}

/* ── TYPE BEATS : silhouette côté droit ── */
.typebeats-silhouette {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0.38;
  filter: grayscale(1) contrast(1.4);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.1s linear;
}

/* ── FEATURED BEATS : glitch fond ── */
.featured-glitch {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  filter: grayscale(1) contrast(2) blur(1px);
  z-index: 0;
  pointer-events: none;
}

/* ── UNDERGROUND : fond glitch B&W ── */
.underground-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(1) contrast(1.8);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.1s linear;
}

/* ── UNDERGROUND : chaînes côté droit ── */
.underground-chains {
  position: absolute;
  right: 0;
  top: 0;
  width: 260px;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: grayscale(1) contrast(1.6);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.7) 50%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.7) 50%, black 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── BUDGET : grillage côté gauche ── */
.budget-fence {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: invert(1) grayscale(1) contrast(1.5);
  mask-image: linear-gradient(to right, black 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── MARKETPLACE CTA : silhouette fond ── */
.mkt-silhouette {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
  filter: grayscale(1) contrast(1.3);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── MARKETPLACE CTA : chaînes côté droit ── */
.mkt-chains {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 350px;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: grayscale(1) contrast(1.5);
  mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── FOOTER : barcode décoratif ── */
.footer-barcode {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 120px;
  height: 50px;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: invert(1) grayscale(1);
  pointer-events: none;
}
footer { position: relative; }

/* ── BEAT CARDS : barcode corner ── */
.beats-grid-barcode .beat-card {
  position: relative;
  overflow: hidden;
}
.beats-grid-barcode .beat-card::after {
  content: '';
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  width: 55px;
  height: 22px;
  background-image: url('/img/barcode.jpg');
  background-size: cover;
  opacity: 0.2;
  filter: invert(1) grayscale(1);
  pointer-events: none;
}

/* ── EFFETS VISUELS ── */

/* Glitch sur titre underground */
#undergroundSection h2 {
  animation: glitch-text 5s infinite;
}
@keyframes glitch-text {
  0%,88%,100% { transform:none; text-shadow:none; }
  90% { transform:skewX(-4deg); text-shadow: 3px 0 #FF2020, -3px 0 #00FF88; }
  92% { transform:skewX(2deg); text-shadow: -2px 0 #FF2020, 2px 0 var(--neon-cyan); }
  94% { transform:none; text-shadow:none; }
}

/* Scanlines underground */
#undergroundSection::after {
  content:'';
  position:absolute; inset:0;
  background: repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(0,0,0,0.1) 3px,rgba(0,0,0,0.1) 4px);
  pointer-events:none; z-index:1;
}

/* Grain sur sections street */
.street-section::before {
  content:'';
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:0.03; pointer-events:none; z-index:0;
}

/* Scroll reveal */
.reveal-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-img.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-bg-img { width: 100%; opacity: 0.3; }
  .underground-chains, .budget-fence, .mkt-chains, .mkt-silhouette { display: none; }
  .torn-fence-divider { height: 100px; }
  .typebeats-silhouette { width: 100%; opacity: 0.15; }
}

/* ════════════════════════════════════════════
   PATCH — Barre néon supprimée + Cotés crème
   + Images pleine visibilité
   ════════════════════════════════════════════ */

/* 1. Supprimer la barre néon */
.street-divider { display: none !important; }
.torn-fence-divider { display: none !important; }

/* 2. Cotés crème sur les sections street */
.street-section {
  background: #06060f !important;
  border-left: 4px solid #f2ede4 !important;
  border-right: 4px solid #f2ede4 !important;
  box-sizing: border-box;
}

/* 3. Images sans perte d'opacité */
.hero-bg-img {
  opacity: 1 !important;
  mask-image: linear-gradient(to left, black 30%, rgba(0,0,0,0.6) 60%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to left, black 30%, rgba(0,0,0,0.6) 60%, transparent 100%) !important;
}
.typebeats-silhouette {
  opacity: 0.85 !important;
  mask-image: linear-gradient(to left, black 30%, rgba(0,0,0,0.5) 65%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to left, black 30%, rgba(0,0,0,0.5) 65%, transparent 100%) !important;
}
.underground-img-bg {
  opacity: 0.55 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
.underground-chains {
  opacity: 0.9 !important;
  mask-image: linear-gradient(to right, transparent 0%, black 30%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%) !important;
}
.featured-glitch {
  opacity: 0.3 !important;
}
.budget-fence {
  opacity: 0.7 !important;
  mask-image: linear-gradient(to right, black 40%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%) !important;
}
.mkt-silhouette {
  opacity: 0.75 !important;
  mask-image: linear-gradient(to right, black 40%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%) !important;
}
.mkt-chains {
  opacity: 0.8 !important;
  mask-image: linear-gradient(to left, black 40%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%) !important;
}

/* Scroll reveal désactivé — images toujours visibles */
.reveal-img {
  opacity: 1 !important;
  transform: none !important;
}

/* ── IMAGES OPACITÉ 100% — aucune transparence ── */
.hero-bg-img { opacity: 1 !important; }
.typebeats-silhouette { opacity: 1 !important; }
.underground-img-bg { opacity: 1 !important; }
.underground-chains { opacity: 1 !important; }
.featured-glitch { opacity: 1 !important; }
.budget-fence { opacity: 1 !important; }
.mkt-silhouette { opacity: 1 !important; }
.mkt-chains { opacity: 1 !important; }
.reveal-img { opacity: 1 !important; transform: none !important; }
.street-section { border-left: none !important; border-right: none !important; }
