:root{
  --bg1:#120304;
  --bg2:#1b0507;
  --bg3:#26070b;

  --text:#ffffff;
  --muted:rgba(255,255,255,0.74);

  --primary:#e10613;
  --primary-hover:#ff2b37;

  --line:rgba(255,255,255,0.12);
  --soft:rgba(255,255,255,0.06);
  --soft2:rgba(255,255,255,0.16);

  --card:rgba(255,255,255,0.05);
  --card-hover:rgba(255,255,255,0.09);

  --shadow:0 18px 40px rgba(0,0,0,.40);
  --radius:22px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{min-height:100%;}
html{scroll-behavior:smooth;}

body{
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 72% 20%, rgba(255,43,55,.18), transparent 18%),
    radial-gradient(circle at 72% 66%, rgba(225,6,19,.28), transparent 20%),
    linear-gradient(180deg,var(--bg1),var(--bg2) 48%,var(--bg3));
}

body.menu-open{overflow:hidden;}

a,a:visited,a:hover,a:active{color:inherit;text-decoration:none;}
button,input,textarea{font:inherit;}

.site{
  max-width:1600px;
  margin:0 auto;
  padding-bottom:110px;
}

/* HEADER */

.topbar{
  height:88px;
  display:grid;
  grid-template-columns:260px 120px 1fr 120px;
  align-items:center;
  border-bottom:1px solid var(--line);
  background:rgba(18,3,4,.96);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:1000;
}

.topbar__brand,.topbar__play,.topbar__socials,.topbar__menu{
  height:100%;
  display:flex;
  align-items:center;
}

.topbar__brand{padding:0 22px;}
.topbar__play{justify-content:center;border-left:1px solid var(--line);}
.topbar__socials{justify-content:center;border-left:1px solid var(--line);padding:0 20px;}
.topbar__menu{justify-content:center;border-left:1px solid var(--line);}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  height:100%;
}

.brand--logo{
  padding:6px 0;
}

.brand__logo{
  display:block;
  width:100%;
  max-width:210px;
  height:auto;
  object-fit:contain;
}

.brand__air,
.brand__text{
  display:none;
}

.header-play{
  width:56px;
  height:56px;
  border-radius:999px;
  border:none;
  background:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 10px 28px rgba(225,6,19,.28);
}

.header-play:hover{
  transform:translateY(-1px);
  background:var(--primary-hover);
}

.header-play__triangle{
  width:0;
  height:0;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  border-left:20px solid #fff;
  margin-left:4px;
}

.header-play.is-playing .header-play__triangle{
  width:14px;
  height:18px;
  border:none;
  margin-left:0;
  background:
    linear-gradient(90deg,#fff 0 38%,transparent 38% 62%,#fff 62% 100%);
}

.socials{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  width:100%;
}

.socials a{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:1rem;
  transition:.2s ease;
}

.socials a i{
  font-size:1rem;
  line-height:1;
}

.socials a:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.18);
  border-color:rgba(225,6,19,.45);
}

.menu-btn{
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  align-items:center;
  cursor:pointer;
}

.menu-btn span{
  display:block;
  width:24px;
  height:3px;
  background:#fff;
  border-radius:999px;
  transition:.25s ease;
}

.menu-btn.is-open span:first-child{transform:translateY(5px) rotate(45deg);}
.menu-btn.is-open span:last-child{transform:translateY(-5px) rotate(-45deg);}

/* MENU */

.menu-overlay{
  position:fixed;
  top:88px;
  left:0;
  right:0;
  bottom:0;
  background:
    radial-gradient(circle at 72% 68%, rgba(255,255,255,0.10), transparent 14%),
    radial-gradient(circle at 58% 56%, rgba(225,6,19,0.34), transparent 24%),
    linear-gradient(120deg, rgba(18,3,4,.98), rgba(38,7,11,.98));
  backdrop-filter:blur(12px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  z-index:999;
}

.menu-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.menu-overlay__inner{
  position:relative;
  width:100%;
  height:100%;
  min-height:calc(100vh - 88px);
  padding:48px 60px 110px;
}

.menu-overlay__nav{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:520px;
}

.menu-overlay__nav a{
  font-size:clamp(2.4rem,4.2vw,4.4rem);
  font-weight:300;
  line-height:.98;
  letter-spacing:-.03em;
  color:#fff;
  width:max-content;
  transition:.2s ease;
}

.menu-overlay__nav a:hover{
  transform:translateX(4px);
  color:var(--primary-hover);
}

.menu-overlay__footer-left{
  position:absolute;
  left:60px;
  bottom:28px;
  display:flex;
  flex-wrap:wrap;
  gap:0;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(255,255,255,.95);
  z-index:5;
}

.menu-overlay__footer-left a{
  position:relative;
  padding-right:10px;
  margin-right:10px;
  white-space:nowrap;
}

.menu-overlay__footer-left a:not(:last-child)::after{
  content:"|";
  position:absolute;
  right:-2px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,.55);
}

.menu-overlay__footer-right{
  position:absolute;
  right:60px;
  bottom:28px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(255,255,255,.95);
  text-align:right;
  z-index:5;
}

/* HERO */

.hero{padding:78px 32px 50px;}
.hero__inner{max-width:1050px;margin:0 auto;}

.hero-tag{
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.82rem;
  color:rgba(255,255,255,.68);
  margin-bottom:22px;
}

.hero-title{
  font-size:clamp(3.6rem,9vw,6.4rem);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
  margin-bottom:22px;
}

.hero-text{
  max-width:760px;
  font-size:1.08rem;
  line-height:1.72;
  color:var(--muted);
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn-primary,.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  transition:.2s ease;
}

.btn-primary{
  border:none;
  background:var(--primary);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(225,6,19,.24);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-weight:600;
}

.btn-primary:hover,.btn-secondary:hover{transform:translateY(-1px);}
.btn-primary:hover{background:var(--primary-hover);}
.btn-secondary:hover{background:rgba(255,255,255,.09);}

.now-card{
  margin-top:18px;
  max-width:430px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}

.now-card--wide{
  max-width:760px;
}

.now-card__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.now-card__block{
  min-width:0;
}

.now-card__label{
  display:block;
  margin-bottom:8px;
  font-size:.75rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
}

.now-card__title{
  font-weight:700;
  line-height:1.45;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* SECTIONS */

.section,.listen-page{
  max-width:1100px;
  margin:0 auto;
  padding:54px 32px 20px;
}

.section--compact{
  padding-top:34px;
}

.section-head{margin-bottom:28px;}
.section-head--compact{margin-bottom:20px;}

.page-title{
  font-size:clamp(2.3rem,5vw,4rem);
  line-height:1.02;
  margin-bottom:10px;
}

.page-title--compact{
  font-size:clamp(1.9rem,4vw,3rem);
}

.page-intro{
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.cards{
  max-width:1100px;
  margin:0 auto;
  padding:10px 32px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}

.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:24px;
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  background:var(--card-hover);
  border-color:rgba(225,6,19,.35);
}

.card h2,
.card h3{
  margin-bottom:10px;
  font-size:1.28rem;
}

.card p{
  color:rgba(255,255,255,0.78);
  line-height:1.65;
}

.card p + p{
  margin-top:12px;
}

.cards--single{grid-template-columns:1fr;}

/* PROGRAMMES */

.programs-home{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:20px;
}

.programs-home__current,
.programs-home__schedule{
  padding:20px;
}

.programs-home__current-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.program-badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(225,6,19,.16);
  border:1px solid rgba(225,6,19,.32);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.programs-home__day{
  font-size:.85rem;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.programs-home__current-title{
  font-size:1.35rem;
  font-weight:800;
  line-height:1.25;
  margin-bottom:8px;
}

.programs-home__current-time{
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  font-weight:600;
}

.program-schedule-compact__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.program-schedule-compact__title{
  font-size:1rem;
  font-weight:800;
}

.program-schedule-compact__legend{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.58);
}

.program-schedule-compact__list{
  display:grid;
  gap:8px;
}

.program-row{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:14px;
  align-items:center;
  min-height:44px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.program-row.is-live{
  border-color:rgba(225,6,19,.36);
  background:rgba(225,6,19,.12);
  box-shadow:0 0 0 1px rgba(225,6,19,.10) inset;
}

.program-row__time{
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.04em;
  color:rgba(255,255,255,.72);
}

.program-row__title{
  min-width:0;
  font-size:.95rem;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.program-week-mini{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:8px;
}

.program-week-mini__item{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:10px 8px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  text-align:center;
}

.program-week-mini__item.is-active{
  background:rgba(225,6,19,.14);
  border-color:rgba(225,6,19,.32);
}

.program-week-mini__day{
  font-size:.8rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.program-week-mini__count{
  font-size:.72rem;
  color:rgba(255,255,255,.6);
}

/* PLAYER */

.player-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  min-height:78px;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(12,3,4,.94);
  backdrop-filter:blur(22px);
  z-index:1200;
}

.player-bar__left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.player-play{
  width:54px;
  height:54px;
  border-radius:999px;
  border:none;
  background:var(--primary);
  color:#fff;
  font-size:1.15rem;
  cursor:pointer;
  flex-shrink:0;
}

.player-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}

.live-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:max-content;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  font-size:.78rem;
  letter-spacing:.12em;
}

.live-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#ff2b37;
  box-shadow:0 0 12px rgba(255,43,55,.8);
}

.player-title{
  font-size:1rem;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:520px;
}

.player-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.vote-wrap{
  display:flex;
  gap:8px;
  align-items:center;
}

.vote-btn,.icon-btn,#muteBtn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  cursor:pointer;
  font-size:1rem;
  transition:.2s ease;
}

.vote-btn:hover,.icon-btn:hover,#muteBtn:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.16);
  border-color:rgba(225,6,19,.36);
}

.vote-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.10);
  color:rgba(255,255,255,.55);
  box-shadow:none;
}

.vote-btn:disabled:hover{
  transform:none;
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.10);
}

#volumeRange{
  width:140px;
  accent-color:var(--primary);
}

/* TOAST */

.toast{
  position:fixed;
  left:50%;
  bottom:92px;
  transform:translateX(-50%);
  padding:12px 16px;
  border-radius:999px;
  background:rgba(225,6,19,.96);
  color:#fff;
  font-size:.92rem;
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:1300;
}

.toast.is-visible{opacity:1;}

/* RECENT TRACKS */

.recent-tracks-card{
  padding:10px 0;
  overflow:hidden;
}

.recent-tracks-widget--full{
  margin-top:20px;
}

.recent-tracks-list-api{
  width:100%;
  min-height:40px;
}

.recent-track-loading{
  padding:24px;
  color:rgba(255,255,255,.72);
}

.recent-track-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:center;
  gap:16px;
  padding:18px 24px;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .2s ease;
}

.recent-track-row:last-child{
  border-bottom:none;
}

.recent-track-row:hover{
  background:rgba(255,255,255,.03);
}

.recent-track-main{
  min-width:0;
}

.recent-track-title{
  font-size:1rem;
  font-weight:800;
  color:#fff;
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.recent-track-artist{
  margin-top:4px;
  font-size:.94rem;
  color:rgba(255,255,255,.78);
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.recent-track-album{
  margin-top:3px;
  font-size:.84rem;
  color:rgba(255,255,255,.52);
  line-height:1.3;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.recent-track-time{
  justify-self:end;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
  text-align:right;
}

.recent-track-actions{
  display:flex;
  align-items:center;
  gap:8px;
  justify-self:end;
}

.vote-recent{
  width:36px;
  height:36px;
  font-size:.92rem;
  line-height:1;
  padding:0;
}

.recent-track-empty{
  padding:24px;
  color:rgba(255,255,255,.72);
}

/* PLAYLIST */

.playlist-card{
  padding:0;
  overflow:hidden;
}

.playlist-table-wrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:18px;
}

.playlist-table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}

.playlist-table thead th{
  text-align:left;
  padding:16px 18px;
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.66);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.playlist-table tbody td{
  padding:16px 18px;
  color:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(255,255,255,.06);
  vertical-align:middle;
}

.playlist-table tbody tr:hover{
  background:rgba(255,255,255,.03);
}

.playlist-table tbody tr:last-child td{
  border-bottom:none;
}

.playlist-table tbody td:first-child{
  width:70px;
  font-weight:800;
  color:#fff;
}

.playlist-table tbody td:nth-child(2){
  font-weight:700;
}

.playlist-table tbody td:nth-child(3){
  width:90px;
  text-align:center;
}

.playlist-table tbody td:nth-child(4){
  width:220px;
  white-space:nowrap;
  color:rgba(255,255,255,.72);
}

/* CONTACT FINAL */

.contact-page{
  padding-top:48px;
}

.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:24px;
  align-items:start;
}

.contact-sidebar{
  display:grid;
  gap:24px;
}

.contact-card{
  padding:28px;
}

.contact-card h2{
  margin-bottom:10px;
  font-size:1.7rem;
  line-height:1.15;
}

.contact-card__intro{
  margin-bottom:22px;
  color:rgba(255,255,255,.74);
  line-height:1.7;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:8px;
}

.contact-form__row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.contact-form__field{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.contact-form__field label{
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.contact-form__field input,
.contact-form__field textarea{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
  transition:.2s ease;
}

.contact-form__field textarea{
  min-height:190px;
  padding:14px 16px;
  resize:vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder{
  color:rgba(255,255,255,.36);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus{
  border-color:rgba(225,6,19,.45);
  box-shadow:0 0 0 3px rgba(225,6,19,.12);
  background:rgba(255,255,255,.08);
}

.contact-form__actions{
  display:flex;
  justify-content:flex-start;
  padding-top:4px;
}

.form-alert{
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:600;
  line-height:1.5;
}

.form-alert--success{
  background:rgba(36,171,90,.16);
  border:1px solid rgba(36,171,90,.35);
  color:#d7ffe6;
}

.form-alert--error{
  background:rgba(225,6,19,.16);
  border:1px solid rgba(225,6,19,.35);
  color:#ffe1e4;
}

.contact-list{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:8px;
}

.contact-row{
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:16px;
  align-items:start;
  padding:15px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-row:last-child{
  border-bottom:none;
}

.contact-label{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.48);
}

.contact-value{
  color:rgba(255,255,255,.88);
  line-height:1.7;
  word-break:break-word;
}

.contact-value a{
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.contact-value a:hover{
  border-bottom-color:rgba(225,6,19,.55);
}

.card--map .map-embed{
  margin-top:14px;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
}

.card--map iframe{
  display:block;
  width:100%;
}

/* A PROPOS - CONTACT */

.about-section{
  max-width:1100px;
  margin:10px auto 0;
  padding:0 32px 30px;
}

.about-container{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at top right, rgba(225,6,19,.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.03));
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.about-title{
  padding:28px 30px 0;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1;
  letter-spacing:-.03em;
  font-weight:900;
  color:#fff;
}

.about-text{
  padding:22px 30px 28px;
}

.about-text p{
  color:rgba(255,255,255,.82);
  line-height:1.8;
  font-size:1rem;
}

.about-text p + p{
  margin-top:14px;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-top:1px solid rgba(255,255,255,.08);
}

.about-stat{
  min-height:220px;
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:14px;
}

.about-stat + .about-stat{
  border-left:1px solid rgba(255,255,255,.08);
}

.about-stat__icon{
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:2rem;
}

.about-stat__value{
  font-size:clamp(1.4rem,2.2vw,2rem);
  font-weight:900;
  color:#fff;
  line-height:1.1;
}

.about-stat__label{
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(255,255,255,.86);
  line-height:1.5;
}

/* MENTIONS LÉGALES - THÈME AIR CONNECT */

.legal-section{
  max-width:1100px;
  margin:10px auto 0;
  padding:0 32px 30px;
}

.legal-container{
  padding:32px 30px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at top right, rgba(225,6,19,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.03));
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
}

.legal-title{
  margin:0 0 22px;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1;
  letter-spacing:-.03em;
  font-weight:900;
  color:#fff;
}

.legal-container h3{
  margin:28px 0 12px;
  font-size:clamp(1.2rem,2.2vw,2rem);
  line-height:1.1;
  font-weight:800;
  color:#fff;
}

.legal-container p{
  color:rgba(255,255,255,.80);
  line-height:1.75;
  font-size:1rem;
}

.legal-container p + p{
  margin-top:10px;
}

.legal-sacem{
  margin:18px 0 6px;
}

.legal-sacem img{
  display:block;
  width:auto;
  max-width:110px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 6px 18px rgba(225,6,19,.20));
}

.legal-host{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.72);
}

/* LEGACY LISTEN BLOCKS */

.listen-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-top:28px;
}

.listen-card{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:24px;
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.listen-card:hover{
  transform:translateY(-4px);
  background:var(--card-hover);
  border-color:rgba(225,6,19,.35);
}

.listen-card--hero{grid-column:1 / -1;}
.listen-card h3{margin-bottom:10px;font-size:1.28rem;}
.listen-card p{color:rgba(255,255,255,0.78);line-height:1.65;}

.listen-links{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.listen-links a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  transition:.2s ease;
}

.listen-links a:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.16);
  border-color:rgba(225,6,19,.4);
}

.store-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.store-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  transition:.2s ease;
}

.store-buttons a:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.16);
  border-color:rgba(225,6,19,.4);
}

/* RESPONSIVE */

@media (max-width:980px){
  .topbar{grid-template-columns:220px 100px 1fr 96px;}
  .brand__logo{max-width:180px;}
  .socials{gap:10px;}

  .programs-home{
    grid-template-columns:1fr;
  }

  .contact-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .topbar{grid-template-columns:1fr 88px 1fr 82px;height:80px;}
  .topbar__brand{padding:0 16px;}
  .brand__logo{max-width:150px;}
  .socials{gap:8px;}
  .socials a{width:34px;height:34px;font-size:.92rem;}
  .socials a i{font-size:.92rem;}
  .hero{padding:58px 20px 40px;}
  .hero-title{font-size:3.2rem;}
  .hero-text{font-size:1rem;}
  .section,.listen-page{padding:46px 20px 16px;}
  .cards{padding:0 20px;}
  .player-bar{flex-direction:column;align-items:stretch;}
  .player-controls{justify-content:space-between;}
  .player-title{max-width:none;}
  #volumeRange{width:110px;}
  .menu-overlay{top:80px;}
  .menu-overlay__inner{min-height:calc(100vh - 80px);padding:34px 22px 95px;}
  .menu-overlay__nav{gap:14px;}
  .menu-overlay__nav a{font-size:2.4rem;}
  .menu-overlay__footer-left{
    left:22px;
    bottom:18px;
    right:120px;
    font-size:11px;
    line-height:1.6;
  }
  .menu-overlay__footer-left a{padding-right:8px;margin-right:8px;}
  .menu-overlay__footer-right{right:22px;bottom:18px;font-size:11px;}

  .now-card__grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .program-row{
    grid-template-columns:1fr;
    gap:6px;
    align-items:flex-start;
  }

  .program-week-mini{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .recent-track-row{
    grid-template-columns:minmax(0,1fr);
    gap:10px;
    padding:16px 18px;
  }

  .recent-track-time{
    grid-column:auto;
    justify-self:start;
    margin-top:0;
    text-align:left;
  }

  .recent-track-actions{
    justify-self:start;
    margin-top:2px;
  }

  .contact-card{
    padding:22px;
  }

  .contact-card h2{
    font-size:1.45rem;
  }

  .contact-form__row{
    grid-template-columns:1fr;
  }

  .contact-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .about-section{
    padding:0 20px 24px;
  }

  .about-title{
    padding:24px 20px 0;
  }

  .about-text{
    padding:20px 20px 24px;
  }

  .about-text p{
    font-size:.95rem;
    line-height:1.75;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .about-stat{
    min-height:auto;
    padding:24px 20px;
  }

  .about-stat + .about-stat{
    border-left:none;
    border-top:1px solid rgba(255,255,255,.08);
  }

  .legal-section{
    padding:0 20px 24px;
  }

  .legal-container{
    padding:24px 20px;
    border-radius:18px;
  }

  .legal-title{
    margin-bottom:18px;
  }

  .legal-container h3{
    margin:22px 0 10px;
  }

  .legal-container p{
    font-size:.95rem;
    line-height:1.7;
  }

  .legal-sacem img{
    max-width:90px;
  }

  .playlist-table{
    min-width:0;
    width:100%;
    table-layout:fixed;
  }

  .playlist-table th,
  .playlist-table td{
    padding:12px 10px;
    font-size:.85rem;
    vertical-align:top;
  }

  .playlist-table th:nth-child(1),
  .playlist-table td:nth-child(1){
    width:40px;
  }

  .playlist-table th:nth-child(2),
  .playlist-table td:nth-child(2){
    width:auto;
    white-space:normal;
    word-break:break-word;
  }

  .playlist-table th:nth-child(3),
  .playlist-table td:nth-child(3){
    width:55px;
    text-align:center;
  }

  .playlist-table th:nth-child(4),
  .playlist-table td:nth-child(4){
    width:110px;
    font-size:.75rem;
    white-space:normal;
    word-break:break-word;
  }

  .card{
    padding:18px;
  }
}

@media (max-width:560px){
  .topbar{grid-template-columns:1fr 74px auto 72px;}
  .socials{display:none;}
  .hero-title{font-size:2.8rem;}
  .hero-buttons{flex-direction:column;align-items:flex-start;}
  .btn-primary,.btn-secondary{width:100%;justify-content:center;}
  .store-buttons{flex-direction:column;align-items:stretch;}
  .store-buttons a{width:100%;}
  .menu-overlay__footer-left{right:22px;font-size:10px;}
  .menu-overlay__footer-right{font-size:10px;}

  .programs-home__current-title{
    font-size:1.15rem;
  }

  .program-week-mini{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .recent-track-row{
    grid-template-columns:minmax(0,1fr);
    gap:8px;
    padding:14px 16px;
  }

  .recent-track-title{
    font-size:.95rem;
  }

  .recent-track-artist{
    font-size:.88rem;
  }

  .recent-track-album{
    font-size:.78rem;
  }

  .recent-track-time{
    font-size:.74rem;
  }

  .playlist-table th{
    font-size:.7rem;
  }

  .playlist-table td{
    font-size:.8rem;
  }

  .playlist-table th:nth-child(4),
  .playlist-table td:nth-child(4){
    width:104px;
    font-size:.75rem;
  }
}