/* intervalles.css — ChoKInfO */

  :root {
    --accent: #ff4444;
    --ok: #26d07c;
    --muted: #9aa5b1;
    --fg: #f4f7fb;
    --bg-card: #101520;
  }
  body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    background: #0c0f14;
    font-family: system-ui, sans-serif;
    color: var(--fg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .stage {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-card), #0c0f14);
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    width: 100%;
    max-width: 450px;
  }
  h1 {
    font-size: clamp(24px, 5vw, 40px);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(255,68,68,.4);
  }
  #countdown {
    font-size: clamp(22px, 5vw, 36px);
    font-weight: bold;
    margin: 1.5rem 0;
    color: #fff;
  }
  label {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: left;
  }
  input, select {
    margin-top: 0.3rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #2d3545;
    background: #1a1f29;
    color: var(--fg);
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
  }
  button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255,68,68,.4);
    width: 100%;
    transition: transform 0.2s;
  }
  button:active { transform: scale(0.98); }

  /* LE PIED DE PAGE INFO */
  .info-box {
    max-width: 450px;
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed #333;
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    position: relative;
  }
  .info-box:hover {
    border-color: var(--accent);
    background: rgba(255, 68, 68, 0.05);
    transform: translateY(-3px);
  }
  .info-box strong { color: var(--fg); }
  .info-box .emoji { font-size: 1.2rem; margin-right: 5px; }



/* ══ Styles extraits des attributs inline ══ */
.inl-img-001 { width:50%; }
