/* ════════════════════════════════════════════════════════════
   PIXELWAREZPLAY · HOME NEON VIOLET — Élégant & Glassmorphism
   Scope : page d'accueil uniquement (préfixe .pw-)
   v1.0 — Décembre 2026
════════════════════════════════════════════════════════════ */

:root {
  --pw-bg-1: #06010d;
  --pw-bg-2: #0d0418;
  --pw-violet: #b65cff;
  --pw-violet-2: #7c3aed;
  --pw-violet-3: #a78bfa;
  --pw-pink: #ff4fd8;
  --pw-cyan: #59e1ff;
  --pw-amber: #fbbf24;
  --pw-text: #f5edff;
  --pw-text-muted: #c8b6db;
  --pw-text-faded: #8c7aa3;
  --pw-line: rgba(196, 121, 255, 0.22);
  --pw-line-hover: rgba(196, 121, 255, 0.46);
  --pw-glass-bg: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  --pw-card-bg: rgba(14, 6, 26, 0.55);
  --pw-glow: 0 0 28px rgba(182, 92, 255, 0.22);
  --pw-glow-strong: 0 0 36px rgba(182, 92, 255, 0.45);
  --pw-radius-sm: 12px;
  --pw-radius: 18px;
  --pw-radius-lg: 26px;
  --pw-grad-primary: linear-gradient(135deg, #b65cff 0%, #ff4fd8 100%);
  --pw-grad-violet: linear-gradient(135deg, #7c3aed 0%, #b65cff 100%);
}

/* ── Body background (override doux sur la home) ── */
body:has(.pw-hero) {
  background:
    radial-gradient(circle at 15% 20%, rgba(182,92,255,.18), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(255,79,216,.10), transparent 22%),
    radial-gradient(circle at 60% 90%, rgba(89,225,255,.06), transparent 28%),
    linear-gradient(135deg, #040008 0%, #090213 55%, #05010a 100%) !important;
}
body:has(.pw-hero)::before {
  opacity: 0.08 !important;
  filter: brightness(0.6) saturate(1.3) !important;
}

/* Petit grain global pour la home */
body:has(.pw-hero)::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 80%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.pw-hero {
  position: relative;
  margin: 24px auto 40px;
  padding: 0;
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  isolation: isolate;
}

.mobiletop { display:none!important;  }


@media (max-width: 800px) {
    .main-content {
     
max-width:initial!important;

    }

.btn-sm   {  display:none!important;  }


}

.mobile-menu-btn  {  display:none!important; }


.pw-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}
.pw-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.pw-glow-1 { width: 380px; height: 380px; background: rgba(182,92,255,0.5); top: -120px; left: -80px; animation: pw-float 14s ease-in-out infinite; }
.pw-glow-2 { width: 420px; height: 420px; background: rgba(255,79,216,0.35); top: -100px; right: -100px; animation: pw-float 18s ease-in-out infinite reverse; }
.pw-glow-3 { width: 320px; height: 320px; background: rgba(89,225,255,0.2);  bottom: -120px; left: 35%; animation: pw-float 22s ease-in-out infinite; }

@keyframes pw-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}

.pw-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.pw-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  padding: 56px 44px;
  background: linear-gradient(180deg, rgba(10,5,18,0.4), rgba(10,5,18,0.15));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-lg);
}

.pw-hero-content { display: flex; flex-direction: column; gap: 22px; }

.pw-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(182, 92, 255, 0.08);
  border: 1px solid var(--pw-line);
  color: var(--pw-violet-3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pw-badge-dot {
  width: 7px; height: 7px;
  background: var(--pw-violet);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(182, 92, 255, 0.6);
  animation: pw-dot-pulse 2s ease-out infinite;
}
@keyframes pw-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(182, 92, 255, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(182, 92, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(182, 92, 255, 0); }
}

.pw-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem) !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pw-text);
  text-shadow: 0 0 32px rgba(182, 92, 255, 0.5), 0 0 60px rgba(255, 79, 216, 0.2);
  margin: 0;
}
.pw-hero-title .pw-accent {
  background: linear-gradient(90deg, #b65cff, #ff4fd8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pw-hero-sub {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  margin-top: 14px;
  color: var(--pw-text-muted);
  letter-spacing: -0.01em;
  text-shadow: none;
}
.pw-hero-sub .pw-accent2 { color: #ff8ddb; }
.pw-hero-sub .pw-accent3 { color: var(--pw-cyan); }

.pw-hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--pw-text-muted);
  max-width: 560px;
}
.pw-link-1f {
  color: var(--pw-violet-3) !important;
  font-weight: 600;
  border-bottom: 1px dashed rgba(182,92,255,0.5);
}
.pw-link-1f:hover { color: var(--pw-pink) !important; }

/* Search bar hero */
.pw-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(10, 5, 18, 0.6);
  border: 1px solid var(--pw-line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .2s, box-shadow .2s;
  max-width: 600px;
}
.pw-search:focus-within {
  border-color: rgba(182, 92, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(182, 92, 255, 0.12), var(--pw-glow);
}
.pw-search-icon { padding: 0 10px 0 14px; font-size: 16px; color: var(--pw-violet-3); }
.pw-search-input-home {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--pw-text);
  font-size: 15px;
  padding: 10px 6px;
}
.pw-search-input-home::placeholder { color: var(--pw-text-faded); }

/* Stats strip */
.pw-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.pw-stat {
  padding: 14px 16px;
  background: var(--pw-glass-bg);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .25s ease;
}
.pw-stat:hover { border-color: var(--pw-line-hover); transform: translateY(-2px); box-shadow: var(--pw-glow); }
.pw-stat-num { font-size: 22px; font-weight: 800; color: var(--pw-text); letter-spacing: -0.02em; }
.pw-stat-new { font-size: 14px; color: var(--pw-violet-3); }
.pw-stat-label { font-size: 11px; color: var(--pw-text-faded); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* Hero side */
.pw-hero-side { display: flex; flex-direction: column; gap: 18px; }

.pw-card {
  background: var(--pw-glass-bg);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset, 0 12px 40px rgba(0,0,0,0.35);
  padding: 24px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pw-card:hover { border-color: var(--pw-line-hover); box-shadow: var(--pw-glow); }

.pw-card-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.pw-card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 22px;
  background: rgba(182, 92, 255, 0.12);
  border: 1px solid var(--pw-line);
  border-radius: 14px;
}
.pw-card-title { font-size: 17px; font-weight: 700; color: var(--pw-text); }
.pw-card-sub { font-size: 12px; color: var(--pw-text-muted); margin-top: 2px; }

.pw-rules-list { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0; }
.pw-rules-list li { list-style: none; }
.pw-rules-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--pw-text);
  font-weight: 500;
  font-size: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: all .2s ease;
}
.pw-rules-list a:hover {
  background: rgba(182, 92, 255, 0.08);
  border-color: var(--pw-line);
  color: var(--pw-text);
  transform: translateX(4px);
}
.pw-num {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--pw-grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 0 18px rgba(182,92,255,0.4);
  flex-shrink: 0;
}
.pw-num-vip { background: linear-gradient(135deg, #fbbf24, #f97316); box-shadow: 0 0 18px rgba(251,191,36,0.4); }
.pw-arrow { margin-left: auto; color: var(--pw-violet-3); font-weight: 700; }

/* Recruit card */
.pw-card-recruit {
  background: linear-gradient(180deg, rgba(182,92,255,0.08), rgba(255,79,216,0.04));
  border-color: rgba(182,92,255,0.3);
}
.pw-recruit-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pw-pink);
  margin-bottom: 14px;
}
.pw-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pw-pink);
  box-shadow: 0 0 0 0 rgba(255, 79, 216, 0.6);
  animation: pw-dot-pulse 2s ease-out infinite;
}
.pw-recruit-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--pw-line);
  color: var(--pw-text);
  transition: all .2s ease;
  margin-bottom: 10px;
}
.pw-recruit-item:hover {
  border-color: rgba(182, 92, 255, 0.5);
  background: rgba(182, 92, 255, 0.1);
  transform: translateY(-2px);
}
.pw-recruit-emoji { font-size: 26px; line-height: 1; }
.pw-recruit-title { font-weight: 700; font-size: 14px; color: var(--pw-text); }
.pw-recruit-desc { font-size: 12px; color: var(--pw-text-muted); margin-top: 3px; line-height: 1.4; }

/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.pw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.pw-btn-primary {
  background: var(--pw-grad-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(182, 92, 255, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.pw-btn-primary:hover { filter: brightness(1.08) saturate(1.1); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(182,92,255,0.5); color:#fff; }
.pw-btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--pw-line);
  color: var(--pw-text);
}
.pw-btn-ghost:hover { background: rgba(182, 92, 255, 0.1); border-color: var(--pw-line-hover); color: var(--pw-text); }
.pw-btn-block { width: 100%; }

/* ════════════════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════════════════ */
.pw-section { margin: 56px auto; position: relative; z-index: 1; }

.pw-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pw-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pw-violet-3);
  margin-bottom: 6px;
}
.pw-section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 800;
  color: var(--pw-text) !important;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}
.pw-section-desc { color: var(--pw-text-muted); font-size: 14px; max-width: 560px; margin: 0; }

.pw-grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ════════════════════════════════════════════════════════════
   CATEGORIES GRID
════════════════════════════════════════════════════════════ */
.pw-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pw-cat {
  position: relative;
  padding: 22px 20px;
  border-radius: var(--pw-radius);
  background: var(--pw-glass-bg);
  border: 1px solid var(--pw-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--pw-text);
  transition: all .25s ease;
  overflow: hidden;
}
.pw-cat::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(182,92,255,0.4), transparent 50%);
  opacity: 0;
  z-index: -1;
  transition: opacity .25s ease;
}
.pw-cat:hover { transform: translateY(-4px); border-color: var(--pw-line-hover); box-shadow: var(--pw-glow); color: var(--pw-text); }
.pw-cat:hover::before { opacity: 1; }
.pw-cat-icon { font-size: 30px; margin-bottom: 14px; }
.pw-cat-name { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.pw-cat-desc { font-size: 12px; color: var(--pw-text-muted); line-height: 1.4; }
.pw-cat-arrow { position: absolute; top: 18px; right: 18px; color: var(--pw-violet-3); font-weight: 700; opacity: 0.5; transition: all .2s; }
.pw-cat:hover .pw-cat-arrow { opacity: 1; transform: translateX(4px); }
.pw-cat-vip {
  background: linear-gradient(180deg, rgba(251,191,36,0.08), rgba(251,191,36,0.02));
  border-color: rgba(251,191,36,0.3);
}
.pw-cat-vip .pw-cat-name { color: var(--pw-amber); }
.pw-cat-vip:hover { border-color: rgba(251,191,36,0.6); box-shadow: 0 0 28px rgba(251,191,36,0.25); }

/* ════════════════════════════════════════════════════════════
   TOP 10 LIST
════════════════════════════════════════════════════════════ */
.pw-card-list { padding: 12px; }
.pw-top-list { display: flex; flex-direction: column; gap: 4px; }
.pw-top-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--pw-text);
  transition: all .2s ease;
  border: 1px solid transparent;
}
.pw-top-item:hover {
  background: rgba(182, 92, 255, 0.06);
  border-color: var(--pw-line);
  color: var(--pw-text);
}
.pw-top-rank {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--pw-line);
  font-weight: 800;
  font-size: 13px;
  color: var(--pw-text-muted);
  flex-shrink: 0;
}
.pw-top1 { background: linear-gradient(135deg, #fbbf24, #f97316); color: #fff; border-color: transparent; box-shadow: 0 0 16px rgba(251,191,36,0.45); }
.pw-top2 { background: linear-gradient(135deg, #d4d4d8, #71717a); color: #fff; border-color: transparent; box-shadow: 0 0 12px rgba(212,212,216,0.3); }
.pw-top3 { background: linear-gradient(135deg, #b45309, #78350f); color: #fff; border-color: transparent; box-shadow: 0 0 12px rgba(180,83,9,0.3); }
.pw-top-poster {
  width: 44px; height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--pw-card-bg);
  border: 1px solid var(--pw-line);
}
.pw-top-placeholder { display: grid; place-items: center; font-size: 20px; }
.pw-top-info { flex: 1; min-width: 0; }
.pw-top-title {
  font-weight: 600; font-size: 14px;
  color: var(--pw-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.pw-top-meta { font-size: 11px; color: var(--pw-text-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pw-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(182, 92, 255, 0.12);
  border: 1px solid var(--pw-line);
  color: var(--pw-violet-3);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pw-top-arrow { color: var(--pw-violet-3); font-weight: 700; opacity: 0; transition: all .2s; }
.pw-top-item:hover .pw-top-arrow { opacity: 1; transform: translateX(2px); }

/* ════════════════════════════════════════════════════════════
   STATS CARD
════════════════════════════════════════════════════════════ */
.pw-card-stats { padding: 22px; }
.pw-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.pw-stat-card {
  padding: 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--pw-line);
  border-radius: 14px;
  transition: all .2s ease;
}
.pw-stat-card:hover { border-color: var(--pw-line-hover); transform: translateY(-2px); }
.pw-stat-card-num {
  font-size: 24px;
  font-weight: 800;
  background: var(--pw-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.pw-stat-card-name { font-size: 14px; }
.pw-stat-card-label { font-size: 11px; color: var(--pw-text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.pw-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--pw-line), transparent); margin: 18px 0; }
.pw-mini-title { font-size: 15px; font-weight: 700; color: var(--pw-text); margin-bottom: 8px; }
.pw-mini-text { font-size: 13px; color: var(--pw-text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   CONTENT CARDS (Recent uploads)
════════════════════════════════════════════════════════════ */
.pw-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pw-content-card {
  display: block;
  border-radius: var(--pw-radius);
  background: var(--pw-glass-bg);
  border: 1px solid var(--pw-line);
  overflow: hidden;
  color: var(--pw-text);
  transition: all .25s ease;
  position: relative;
}
.pw-content-card:hover {
  transform: translateY(-6px);
  border-color: var(--pw-line-hover);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 28px rgba(182,92,255,0.18);
  color: var(--pw-text);
}
.pw-content-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--pw-card-bg);
}
.pw-content-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pw-content-card:hover .pw-content-poster img { transform: scale(1.05); }
.pw-poster-placeholder {
  display: grid; place-items: center;
  width: 100%; height: 100%;
  font-size: 48px;
  background: linear-gradient(135deg, rgba(182,92,255,0.08), rgba(255,79,216,0.04));
}
.pw-quality-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--pw-line);
  font-size: 10px;
  font-weight: 700;
  color: var(--pw-violet-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pw-content-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.pw-content-body { padding: 14px 16px; }
.pw-content-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--pw-text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  min-height: 2.6em;
}
.pw-content-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.pw-time { font-size: 11px; color: var(--pw-text-faded); }

/* ════════════════════════════════════════════════════════════
   INFO / SEO FOOTER
════════════════════════════════════════════════════════════ */
.pw-card-info { padding: 36px; }
.pw-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--pw-line);
}
.pw-info-feature { text-align: left; }
.pw-info-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(182, 92, 255, 0.1);
  border: 1px solid var(--pw-line);
  font-size: 24px;
  margin-bottom: 14px;
}
.pw-info-feature h3 { font-size: 16px; font-weight: 700; color: var(--pw-text); margin-bottom: 6px; }
.pw-info-feature p { font-size: 13px; color: var(--pw-text-muted); line-height: 1.55; }

.pw-info-text { max-width: 880px; }
.pw-info-text h2 { font-size: 20px; color: var(--pw-text); margin: 0 0 14px 0; font-weight: 700; }
.pw-info-text p { font-size: 14px; color: var(--pw-text-muted); line-height: 1.75; margin-bottom: 14px; }
.pw-info-text strong { color: var(--pw-violet-3); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════════════════════════ */
.pw-empty { text-align: center; color: var(--pw-text-faded); padding: 28px 16px; font-size: 14px; }
.pw-empty-card { padding: 24px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pw-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pw-content-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .pw-hero-inner { grid-template-columns: 1fr; padding: 36px 26px; gap: 26px; }
  .pw-grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .pw-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-content-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-info-grid { grid-template-columns: 1fr; gap: 20px; }
  .pw-card-info { padding: 26px; }
  .pw-section { margin: 40px auto; }
}

@media (max-width: 560px) {
  .pw-hero { margin: 14px auto 24px; }
  .pw-hero-inner { padding: 30px 18px; }
  .pw-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .pw-cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pw-cat { padding: 18px 16px; }
  .pw-cat-icon { font-size: 26px; margin-bottom: 10px; }
  .pw-content-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pw-stats-grid { grid-template-columns: 1fr 1fr; }
  .pw-section-head { flex-direction: column; align-items: flex-start; }
  .pw-search { flex-wrap: wrap; }
  .pw-btn { padding: 10px 16px; font-size: 13px; }
}

/* ── Fallback :has() pour navigateurs anciens ─────────────────
   Si le sélecteur :has() n'est pas supporté, le body conserve
   son thème par défaut (déjà violet), donc pas de casse. */
