:root {
  --sky:    #0d3b6e;
  --sky-m:  #2d7fd4;
  --sky-l:  #e6f0fb;
  --sky-ll: #f5f9ff;
  --sun:    #f59e2a;
  --txt:    #0d2b4e;
  --muted:  #5a82aa;
  --border: #c8dff5;
  --bg:     #f5f9ff;
  --danger:        #d4431a;
  --danger-l:      #fdf0ec;
  --danger-border: #f5c4b3;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--txt); display: flex; flex-direction: column; min-height: 100vh; }

/* NAV */
nav { background: var(--sky); height: 62px; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(26,64,96,.2); }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-sun { width: 34px; height: 34px; border-radius: 50%; background: var(--sun); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.brand-name { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.brand-dot { color: var(--sun); }
.nav-cta { background: var(--sun); color: var(--sky); font-weight: 800; font-size: .82rem; padding: .45rem 1.1rem; border-radius: 20px; text-decoration: none; transition: all .15s; white-space: nowrap; display: flex; align-items: center; gap: .35rem; }
.nav-cta:hover { background: #e0a810; transform: translateY(-1px); }

/* HERO */
.hero { background: var(--sky); padding: 3.5rem 2rem 0; text-align: center; position: relative; }
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; padding-bottom: 3.5rem; }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: .8rem; }
.hero h1 em { font-style: italic; color: var(--sun); }
.hero-sub { color: rgba(255,255,255,.55); font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; }
.hero-checks { display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-check { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 600; display: flex; align-items: center; gap: .3rem; }
.check-icon { color: var(--sun); font-weight: 800; }
.hero-check-sep { color: rgba(255,255,255,.2); }

/* Hero form */
.hero-form { display: contents; }
.hero-search { display: flex; gap: .5rem; max-width: 700px; margin: 0 auto; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.hero-select {
  font-family: 'Nunito', sans-serif; font-size: .88rem; font-weight: 600;
  padding: .72rem 2.2rem .72rem 1rem; border-radius: 20px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,.7)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .8rem center;
  color: #fff; cursor: pointer; appearance: none; -webkit-appearance: none;
  transition: border-color .15s; min-width: 160px;
}
.hero-select:focus { outline: none; border-color: var(--sun); }
.hero-select option { background: var(--sky); color: #fff; }


/* FLASH MESSAGE */
.flash {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1.1rem; border-radius: 12px;
  font-size: .84rem; font-weight: 600;
  margin-bottom: 1.25rem;
  animation: flashIn .35s ease both;
}
.flash-success {
  background: #eaf5e4; border: 1.5px solid #b8dfa8;
  color: #2a6e1a;
}
.flash-error {
  background: #fdf0ec; border: 1.5px solid #f5c4b3;
  color: #b83515;
}

/* MAIN */
.main { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem 5rem; flex: 1; }
.results-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: .6rem; }
.results-info { font-size: .84rem; color: var(--muted); font-weight: 600; }
.results-info strong { color: var(--txt); font-weight: 800; }

/* LIST */
.list { display: flex; flex-direction: column; gap: 1rem; }

/* CARD */
.card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  overflow: hidden; text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 230px 1fr;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  animation: fadeUp .38s ease both;
}
.card:hover { box-shadow: 0 10px 36px rgba(13,59,110,.13); border-color: var(--sky-m); transform: translateY(-2px); }
.card:nth-child(1){animation-delay:0s} .card:nth-child(2){animation-delay:.06s}
.card:nth-child(3){animation-delay:.12s} .card:nth-child(4){animation-delay:.18s}
.card:nth-child(5){animation-delay:.24s} .card:nth-child(6){animation-delay:.30s}

.card-img-wrap { position: relative; }
.card-img { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--sky-l); min-height: 160px; }
.card-img-placeholder { width: 100%; height: 100%; min-height: 160px; background: var(--sky-l); display: flex; align-items: center; justify-content: center; font-size: 3rem; }


.card-body { padding: 1.15rem 1.3rem; display: flex; flex-direction: column; }
.card-cat-pill { display: inline-flex; align-items: center; gap: .3rem; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .22rem .65rem; border-radius: 20px; margin-bottom: .5rem; width: fit-content; }
.card-title { font-family: 'Lora', serif; font-size: 1.12rem; font-weight: 700; line-height: 1.28; color: var(--txt); margin-bottom: .5rem; }
.card:hover .card-title { color: var(--sky-m); }
.card-desc { font-size: .8rem; color: var(--muted); font-weight: 600; line-height: 1.6; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: .9rem; padding-top: .75rem; border-top: 1px solid var(--sky-l); gap: .5rem; }
.card-by-sub { font-size: .68rem; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: .25rem; }
.card-date-right { font-size: .7rem; color: var(--muted); font-weight: 600; margin-left: auto; }

/* Category pill colors */
.cat-sport   { background: #e8f4fd; color: #1a7ab8; }
.cat-jeux    { background: #fdf0e6; color: #e07b39; }
.cat-sorties { background: #fce8f0; color: #c0386a; }
.cat-nature  { background: #eaf5e4; color: #3a8a2a; }
.cat-culture { background: #e4f0ea; color: #207040; }
.cat-artistique     { background: #f2eafa; color: #7b3fa0; }
.cat-langues { background: #fdf5e6; color: #d4891a; }
.cat-techno  { background: #e6edf8; color: #2560a8; }
.cat-brico   { background: #f5ede4; color: #8a5a2a; }
.cat-autre   { background: #f0f0ee; color: #888780; }

/* NO RESULTS */
.no-results { text-align: center; padding: 3rem 1.5rem; }
.no-results-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-results h2 { font-family: 'Lora', serif; color: var(--txt); margin-bottom: .5rem; }
.no-results p { color: var(--muted); font-size: .9rem; }
.no-results a { color: var(--sky-m); }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; color: var(--muted); font-size: .85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; text-decoration: none; font-family: 'Nunito', sans-serif; transition: all .15s; }
.page-btn:hover { border-color: var(--sky-m); color: var(--sky-m); background: var(--sky-l); }
.page-btn.active { background: var(--sky); color: #fff; border-color: var(--sky); pointer-events: none; }
.page-btn.disabled { opacity: .35; pointer-events: none; }
.page-dots { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .85rem; }

footer { background: var(--sky); color: rgba(255,255,255,.42); padding: 2rem; text-align: center; font-size: .78rem; font-weight: 600; }
footer a { color: var(--sun); text-decoration: none; }
footer a:hover { text-decoration: underline; }

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

/* PARTNERS */
.partners-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}
.page-title {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
  text-align: center;
  animation: fadeUp .4s ease both;
}
.page-title h1 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--txt);
  margin-bottom: .3rem;
}
.page-title p {
  font-size: .85rem;
  color: var(--muted);
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: fadeUp .4s .1s ease both;
}
.partner-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.partner-card:hover {
  box-shadow: 0 8px 28px rgba(26,95,168,.12);
  border-color: var(--sky-m);
  transform: translateY(-2px);
}
.partner-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem; }
.partner-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--sky-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.partner-name { font-family: 'Fraunces', serif; font-size: .95rem; font-weight: 700; color: var(--txt); }
.partner-cat { font-size: .68rem; font-weight: 600; color: var(--muted); }
.partner-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.partner-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 700; color: var(--sky); text-decoration: none; transition: color .15s; }
.partner-link:hover { color: var(--sky-d); }
.cta-card {
  grid-column: 1 / -1;
  background: #0d3b6e;
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: fadeUp .4s .2s ease both;
}
.cta-text { color: rgba(255,255,255,.7); font-size: .85rem; line-height: 1.6; }
.cta-text strong { color: #fff; font-weight: 700; }
.cta-btn { background: var(--sun); color: var(--blue-d); text-decoration: none; padding: .65rem 1.4rem; border-radius: 9px; font-size: .84rem; font-weight: 700; white-space: nowrap; transition: all .15s; display: flex; align-items: center; gap: .4rem; }
.cta-btn:hover { background: #e08e1a; transform: translateY(-1px); }

/* CONTACT */
.contact-page {
  max-width: 900px;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 4px 24px rgba(26,95,168,.07);
  animation: fadeUp .4s ease both;
}
.contact-form input,
.contact-form textarea,
.contact-form button,
.g-recaptcha {
  width: 100%;
  box-sizing: border-box;
}
.g-recaptcha > div {
  width: 100% !important;
  margin: 0 auto;
}
.btn-primary {
  max-width: 100%;
  display: block;
  text-align: center;
}
@media(max-width:880px) {
  .contact-page { grid-template-columns: 1fr; padding: 1rem; }
  .contact-card { padding: 1.2rem; }
  .contact-form { gap: .8rem; }
}

.contact-card h2 { font-family: 'Fraunces', serif; margin-bottom: .75rem; }
.contact-form { display: grid; gap: 1rem; }
.field-row { display: flex; flex-direction: column; gap: .35rem; }
.field-row label { font-size: .85rem; color: var(--txt); font-weight: 700; }
.field-row input,
.field-row textarea { border: 1.5px solid var(--border); border-radius: 9px; padding: .8rem; font-family: inherit; font-size: .9rem; }
.btn-primary { background: var(--sun); color: var(--blue-d); border: none; padding: .8rem 1.2rem; border-radius: 9px; font-weight: 700; cursor: pointer; }
.btn-primary:hover { background: #e08e1a; }

@media(max-width:880px) {
  .contact-page { grid-template-columns: 1fr; }
}

/* ERROR 404 */
.error-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: var(--bg);
}
.error-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(26,95,168,.07);
}
.error-code {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--sky-l);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
}
.error-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--txt);
  margin-bottom: .5rem;
}
.error-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.error-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--sky);
  color: #fff;
  text-decoration: none;
  padding: .75rem 1.8rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
}

/* ── SHOW PAGE ──────────────────────────────────────────── */
.show-grid {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 1.5rem;
  align-items: start;
}

.show-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  animation: fadeUp .4s ease both;
}
.show-img { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; }
.show-img-placeholder {
  width: 100%; aspect-ratio: 16/8;
  background: var(--sky-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.show-body { padding: 1.75rem 2rem 2rem; }

.show-cat { display: flex; align-items: center; gap: .4rem; margin-bottom: .75rem; }
.show-title {
  font-family: 'Lora', serif;
  font-size: 1.85rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 1.25rem;
}
.show-desc { font-size: .95rem; color: #445; line-height: 1.85; margin-bottom: 1.75rem; }
.show-meta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid var(--sky-l); }
.show-meta-item { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); font-weight: 600; }
.show-meta-item strong { color: var(--txt); }

.show-sidebar { display: flex; flex-direction: column; gap: 1rem; animation: fadeUp .4s .1s ease both; }

.sidebar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
}
.sidebar-card h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.sidebar-card p { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.6; }

.contact-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .8rem;
  background: var(--sky); color: #fff;
  text-decoration: none; font-weight: 800; font-size: .88rem;
  border-radius: 10px; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all .15s;
}
.contact-btn:hover { background: var(--sky-m); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,59,110,.2); }

.share-title { font-size: .7rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; margin-bottom: .75rem; }
.share-btns { display: flex; gap: .5rem; }
.share-btn {
  flex: 1; padding: .45rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--muted);
  font-size: .78rem; font-weight: 700;
  cursor: pointer; text-align: center; text-decoration: none;
  font-family: 'Nunito', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: .3rem;
  transition: all .12s;
}
.share-btn:hover { border-color: var(--sky-m); color: var(--sky-m); }

.report-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  text-align: center;
}
.report-link {
  font-size: .8rem; font-weight: 700; color: var(--muted);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .15s;
}
.report-link:hover { color: #c0386a; }

@media(max-width:680px) {
  .show-grid { grid-template-columns: 1fr; }
  .show-title { font-size: 1.45rem; }
  .show-body { padding: 1.25rem; }
}

/* ── Dropdown catégorie custom ──────────────────────── */
.hero { overflow: visible; }
.hero-inner { overflow: visible; }
.cat-dropdown-wrap { position: relative; }

.hero-cat-btn {
  font-family: 'Nunito', sans-serif; font-size: .88rem; font-weight: 600;
  padding: .72rem 1.1rem; border-radius: 20px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12); color: #fff; cursor: pointer;
  display: flex; align-items: center; gap: .45rem;
  transition: border-color .15s, background .15s; white-space: nowrap; user-select: none;
}
.hero-cat-btn:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.18); }
.hero-cat-btn.open { border-color: var(--sun); background: rgba(240,184,32,.15); color: var(--sun); }
.cat-arrow { font-size: .65rem; transition: transform .2s; opacity: .7; }
.hero-cat-btn.open .cat-arrow { transform: rotate(180deg); opacity: 1; }

.cat-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(26,64,96,.18); min-width: 200px;
  z-index: 9999; padding: .4rem;
}
.cat-dropdown-menu.open { display: block; animation: catDropDown .18s ease both; }
@keyframes catDropDown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }

.cat-menu-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .75rem; border-radius: 10px; cursor: pointer;
  font-size: .82rem; font-weight: 700; color: var(--txt);
  transition: background .12s; white-space: nowrap;
}
.cat-menu-item:hover { background: var(--sky-ll); }
.cat-menu-item.active { background: var(--sky-l); color: var(--sky); }
.cat-menu-item .cat-emoji { font-size: 1rem; width: 22px; text-align: center; }
.cat-menu-divider { height: 1px; background: var(--border); margin: .35rem .4rem; }

@media(max-width:580px) {
  .card { grid-template-columns: 1fr; }
  .card-img-wrap { aspect-ratio: 16/9; height: auto; }
  .card-img { height: 100%; min-height: unset; }
  .card-img-placeholder { aspect-ratio: 16/9; height: auto; min-height: unset; }
  nav { padding: 0 1rem; }
  .hero { padding: 2.5rem 1rem 0; }
  .main { padding: 1.5rem 1rem 3rem; }
  .hero-search { flex-direction: column; }
  .hero-select, .hero-input { min-width: unset; width: 100%; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* ── POSTER FORM ────────────────────────────────────────── */
.poster-title {
  max-width: 620px; margin: 0 auto; padding: 0.5rem 1.5rem 0; text-align: center;
  animation: fadeUp .4s ease both;
}
.poster-title h1 { 
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--txt);
  margin-bottom: .3rem; 
}

.poster-title p  { font-size: .85rem; color: var(--muted); }


.form-card {
  max-width: 640px; margin: 2rem auto 5rem;
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,95,168,.07);
  animation: fadeUp .4s .15s ease both;
}
.form-card--narrow { max-width: 540px; }
.form-section { padding: 1.6rem 1.8rem; border-bottom: 1px solid var(--border); }
.form-section:last-child { border-bottom: none; }

.section-head {
  display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 1.2rem;
}
.section-head::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-icon {
  width: 24px; height: 24px; border-radius: 6px; background: var(--sky-l);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--txt); margin-bottom: .4rem; }
.f-hint { font-size: .73rem; color: var(--muted); margin-top: .3rem; }
.f-char-hint { display: flex; justify-content: flex-end; font-size: .72rem; color: var(--muted); margin-top: .3rem; }

.f-input {
  width: 100%; padding: .65rem .9rem;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Nunito', sans-serif; font-size: .875rem;
  color: var(--txt); background: var(--bg);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.f-input:focus {
  outline: none; border-color: var(--sky); background: #fff;
  box-shadow: 0 0 0 3px rgba(13,59,110,.09);
}
textarea.f-input { resize: vertical; min-height: 130px; line-height: 1.6; }
.f-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235a82aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
  padding-right: 2.2rem; cursor: pointer;
}

/* Category radio grid */
.form-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .5rem;
}
.form-cat-grid input[type="radio"],
.form-cat-grid input[type="checkbox"] { display: none; }
.cat-lbl {
  display: flex; align-items: center; gap: .45rem;
  padding: .45rem .75rem; border-radius: 9px;
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .8rem; color: var(--muted); font-weight: 600;
  cursor: pointer; transition: all .12s;
}
.cat-lbl:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-l); }
.form-cat-grid input[type="radio"]:checked + .cat-lbl,
.form-cat-grid input[type="checkbox"]:checked + .cat-lbl {
  background: var(--sky-l); border-color: var(--sky); color: var(--sky); font-weight: 700;
}

/* Upload */
.upload-zone {
  display: block; border: 2px dashed var(--border); border-radius: 12px;
  padding: 2rem; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s; background: var(--bg);
}
.upload-zone:hover { border-color: var(--sky); background: var(--sky-l); }
.upload-zone input[type="file"] { display: none; }
.upload-icon { font-size: 2.2rem; margin-bottom: .5rem; display: block; }
.upload-text { font-size: .875rem; color: var(--txt); font-weight: 600; }
.upload-sub  { font-size: .75rem; color: var(--muted); margin-top: .25rem; }
.f-or-divider {
  display: flex; align-items: center; gap: .75rem;
  margin: 1rem 0; font-size: .78rem; color: var(--muted); font-weight: 600;
}
.f-or-divider::before, .f-or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Submit footer */
.poster-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.poster-submit-btn {
  background: var(--sky); color: #fff; border: none;
  padding: .8rem 2rem; border-radius: 10px;
  font-size: .9rem; font-weight: 800; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .15s;
}
.poster-submit-btn:hover { background: #0a2e57; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,59,110,.25); }

/* Form errors */

@media(max-width:480px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .poster-footer { flex-direction: column; align-items: stretch; }
  .poster-submit-btn { justify-content: center; width: 100%; }
  .form-card { margin: 1.5rem auto 3rem; border-radius: 12px; }
  .form-section { padding: 1.2rem; }
}

/* ── DELETE PAGE ─────────────────────────────────────────── */
.delete-card {
  max-width: 500px; margin: 2rem auto 5rem;
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,95,168,.07);
  animation: fadeUp .4s .1s ease both;
}
.delete-section { padding: 1.6rem 1.8rem; border-bottom: 1px solid var(--border); }
.delete-section:last-child { border-bottom: none; }
.section-icon--danger { background: var(--danger-l); }

.warning-box {
  background: var(--danger-l); border: 1.5px solid var(--danger-border);
  border-radius: 10px; padding: 1.1rem 1.3rem;
  display: flex; align-items: flex-start; gap: .75rem;
}
.warning-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--danger);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.warning-text { font-size: .88rem; color: var(--txt); line-height: 1.6; font-weight: 600; }
.warning-sub  { font-size: .78rem; color: var(--muted); margin-top: .3rem; }

.annonce-preview {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: .9rem 1.1rem; margin-top: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.preview-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--sky-l);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.preview-title { font-size: .88rem; font-weight: 700; color: var(--txt); }
.preview-meta  { font-size: .72rem; color: var(--muted); margin-top: .1rem; }

.btn-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }

.cancel-btn {
  background: var(--bg); color: var(--muted); border: 1.5px solid var(--border);
  padding: .75rem 1.6rem; border-radius: 10px; font-size: .88rem; font-weight: 700;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  display: inline-flex; align-items: center; gap: .4rem;
  text-decoration: none; transition: all .15s;
}
.cancel-btn:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-l); }

.delete-btn {
  background: var(--danger); color: #fff; border: none;
  padding: .8rem 1.8rem; border-radius: 10px; font-size: .88rem; font-weight: 800;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  display: inline-flex; align-items: center; gap: .5rem; transition: all .15s;
}
.delete-btn:hover { background: #b83515; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,67,26,.25); }

@media(max-width:480px) {
  .delete-section { padding: 1.4rem 1.2rem; }
  .btn-row { flex-direction: column-reverse; }
  .cancel-btn, .delete-btn { width: 100%; justify-content: center; }
}

/* FAQ STYLES */
.faq-page { max-width: 640px; margin: 0 auto; padding: 2rem 1.5rem 5rem; }

.faq-section-title {
  display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 1rem;
  margin-top: 2rem;
}
.faq-section-title:first-child { margin-top: 0; }
.faq-section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.faq-section-icon {
  width: 24px; height: 24px; border-radius: 6px; background: var(--sky-l);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: .8rem;
}

.faq-list { display: flex; flex-direction: column; gap: .6rem; }

/* DETAILS / SUMMARY — zéro JS */
.faq-item {
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--sky-m); box-shadow: 0 4px 18px rgba(45,127,212,.08); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.3rem; cursor: pointer; user-select: none;
  font-size: .88rem; font-weight: 600; color: var(--txt);
  list-style: none; transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--sky); }
.faq-item[open] summary { color: var(--sky); }

.faq-arrow {
  width: 22px; height: 22px; border-radius: 6px; background: var(--sky-l);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item[open] .faq-arrow { background: var(--sky); transform: rotate(180deg); }
.faq-arrow svg { stroke: var(--sky); transition: stroke .2s; }
.faq-item[open] .faq-arrow svg { stroke: #fff; }

.faq-answer {
  padding: 0 1.3rem 1.1rem;
  font-size: .84rem; color: var(--muted); line-height: 1.75;
}

/* CTA */
.faq-cta {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 1.6rem; text-align: center; margin-top: 2rem;
}
.faq-cta-title {
  font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--txt); margin-bottom: .35rem;
}
.faq-cta-desc { font-size: .82rem; color: var(--muted); margin-bottom: 1.1rem; }
.faq-cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sky); color: #fff; text-decoration: none;
  padding: .7rem 1.6rem; border-radius: 10px;
  font-size: .86rem; font-weight: 700; transition: all .15s;
}
.faq-cta-btn:hover { background: var(--sky-m); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,127,212,.3); }

@media(max-width:480px) {
  .faq-item summary { font-size: .84rem; padding: .9rem 1rem; }
  .faq-answer { padding: 0 1rem 1rem; }
}

/* ── À PROPOS ─────────────────────────────────────────── */
/* Texte dans les form-section */
.form-section p { font-size: .9rem; color: #3a5878; margin-bottom: .65rem; line-height: 1.7; }
.form-section p:last-child { margin-bottom: 0; }
.form-section p strong { color: var(--txt); font-weight: 600; }

/* Valeurs – grille 2 colonnes */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: .3rem;
}
.value-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 1rem 1.1rem;
}
.value-card .icon { font-size: 1.3rem; display: block; margin-bottom: .4rem; }
.value-card strong { display: block; font-size: .88rem; font-weight: 600; color: var(--txt); margin-bottom: .2rem; }
.value-card span { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* Étapes */
.steps { margin-top: .3rem; }
.step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  width: 28px; height: 28px;
  background: var(--sky); color: #fff;
  font-size: .78rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.step-body strong { display: block; font-size: .9rem; font-weight: 600; color: var(--txt); margin-bottom: .15rem; }
.step-body span { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* Badges catégories */
.badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.badge-cat {
  background: var(--sky-l); color: var(--sky);
  font-size: .78rem; font-weight: 600;
  padding: .3rem .75rem; border-radius: 20px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; gap: .3rem;
}

/* CTA */
.cta-wrap { margin-top: 1.2rem; }
.submit-btn {
  background: var(--sky); color: #fff; border: none;
  padding: .8rem 2rem; border-radius: 10px; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: .5rem; transition: all .15s;
  text-decoration: none;
}
.submit-btn:hover { background: var(--sky-d, #0a2e57); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,95,168,.3); }

@media(max-width:480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ── MENTIONS LÉGALES ────────────────────────────────── */
.info-box {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 9px;
  padding: .9rem 1.1rem; margin: .7rem 0;
  font-size: .88rem; color: #3a5878; line-height: 1.9;
}

.notice {
  background: #fff8ec; border: 1.5px solid #fcd98a; border-radius: 12px;
  padding: .8rem 1rem; font-size: .86rem; color: #7a5010; margin: .8rem 0;
  display: flex; align-items: flex-start; gap: .5rem;
}
.notice a { color: var(--sky); text-decoration: none; font-weight: 600; }
.notice a:hover { text-decoration: underline; }

.legal-list { list-style: none; margin: .5rem 0 .65rem; }
.legal-list li {
  font-size: .9rem; color: #3a5878;
  padding: .2rem 0 .2rem 1.1rem; position: relative; line-height: 1.6;
}
.legal-list li::before { content: '–'; position: absolute; left: 0; color: var(--muted); }

/* ── POLITIQUE DE CONFIDENTIALITÉ ────────────────────── */
.flash-success--top { align-items: flex-start; margin-bottom: 0; }

.legal-h3 {
  font-size: .88rem; font-weight: 600; color: var(--txt);
  margin: 1rem 0 .4rem;
}
.legal-h3:first-child { margin-top: 0; }

.data-table {
  width: 100%; border-collapse: collapse; margin: .8rem 0; font-size: .85rem;
}
.data-table th {
  background: var(--sky-l); color: var(--sky);
  font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  padding: .6rem .9rem; text-align: left; border: 1.5px solid var(--border);
}
.data-table td {
  padding: .6rem .9rem; border: 1.5px solid var(--border);
  color: #3a5878; vertical-align: top; line-height: 1.5;
}
.data-table tr:nth-child(even) td { background: var(--bg); }

.rights-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: .5rem;
}
.right-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
  padding: .9rem 1rem;
}
.right-card strong { display: block; font-size: .88rem; font-weight: 600; color: var(--txt); margin-bottom: .2rem; }
.right-card span { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* Cookies détail */
.cookie-row { display: flex; flex-direction: column; gap: .6rem; margin: .6rem 0; }
.cookie-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: .9rem 1.1rem;
}
.cookie-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .3rem;
}
.cookie-name { font-size: .88rem; font-weight: 600; color: var(--txt); }
.cookie-badge {
  font-size: .7rem; font-weight: 700; padding: .15rem .55rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge-required { background: var(--sky-l); color: var(--sky); }
.badge-analytics { background: #fff3e0; color: #e07b10; border: 1px solid #fcd98a; }
.cookie-detail { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.cookie-detail span { display: block; }

/* ── Bandeau principal ── */
#cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 2.4rem);
  max-width: 560px;
  background: #fff;
  border: 1.5px solid #c8dff5;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(13,59,110,.18);
  padding: 1.4rem 1.6rem;
  z-index: 9999;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  font-family: 'DM Sans', sans-serif;
}
#cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cb-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .7rem;
}
.cb-icon {
  width: 28px; height: 28px;
  background: #e6f0fb;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cb-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 900;
  color: #0d2b4e;
}

.cb-text {
  font-size: .83rem;
  color: #5a82aa;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.cb-text a {
  color: #1a5fa8;
  text-decoration: none;
  font-weight: 600;
}
.cb-text a:hover { text-decoration: underline; }

.cb-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.cb-btn-accept {
  background: #1a5fa8;
  color: #fff;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  flex: 1;
}
.cb-btn-accept:hover {
  background: #0d3b6e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,95,168,.3);
}

.cb-btn-refuse {
  background: #f5f9ff;
  color: #5a82aa;
  border: 1.5px solid #c8dff5;
  padding: .6rem 1.4rem;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  flex: 1;
}
.cb-btn-refuse:hover {
  border-color: #1a5fa8;
  color: #1a5fa8;
  background: #e6f0fb;
}

/* ── Lien "Gérer mes cookies" dans le footer ── */
.cookie-manage-link {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  padding: 0;
}
.cookie-manage-link:hover { color: #fff; text-decoration: underline; }

@media(max-width: 480px) {
  #cookie-banner { padding: 1.1rem 1.2rem; }
  .cb-actions { flex-direction: column; }
}


@media(max-width:480px) {
  .rights-grid { grid-template-columns: 1fr; }
  .data-table { font-size: .78rem; }
  .data-table th, .data-table td { padding: .5rem .6rem; }
}

/* ── VILLES ───────────────────────────────────────────── */

.villes-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.ville-chip {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 20px;
  padding: .3rem .75rem; font-size: .82rem; color: var(--txt);
  text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
  transition: all .15s;
}
.ville-chip:hover {
  background: var(--sky-l); border-color: var(--sky); color: var(--sky);
  text-decoration: none; transform: translateY(-1px);
}
.ville-chip-cnt {
  font-size: .7rem; font-weight: 700;
  background: var(--sky-l); color: var(--sky); padding: .1rem .4rem; border-radius: 20px;
}

.ville-filter-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--sky-l); color: var(--sky);
  font-size: .78rem; font-weight: 600; padding: .2rem .6rem;
  border-radius: 20px; border: 1.5px solid var(--border); margin-left: .5rem;
}
.ville-filter-clear {
  color: var(--sky); text-decoration: none; font-size: .72rem; font-weight: 700; opacity: .7;
}
.ville-filter-clear:hover { opacity: 1; text-decoration: none; }

.villes-nav {
  text-align: center; margin-top: 1.5rem; padding-bottom: 1rem;
}
.villes-nav-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color .15s;
}
.villes-nav-link:hover { color: var(--sky); text-decoration: none; }

/* ── BANDEAU CONCOURS (liste) ─────────────────────────── */
.concours-banner {
  display:flex; align-items:center; gap:.75rem; flex-wrap:wrap;
  background:var(--sky); color:#fff; text-decoration:none;
  border-radius:12px; padding:.85rem 1.2rem; margin-bottom:1.25rem;
  border:1.5px solid rgba(255,255,255,.1);
  transition:background .15s, transform .15s;
}
.concours-banner:hover { background:#0a2e57; transform:translateY(-1px); }
.concours-banner-prize {
  font-family:'Fraunces',serif; font-size:1.25rem; font-weight:900;
  color:var(--sun); flex-shrink:0;
}
.concours-banner-text { font-size:.85rem; font-weight:600; flex:1; }
.concours-banner-cta {
  font-size:.78rem; font-weight:700; color:var(--sun);
  white-space:nowrap; flex-shrink:0;
}
@media(max-width:520px) {
  .concours-banner-cta { display:none; }
}

/* ── CONCOURS ─────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}

.hero--concours { padding: 4.5rem 1.5rem 5rem; overflow: hidden; }
.hero--concours::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0; height:52px;
  background:var(--bg); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(245,158,42,.12); border:1px solid rgba(245,158,42,.35);
  color:var(--sun); font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:.4rem 1rem; border-radius:99px; margin-bottom:1.8rem;
  animation:fadeUp .4s ease both;
}
.badge-dot {
  width:7px; height:7px; border-radius:50%; background:var(--sun);
  animation:pulse 2s infinite; display:inline-block; flex-shrink:0;
}
.hero-prize {
  font-family:'Fraunces',serif; font-size:clamp(5.5rem,20vw,9rem);
  font-weight:900; line-height:1; color:var(--sun);
  letter-spacing:-.03em; margin-bottom:.1rem;
  animation:fadeUp .4s .06s ease both;
}
.hero-prize-label {
  font-family:'Fraunces',serif; font-size:1.15rem; font-weight:700; font-style:italic;
  color:rgba(255,255,255,.35); margin-bottom:2rem;
  animation:fadeUp .4s .1s ease both;
}
.hero--concours h1 {
  font-family:'Fraunces',serif; font-size:clamp(1.3rem,3.5vw,1.85rem);
  font-weight:900; line-height:1.25; color:#fff;
  max-width:560px; margin:0 auto 1rem;
  animation:fadeUp .4s .14s ease both;
}
.hero--concours .hero-sub {
  font-size:.88rem; color:rgba(255,255,255,.45);
  max-width:440px; margin:0 auto 2.4rem;
  animation:fadeUp .4s .18s ease both;
}
.hero-btns {
  display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center;
  animation:fadeUp .4s .22s ease both;
}
.btn-accent {
  background:var(--sun); color:var(--sky); font-size:.9rem; font-weight:700;
  padding:.8rem 1.8rem; border-radius:10px; text-decoration:none;
  display:inline-flex; align-items:center; gap:.4rem; transition:all .15s;
}
.btn-accent:hover { background:#e08e1a; transform:translateY(-1px); box-shadow:0 4px 16px rgba(245,158,42,.35); }
.btn-ghost {
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.65);
  border:1.5px solid rgba(255,255,255,.18); font-size:.9rem; font-weight:600;
  padding:.8rem 1.8rem; border-radius:10px; text-decoration:none; transition:all .15s;
}
.btn-ghost:hover { background:rgba(255,255,255,.14); color:#fff; }

.countdown-wrap { max-width:640px; margin:0 auto; padding:2rem 1.5rem 0; animation:fadeUp .4s .28s ease both; }
.countdown-label { text-align:center; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:.9rem; }
.countdown { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.cd-block { background:#fff; border:1.5px solid var(--border); border-radius:14px; padding:1.1rem .5rem; text-align:center; box-shadow:0 4px 24px rgba(26,95,168,.07); }
.cd-num { font-family:'Fraunces',serif; font-size:2.2rem; font-weight:900; color:var(--sky); line-height:1; margin-bottom:.2rem; }
.cd-unit { font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }

.concours-page { max-width:720px; margin:0 auto; padding:2.5rem 1.5rem 5rem; }
.page-section { margin-bottom:2.5rem; animation:fadeUp .4s ease both; }
.section-eyebrow {
  display:flex; align-items:center; gap:.6rem;
  font-size:.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:var(--muted); margin-bottom:.8rem;
}
.section-eyebrow::after { content:''; flex:1; height:1px; background:var(--border); }

.opening-banner {
  background:var(--sky-l); border:1.5px solid var(--border); border-radius:16px;
  padding:1.5rem 1.8rem; margin-bottom:1.5rem;
  display:flex; gap:1.2rem; align-items:flex-start;
}
.opening-icon { font-size:2rem; flex-shrink:0; line-height:1; }
.opening-text h3 { font-family:'Fraunces',serif; font-size:1.05rem; font-weight:700; color:var(--sky); margin-bottom:.3rem; }
.opening-text p { font-size:.84rem; color:var(--muted); margin:0; }

.prize-box {
  background:var(--sky); border-radius:16px; padding:2.2rem 2rem;
  text-align:center; margin:1.5rem 0; box-shadow:0 4px 24px rgba(13,59,110,.2);
}
.prize-amount { font-family:'Fraunces',serif; font-size:5rem; font-weight:900; color:var(--sun); line-height:1; margin-bottom:.2rem; }
.prize-sub { font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:.6rem; }
.prize-note { font-size:.8rem; color:rgba(255,255,255,.25); font-style:italic; }

.concours-steps { position:relative; margin:1.2rem 0; }
.concours-steps::before {
  content:''; position:absolute; left:18px; top:44px; bottom:44px;
  width:1.5px; background:var(--border);
}
.concours-steps .step { padding:1rem 0; border-bottom:none; }
.concours-steps .step-num {
  width:38px; height:38px; border-radius:99px;
  background:var(--sky-l); border:1.5px solid var(--border); color:var(--sky);
  font-family:'Fraunces',serif; font-size:1rem; font-weight:900;
  position:relative; z-index:1;
}
.concours-steps .step-body { padding-top:6px; }
.concours-steps .step-title { font-weight:700; font-size:.9rem; color:var(--txt); margin-bottom:3px; }
.concours-steps .step-desc { font-size:.83rem; color:var(--muted); margin:0; line-height:1.55; }

.tip {
  background:#eaf5e4; border:1.5px solid #b8dfa8; border-radius:12px;
  padding:1.1rem 1.3rem; margin:1.2rem 0; display:flex; gap:.9rem; align-items:flex-start;
}
.tip-icon { font-size:18px; flex-shrink:0; margin-top:1px; }
.tip-text { font-size:.83rem; color:#2a6e1a; line-height:1.6; }
.tip-text strong { display:block; font-weight:700; font-size:.875rem; margin-bottom:3px; }

.cats { display:flex; flex-wrap:wrap; gap:7px; margin:1rem 0; }
.cat-pill { display:inline-flex; align-items:center; gap:.3rem; font-size:.78rem; font-weight:600; padding:.32rem .8rem; border-radius:99px; }

ul.rules { list-style:none; padding:0; margin:.8rem 0; }
ul.rules li {
  font-size:.875rem; color:var(--txt); padding:9px 0 9px 1.3rem;
  border-bottom:1px solid var(--border); position:relative;
}
ul.rules li:last-child { border-bottom:none; }
ul.rules li::before {
  content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%; background:var(--sun);
}

.regle-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:10px; margin:1.2rem 0; }
.regle-card { background:var(--bg); border:1.5px solid var(--border); border-radius:12px; padding:.9rem 1rem; }
.regle-label { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
.regle-value { font-size:.9rem; font-weight:700; color:var(--txt); }

.cta-final {
  background:var(--sky); border-radius:16px; padding:2.8rem 2rem;
  text-align:center; box-shadow:0 4px 24px rgba(13,59,110,.2); margin-top:2rem;
}
.cta-final h2 { color:#fff; margin-bottom:.5rem; }
.cta-final p { color:rgba(255,255,255,.4); font-size:.875rem; margin-bottom:1.6rem; }
.cta-final .submit-btn { background:var(--sun); color:var(--sky); }
.cta-final .submit-btn:hover { background:#e08e1a; box-shadow:0 4px 16px rgba(245,158,42,.4); }

.concours-mention {
  background:#fff; border:1.5px solid var(--border); border-radius:12px;
  padding:1.2rem 1.4rem; margin-top:1.5rem;
}
.concours-mention p { font-size:.73rem; color:var(--muted); line-height:1.65; margin:0; }

@media(max-width:520px) {
  .countdown { grid-template-columns:repeat(2,1fr); }
  .hero-prize { font-size:5rem; }
  .opening-banner { flex-direction:column; gap:.7rem; }
  .concours-steps::before { display:none; }
}
