/* ══════════════════════════════════════
   DEDICACE — styles propres à la page dédicace
   LMP Radio
══════════════════════════════════════ */

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

body {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(204,0,0,.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 110%, rgba(162,56,255,.08) 0%, transparent 55%);
  background-attachment: fixed;
}

/* ── INTRO ── */
.dedicace-section { padding: 48px 0 60px; }
.dedicace-intro {
  max-width: 700px; margin: 0 auto;
  padding: 0 28px 36px; text-align: center;
}
.dedicace-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.12); border: 1px solid rgba(204,0,0,.3);
  padding: 7px 18px; border-radius: 30px;
  font-size: .68rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: #ff8888; margin-bottom: 20px;
}
.dedicace-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #ff8888; animation: pulse 1.5s infinite; }
.dedicace-title { font-size: 2.4rem; font-weight: 900; line-height: 1.1; letter-spacing: .5px; margin-bottom: 14px; }
.dedicace-title .grad {
  background: linear-gradient(135deg, #fff 20%, #ff8888 60%, #a238ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dedicace-sub { font-size: .9rem; color: var(--t2); line-height: 1.7; }

/* ── PANNEAU ── */
.dedicace-panel {
  max-width: 560px; margin: 0 auto; padding: 0 28px;
  animation: fadeUp .4s ease;
}
.dedi-form {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(8px);
}
.dedi-form input, .dedi-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 13px 16px; color: #fff;
  font-size: .85rem; font-family: inherit; outline: none; transition: all .2s;
}
.dedi-form input:focus, .dedi-form textarea:focus { border-color: rgba(204,0,0,.4); background: rgba(204,0,0,.04); }
.dedi-form textarea { resize: vertical; min-height: 100px; }
.dedi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .dedi-row { grid-template-columns: 1fr; } }
.dedi-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, #8b0000, #cc0000, #ff2200);
  color: #fff; font-size: .88rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all .25s;
}
.dedi-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(180,0,0,.5); }
.dedi-msg { font-size: .78rem; padding: 10px 14px; border-radius: 10px; text-align: center; display: none; }
.dedi-msg.ok  { background: rgba(0,255,136,.08); color: var(--g); border: 1px solid rgba(0,255,136,.2); display: block; }
.dedi-msg.err { background: rgba(255,50,50,.08); color: #ff6666; border: 1px solid rgba(255,50,50,.2); display: block; }
.dedi-msg.offair { font-size: 1.5rem; font-weight: 700; padding: 20px 22px; }

@media (max-width: 600px) {
  .dedicace-title { font-size: 1.9rem; }
  .dedicace-panel, .dedicace-intro { padding-left: 16px; padding-right: 16px; }
}
