.locked-section {
    background: #121212;
    position: relative;
    overflow: hidden;
    padding: 72px 80px;
  }

  /* ══ BRUIT DE FOND SUBTIL ══ */
  .locked-section::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }

  /* Lignes de scan animées */
  .locked-section::after {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
  }

  .locked-inner {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ══ GAUCHE — Infos ══ */
  .locked-left { flex: 1; min-width: 0; }

  /* Badge CLASSIFIÉ */
  .locked-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 5px 14px; border-radius: 2px;
    margin-bottom: 24px;
  }
  .locked-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #e63c3c;
    animation: blinkDot 1.4s ease-in-out infinite;
  }
  @keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
  }

  /* Titre */
  .locked-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-style: italic;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
    /* Flou léger pour l'effet "caché" */
    filter: blur(3.5px);
    user-select: none;
  }
  .locked-title.revealed { filter: none; transition: filter 0.6s ease; }

  /* Description */
  .locked-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    max-width: 360px;
    filter: blur(3px);
    user-select: none;
  }
  .locked-desc.revealed { filter: none; transition: filter 0.6s ease 0.1s; }

  /* ══ CENTRE — Cadenas ══ */
  .locked-center {
    flex-shrink: 0;
    display: flex; flex-direction: column;
    align-items: center; gap: 24px;
  }

  .locked-icon {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.3);
    transition: border-color 0.5s, color 0.5s;
  }
  .locked-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .locked-icon.revealed { border-color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.8); }

  /* Tag "Bientôt" */
  .locked-soon {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
  }
  .locked-soon.revealed { color: rgba(255,255,255,0.7); }

  /* ══ DROITE — Compte à rebours ══ */
  .locked-right { flex-shrink: 0; }

  .locked-countdown {
    display: flex; gap: 16px; align-items: flex-start;
  }

  .locked-unit {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
  }
  .locked-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #fff; line-height: 1;
    letter-spacing: -0.02em;
    min-width: 2ch; text-align: center;
  }
  .locked-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .locked-sep {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    line-height: 1; margin-top: 2px;
    animation: sepBlink 1s step-end infinite;
  }
  @keyframes sepBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.1; } }

  /* ══ ÉTAT RÉVÉLÉ ══ */
  .locked-revealed-msg {
    display: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    text-align: center;
  }
  .locked-revealed-msg.show { display: block; animation: revealPop 0.5s cubic-bezier(0.16,1,0.3,1) both; }
  @keyframes revealPop {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Bouton découvrir (caché puis révélé) */
  .locked-cta {
    display: none;
    margin-top: 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #000; background: #fff;
    border: none; padding: 13px 32px;
    cursor: pointer; text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.15s;
  }
  .locked-cta:hover { background: #e6e6e6; transform: translateY(-2px); }
  .locked-cta.show { display: inline-block; animation: rcFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.3s both; }

  @keyframes rcFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 860px) {
    .locked-section { padding: 56px 40px; }
    .locked-inner { gap: 36px; }
    .locked-countdown { gap: 10px; }
  }
  @media (max-width: 640px) {
    .locked-section { padding: 48px 20px; }
    .locked-inner { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
    .locked-desc { max-width: 100%; }
    .locked-countdown { gap: 8px; }
    .locked-num { font-size: clamp(28px, 8vw, 44px); }
  }
