﻿html {
  scroll-behavior: smooth;
  background-color:#071028;
}

:root{
  --bg:#0b1220;
  --text:#e8eefc;
  --muted:#a7b4d6;
  --brand:#e11d48;
  --ok:#22c55e;
  --line:rgba(255,255,255,.10);
  --max:1100px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;

  background:
    linear-gradient(rgba(7,16,40,.65), rgba(11,18,32,.75)),
    url("/assets/img/iptv.jpg") center/cover no-repeat fixed;

  color:var(--text);
}
/*body{
  margin:0; font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(180deg,#071028, #0b1220 35%, #0b1220);
  color:var(--text);
}*/
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(7,16,40,.65);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:10px; align-items:center; font-weight:800; letter-spacing:.4px}
.brand-badge{width:34px; height:34px; border-radius:10px; background:var(--brand); display:grid; place-items:center}
.links{display:flex; gap:16px; align-items:center; color:var(--muted)}
.links a{padding:8px 10px; border-radius:10px}
.links a.active, .links a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.google-login-link{
  width:40px;
  height:40px;
  padding:0 !important;
  border-radius:999px !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(197,27,66,.55);
  background:rgba(197,27,66,.12);
  color:#fda4af !important;
  transition:transform .15s ease, box-shadow .18s ease, background .18s ease;
}
.google-login-link svg{
  width:22px;
  height:22px;
  fill:currentColor;
}
.google-login-link:hover{
  transform:translateY(-1px);
  background:rgba(197,27,66,.22) !important;
  box-shadow:0 8px 20px rgba(197,27,66,.28);
}
.google-login-link.is-connected{
  background:rgba(197,27,66,.12) !important;
  border-color:rgba(197,27,66,.5);
  color:#fff !important;
  overflow:hidden;
}
.google-avatar-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:999px;
}
.google-avatar-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  border-radius:999px;
  font-weight:700;
  font-size:16px;
  background:linear-gradient(135deg, rgba(225,29,72,.7), rgba(190,24,93,.75));
  color:#fff;
}

.account-menu{
  position:absolute;
  right:18px;
  top:74px;
  width:min(360px, calc(100vw - 24px));
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(197,27,66,.35);
  background:
    linear-gradient(180deg, rgba(18,30,52,.96), rgba(13,23,39,.97));
  box-shadow:0 24px 40px rgba(0,0,0,.4);
  z-index:1400;
  backdrop-filter: blur(10px);
}
.account-menu-head{
  display:flex;
  align-items:center;
  gap:12px;
}
.account-avatar-wrap{
  width:52px;
  height:52px;
  flex:0 0 auto;
}
.account-avatar{
  width:100%;
  height:100%;
  border-radius:999px;
  object-fit:cover;
}
.account-avatar-fallback{
  display:grid;
  place-items:center;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg, rgba(225,29,72,.7), rgba(190,24,93,.75));
}
.account-meta{
  min-width:0;
}
.account-name{
  font-size:20px;
  font-weight:700;
  color:#f8dbe3;
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.account-email{
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.account-menu-divider{
  height:1px;
  margin:12px 0;
  background:rgba(197,27,66,.28);
}
.account-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 8px;
  border-radius:10px;
  color:#e8eefc;
}
.account-item:hover{
  background:rgba(197,27,66,.14);
}
.account-item-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#c51b42;
}
.account-logout-btn{
  width:100%;
  border:1px solid rgba(197,27,66,.5);
  background:rgba(197,27,66,.15);
  color:#fecdd3;
  border-radius:10px;
  padding:10px 12px;
  font-weight:700;
  cursor:pointer;
}
.account-logout-btn:hover{
  background:rgba(197,27,66,.24);
}

.profile-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.profile-info-card{
  border:1px solid rgba(197,27,66,.28);
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius:12px;
  padding:12px 14px;
  backdrop-filter: blur(8px);
}
.profile-field-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
  color:#fda4af;
  opacity:.95;
}
.profile-field-value{
  margin-top:6px;
  font-size:20px;
  font-weight:700;
  color:#f8dbe3;
  line-height:1.2;
  word-break:break-word;
}
.profile-phone-card{
  grid-column:1 / -1;
}
.profile-phone-row{
  margin-top:8px;
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:10px;
  align-items:center;
}
.profile-phone-row[hidden]{
  display:none !important;
}
.profile-phone-input{
  min-width:0;
}
.profile-phone-display{
  margin-top:6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.profile-phone-display[hidden]{
  display:none !important;
}
.profile-phone-value{
  margin-top:0;
}
.profile-edit-btn{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(197,27,66,.45);
  background:rgba(197,27,66,.12);
  color:#fda4af;
  display:grid;
  place-items:center;
  cursor:pointer;
  flex:0 0 auto;
}
.profile-edit-btn svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.profile-edit-btn:hover{
  background:rgba(197,27,66,.22);
}

@media (max-width: 900px){
  .account-menu{
    right:12px;
    top:70px;
    width:min(340px, calc(100vw - 24px));
  }

  .profile-field-value{
    font-size:18px;
  }
}

@media (max-width: 680px){
  .google-login-link{
    width:36px;
    height:36px;
  }

  .google-login-link svg{
    width:20px;
    height:20px;
  }

  .account-menu{
    position:fixed;
    left:12px;
    right:12px;
    top:84px;
    width:auto;
    max-height:calc(100vh - 100px);
    overflow:auto;
  }

  .account-menu-head{
    gap:10px;
  }

  .account-avatar-wrap{
    width:46px;
    height:46px;
  }

  .account-name{
    font-size:18px;
  }

  .account-email{
    font-size:12px;
  }

  .profile-grid{
    grid-template-columns: 1fr;
  }

  .profile-phone-row{
    grid-template-columns: 1fr;
  }

  .profile-phone-row .btn{
    width:100%;
    justify-content:center;
  }
}

@media (hover: none){
  .google-login-link:hover{
    transform:none;
    box-shadow:none;
  }
}

/* ===== Football 2026 Homepage Banner ===== */
.worldcup-banner{
  padding:16px 0 0;
}
.worldcup-banner-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:
    linear-gradient(135deg, rgba(225,29,72,.22), rgba(56,189,248,.12)),
    rgba(7,16,40,.72);
  box-shadow:0 16px 34px rgba(0,0,0,.28);
}
.worldcup-banner-media{
  width:92px;
  height:92px;
  flex:0 0 92px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  box-shadow:0 12px 24px rgba(0,0,0,.28);
}
.worldcup-banner-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.worldcup-banner-copy{
  flex:1;
  min-width:0;
}
.worldcup-kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.42);
  background:rgba(34,197,94,.13);
  color:#86efac;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}
.worldcup-banner-copy strong{
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:22px;
  line-height:1.2;
}
.worldcup-banner-copy p{
  margin:6px 0 0;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.45;
}

@media (max-width:760px){
  .worldcup-banner-inner{
    align-items:center;
    flex-direction:column;
    padding:14px;
    text-align:center;
  }
  .worldcup-banner-media{
    width:118px;
    height:118px;
    flex-basis:118px;
  }
  .worldcup-banner-copy strong{
    font-size:19px;
  }
  .worldcup-kicker{
    margin:0 auto;
  }
}
.hero-grid > div:last-child{
  pointer-events: auto;
}

@media (max-width:900px){.hero-grid{grid-template-columns:1fr}}
.h-title{font-size:44px; margin:0 0 12px; line-height:1.1}
.h-sub{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px; margin-top: 40px;}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn.primary{background:var(--brand); border-color:transparent}
.btn:hover{transform:translateY(-1px)}
.service-box{
  margin: 18px 0;
}

.device-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.zeb{

margin-top: 50px;
}

@media (max-width:900px){
  .device-grid{ grid-template-columns: 1fr; }
}

.device-pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:10px 12px;
  color:var(--text);
  font-size:14px;
}


.kpis{display:grid; gap:12px; grid-template-columns:repeat(3,1fr)}
@media (max-width:700px){.kpis{grid-template-columns:1fr}}
.kpi{padding:14px; border-radius:14px; background:rgba(255,255,255,.04); border:1px solid var(--line)}
.kpi b{display:block; font-size:18px}
.kpi span{color:var(--muted); font-size:13px}

.section{padding:34px 0}
.h2{margin:0 0 14px; font-size:24px}
.grid3{display:grid; gap:14px; grid-template-columns:repeat(3,1fr)}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.feature{padding:16px}
.feature p{color:var(--muted); margin:8px 0 0; line-height:1.6}

.pricing{display:grid; gap:14px; grid-template-columns:repeat(3,1fr)}
@media (max-width:900px){.pricing{grid-template-columns:1fr}}
.price{position:relative}
.price .tag{position:absolute; top:14px; right:14px; font-size:12px; color:#fff; background:rgba(34,197,94,.2); border:1px solid rgba(34,197,94,.45); padding:6px 10px; border-radius:999px}
.price h3{margin:4px 0 8px}
.money{font-size:34px; font-weight:800}
.small{color:var(--muted); font-size:13px}
ul{padding-left:18px; margin:12px 0 0}
li{margin:8px 0; color:var(--muted)}

.form input,.form textarea{
  width:100%; padding:12px; border-radius:12px; border:1px solid var(--line);
  background:rgba(255,255,255,.04); color:var(--text); outline:none;
}
.form textarea{min-height:120px; resize:vertical}
.form .row{display:grid; gap:12px; grid-template-columns:1fr 1fr}
@media (max-width:700px){.form .row{grid-template-columns:1fr}}
.notice{margin-top:10px; color:var(--muted); font-size:13px}
.notice-box{
  display:none;
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.15);
  background: linear-gradient(135deg, rgba(13,26,64,.65), rgba(11,17,35,.65));
  color:#dbe8ff;
  font-size:14px;
  font-weight:600;
  line-height:1.4;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  max-width:100%;
  word-break:break-word;
}
.notice-box.loading,
.notice-box.notice-ok,
.notice-box.notice-error{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.notice-box.notice-ok{
  color:#86efac;
  border-color: rgba(34,197,94,.45);
  background: linear-gradient(135deg, rgba(8,56,35,.65), rgba(7,34,28,.65));
}
.notice-box.notice-error{
  color:#fca5a5;
  border-color: rgba(239,68,68,.45);
  background: linear-gradient(135deg, rgba(62,20,32,.65), rgba(36,16,24,.65));
}
.notice-box.notice-ok::before{
  content:"\2714";
  width:18px;
  height:18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#16a34a;
  background: rgba(134,239,172,.2);
  border:1px solid rgba(134,239,172,.45);
  font-size:11px;
}
.notice-box.notice-error::before{
  content:"!";
  width:18px;
  height:18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#ef4444;
  background: rgba(248,113,113,.2);
  border:1px solid rgba(248,113,113,.45);
  font-size:12px;
  font-weight:800;
}

.footer{padding:20px 0; border-top:1px solid var(--line); color:var(--muted); font-size:13px}



.logo{
  height:50px;
  width:auto;
  border-radius:8px; /* optionnel */
}



/*css faq et contact */

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}

.faq-item h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 12px;
}

.form button {
  margin-top: 10px;
}

.file-upload{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.03);
}
.file-upload-input{
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  border:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
}
.file-upload-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(225,29,72,.55);
  background:linear-gradient(135deg, rgba(225,29,72,.95), rgba(190,24,93,.9));
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow:0 8px 20px rgba(190,24,93,.28);
}
.file-upload-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}
.file-upload-input:focus + .file-upload-btn{
  outline:2px solid rgba(225,29,72,.35);
  outline-offset:2px;
}
.file-upload-name{
  min-width:0;
  flex:1;
  color:var(--muted);
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media (max-width:700px){
  .file-upload{
    flex-direction:column;
    align-items:stretch;
  }
  .file-upload-btn{
    width:100%;
  }
}

.device-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}

@media (max-width:900px){
  .device-cards{ grid-template-columns:1fr; }
}

.device-card{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.device-head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:10px;
}

.device-icon{
  width:54px;
  height:54px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}

.device-card h3{
  margin:0;
  font-size:22px;
}

.device-tag{
  margin-top:6px;
  font-weight:800;
  font-size:13px;
  letter-spacing:.6px;
  color: var(--text);
  opacity:.9;
}

.device-card p{
  margin:12px 0 0;
  color: var(--muted);
  line-height:1.7;
  font-size:14px;
}

.brand-intro{
  max-width: 720px;
}

.brand-intro h1{
  font-size: 42px;
  margin: 0 0 14px;
  line-height: 1.2;
}

.intro-text{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

/* ðŸŽ¯ CENTRAGE DES BOUTONS */
.cta-center{
  justify-content: center;
  margin-top: 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  align-items:stretch;
}
.hero-event-visual{
  position:relative;
  align-self:center;
  justify-self:center;
  width:min(620px, 100%);
  aspect-ratio:3 / 2;
  margin-bottom:34px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.2);
  box-shadow:0 22px 48px rgba(0,0,0,.42);
  transform:translateY(34px);
}
.hero-event-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-event-badge{
  position:absolute;
  left:clamp(8px, 2.4vw, 14px);
  top:clamp(8px, 2.4vw, 14px);
  width:clamp(58px, 16%, 86px) !important;
  height:auto !important;
  aspect-ratio:1 / 1;
  border-radius:50%;
  object-fit:cover !important;
  border:2px solid rgba(255,255,255,.72);
  background:#050914;
  box-shadow:0 10px 24px rgba(0,0,0,.45);
}

@media (max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
  }
  .hero-event-visual{
    width:min(560px, 92vw);
    margin-top:8px;
    margin-bottom:0;
    transform:none;
  }
  .hero-event-badge{
    width:clamp(56px, 17%, 70px) !important;
    left:10px;
    top:10px;
  }
}

@media (max-width:520px){
  .hero-event-visual{
    width:100%;
    max-width:440px;
  }
  .hero-event-badge{
    width:clamp(48px, 18%, 58px) !important;
  }
}

@media (max-width:360px){
  .hero-event-badge{
    width:46px !important;
    left:8px;
    top:8px;
    border-width:1px;
  }
}

.features-box{
  background:rgba(15,26,51,.85);
}

.features-grid{
  display:grid;
  gap:14px;
}

.feature-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  padding:16px;
}

.feature-card b{
  display:block;
  font-size:16px;
  margin-bottom:6px;
}

.feature-card p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}

.features-box{
  padding:18px;
  background: rgba(15,26,51,.85);
}

.features-list{
  display:grid;
  gap:12px;
}

/* Chaque bloc dans le box rouge */
.feature-row{
  display:flex;
  gap:11px;
  align-items:flex-start;
  padding:20px 22px;     /* â¬… plus grand */
  border-radius:18px;    /* â¬… plus doux */
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}

/* Image / icÃ´ne */
.feature-img{
  width:64px;        /* â¬… plus grande */
  height:64px;
  border-radius:16px;
  object-fit:cover;
  flex:0 0 64px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
}

/* Contenu */
.feature-content{
  min-width:0; /* âœ… trÃ¨s important pour Ã©viter que le texte dÃ©borde */
}

.feature-content b{
  font-size:18px;     /* â¬… titre plus lisible */
  margin-bottom:6px;
}

.feature-content p{
  font-size:15px;     /* â¬… texte plus confortable */
  line-height:1.6;
}


/* Lien */
.feature-link{
  display:inline-block;
  font-weight:700;
  font-size:13px;
  color: var(--text);
  opacity:.9;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.feature-link:hover{
  opacity:1;
  transform: translateY(-1px);
}











/* container global */
.split-features{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:0;
  transform:none;
}

/* card */
.split-card{
  display:grid;
  grid-template-columns: 92px 1fr;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  

  /* âŒ plus de blur */
  backdrop-filter:none;

  /* âœ… glass transparent */
  background: rgba(255,255,255,.06);

  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

/* image / icÃ´ne */
.split-media{
  min-height:126px;
  background-size:contain; /* â¬… image mieux cadrÃ©e */
  background-repeat:no-repeat;
  background-position:center;
  padding:12px;
}

/* suppression overlay flou */
.split-media::after{
  display:none;
}

/* contenu texte */
.split-body{
  padding:14px 16px;
}

.split-body h3{
  margin:0;
  font-size:22px; /* â¬… un peu plus petit */
}

.split-sub{
  margin-top:4px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  opacity:.85;
}

.split-body p{
  margin:8px 0 10px;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

/* lien */
.split-link{
  font-size:12.5px;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
}

/* responsive */
@media (max-width:900px){
  .split-features{
    grid-template-columns:1fr;
  }
  .split-card{
    grid-template-columns:92px 1fr;
  }
  .split-media{
    min-height:118px;
  }
}

@media (max-width:520px){
  .split-card{
    grid-template-columns:1fr;
  }
  .split-media{
    min-height:132px;
  }
}







/* Section 4K + description */
.quality-4k{ padding-top: 22px; }

.quality-card{
  display:grid;
  grid-template-columns: 320px 1fr; 
  gap:18px;
  align-items:center;

  border:1px solid var(--line);
  border-radius:18px;

  /* glass sans blur */
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  width: min(1180px, 100%);
  margin: 0 auto -25px;
  padding:15px;
}

.quality-media{
  display:flex;
  justify-content:center;
  align-items:center;
}

.quality-media img{
  width: 300px;
  max-width: 100%;
  height:auto;
  display:block;
  border-radius:14px;
}

.quality-content h2{
  margin:0 0 10px;
  font-size:24px;
}

.quality-content .small{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.7;
  font-size:15px;
}

.quality-list{
  margin:0;
  padding-left:18px;
}

.quality-list li{
  margin:8px 0;
  color: var(--muted);
  font-size:14px;
}

.quality-cta{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Mobile */
@media (max-width:900px){
  .quality-card{
    grid-template-columns: 1fr;
    text-align:left;
  }
  .quality-media{
    justify-content:flex-start;
  }
  
}

.h12{

    margin-top:10px;
    font-size:22px; /* â¬… un peu plus petit */
}













/* KPI GLASS BOXES */

.kpi-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

@media (max-width:1000px){
  .kpi-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width:520px){
  .kpi-grid{ grid-template-columns: 1fr; }
}

.kpi-box{
  background: rgba(255,255,255,.05); /* glass transparent */
  border: 1px solid var(--line);
  border-radius:18px;

  padding:22px 18px;
  text-align:center;

  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, background .25s ease;
}

.kpi-box:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}

.kpi-icon{
  width:52px;
  height:52px;
  margin:0 auto 12px;

  border-radius:14px;
  display:grid;
  place-items:center;

  background: rgba(0,120,255,.12);
  border:1px solid rgba(0,120,255,.35);
  font-size:22px;
}

.kpi-value{
  font-size:30px;
  font-weight:900;
  color:#f44e7fcd;
  margin-bottom:4px;
}

.kpi-text{
  font-size:13px;
  color:var(--muted);
}










.logo-marquee{
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03); /* glass */
  padding: 18px 0;
}

.logo-track{
  display:flex;
  width:max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: marquee 18s linear infinite;
}

/* chaque set = mÃªme largeur logique */
.logo-set{
  display:flex;
  align-items:center;
  gap:80px;
  padding-left:80px;
}

.logo-set img{
  height:44px;
  width:auto;
  flex-shrink:0;
  display:block;
  object-fit:contain;
  image-rendering:auto;
}

/* pause hover (optionnel) */
.logo-marquee:hover .logo-track{
  animation-play-state: paused;
}

/* dÃ©placement EXACT dâ€™un set complet */
@keyframes marquee{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-50%,0,0); }
}

.h12 span{
    color:#c51b42;

}
.h8 span{
    color:#c51b42 ;
}

.h2 span{

    color:#c51b42 ;
}

.about-zba span{
    color:#c51b42 ;
}


/* =========================
   SECTION FILMS & SERIES
   ========================= */

/* =========================
   TITRE
========================= */
.section-title{
  text-align:center;
  font-size:34px;
  margin:0 0 22px;
  letter-spacing:.2px;
}


/* =========================
   MARQUEE AUTO FLUIDE
========================= */
.poster-marquee{
  position: relative;
  overflow: hidden;
  padding: 10px 6px 18px;

  /* Fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.poster-track{
  display:flex;
  gap:22px;
  width:max-content;
  animation: posterScroll 40s linear infinite;
}

/* Animation continue SANS saut */
@keyframes posterScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Pause au hover (optionnel mais pro) */
.poster-marquee:hover .poster-track{
  animation-play-state: paused;
}

/* =========================
   POSTER CARD (TON STYLE)
========================= */
.poster-card{
  flex: 0 0 auto;
  width: 230px;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow:hidden;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);

  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.poster-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Hover streaming */
.poster-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:700px){
  .section-title{ font-size:26px; }
  .poster-card{ width:170px; }
  .poster-track{ gap:14px; }
}


/* Variante vitesse */
.poster-track.speed-fast{
  animation-duration: 28s;  /* plus rapide */
}
.poster-track.speed-slow{
  animation-duration: 55s;  /* plus lent */
}



/* ===== OFFERS ===== */
.event-offer-badge{
  width:min(720px, 100%);
  margin:0 auto 18px;
  padding:10px 14px;
  border-radius:8px;
  border:1px solid rgba(34,197,94,.36);
  background:linear-gradient(135deg, rgba(34,197,94,.12), rgba(56,189,248,.1));
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
}
.event-offer-badge span{
  flex:0 0 auto;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(225,29,72,.2);
  border:1px solid rgba(225,29,72,.45);
  color:#fecdd3;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}
.event-offer-badge strong{
  color:#fff;
  font-size:14px;
  line-height:1.35;
}
@media(max-width:650px){
  .event-offer-badge{
    align-items:stretch;
    flex-direction:column;
    gap:8px;
  }
  .event-offer-badge span{
    align-self:center;
  }
}
.offers-grid{
  display:grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap:clamp(14px,1.2vw,18px);
  align-items:stretch;
}

@media(max-width:1360px){
  .offers-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:940px){
  .offers-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:650px){
  .offers-grid{grid-template-columns:1fr}
  .promo-ribbon{
    right:-42px;
  }
}

.offer-switch{
  display:flex;
  justify-content:center;
  gap:12px;
  margin:20px 0 30px;
  flex-wrap:wrap;
}

.offer-tab{
  padding:12px 18px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}

.offer-tab.active{
  background:#c51b42;
  border-color:transparent;
}

.offer-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding:clamp(18px,1.6vw,22px);
  border-radius:18px;
  background:rgba(15,25,45,.35);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow:0 15px 45px rgba(0,0,0,.4);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:clamp(380px,31vw,420px);
  min-width:0;
  transition: transform .22s ease, border-color .22s ease;
}
.offer-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background: linear-gradient(
    180deg,
    rgba(225,29,72,0) 0%,
    rgba(225,29,72,.15) 45%,
    rgba(225,29,72,.42) 100%
  );
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .28s ease;
}
.offer-card > *{
  position: relative;
  z-index: 1;
}
.offer-card:hover{
  transform: translateY(-4px);
  border-color: rgba(225,29,72,.5);
}
.offer-card:hover::before{
  transform: scaleY(1);
}

.offer-head{
  text-align:center;
  margin-bottom:14px;
}

.offer-head span{
  display:block;
  font-size:clamp(16px,1.4vw,18px);
  opacity:.9;
}

.offer-head strong{
  font-size:clamp(34px,3vw,46px);
  line-height:1.05;
}

.offer-head em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:8px;
  padding:5px 10px;
  border-radius:999px;
  color:#fecdd3;
  background:rgba(225,29,72,.16);
  border:1px solid rgba(225,29,72,.36);
  font-size:12px;
  font-style:normal;
  font-weight:800;
  text-transform:uppercase;
}

.offer-card-promo{
  border-color:rgba(250,204,21,.48);
  box-shadow:0 18px 48px rgba(0,0,0,.42), 0 0 0 1px rgba(250,204,21,.12) inset;
}

.offer-card-starter{
  border-color:rgba(96,165,250,.46);
  box-shadow:0 18px 48px rgba(0,0,0,.42), 0 0 0 1px rgba(96,165,250,.12) inset;
}

.offer-card-starter::before{
  background:linear-gradient(
    180deg,
    rgba(59,130,246,0) 0%,
    rgba(59,130,246,.12) 42%,
    rgba(225,29,72,.28) 100%
  );
}

.offer-card-promo::before{
  background:linear-gradient(
    180deg,
    rgba(250,204,21,0) 0%,
    rgba(250,204,21,.10) 42%,
    rgba(225,29,72,.34) 100%
  );
}

.promo-ribbon{
  position:absolute;
  top:16px;
  right:-38px;
  z-index:2;
  width:146px;
  padding:7px 0;
  text-align:center;
  transform:rotate(36deg);
  background:linear-gradient(135deg, #facc15, #f97316);
  color:#111827;
  font-size:13px;
  font-weight:900;
  letter-spacing:.4px;
  box-shadow:0 12px 24px rgba(0,0,0,.28);
}

.starter-ribbon{
  position:absolute;
  top:18px;
  right:-18px;
  z-index:2;
  width:122px;
  padding:6px 0;
  text-align:center;
  transform:rotate(36deg);
  background:linear-gradient(135deg, #38bdf8, #2563eb);
  color:#f8fbff;
  font-size:9px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 12px 24px rgba(0,0,0,.28);
}

@media(max-width:650px){
  .starter-ribbon{
    top:18px;
    right:-18px;
    width:122px;
    padding:6px 0;
    border-radius:0;
    transform:rotate(36deg);
    font-size:9px;
    letter-spacing:0;
  }
}

.promo-price-line{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.promo-price-line small{
  color:#94a3b8;
  font-size:18px;
  font-weight:800;
  text-decoration:line-through;
}

.promo-price-line strong{
  color:#fff;
}

.offer-card ul{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  min-width:0;
}

.offer-card li{
  padding-left:26px;
  position:relative;
  margin:10px 0;
  color:var(--muted);
  font-size:clamp(14px,1.1vw,16px);
  line-height:1.35;
  overflow-wrap:anywhere;
}

.offer-card li::before{
  content:"\2713";
  position:absolute;
  left:0;
  top:0;
  background:#fff;
  color:#000;
  width:18px;
  height:18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
}

.offers-page .offers-landing{
  padding-top:46px;
}

.offers-hero-panel{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(280px, 1.1fr);
  gap:28px;
  align-items:center;
  padding:clamp(18px, 3vw, 32px);
  overflow:hidden;
}

.offers-hero-copy h1{
  margin:14px 0 14px;
  font-size:clamp(34px, 5vw, 64px);
  line-height:1.04;
  color:#fff;
  letter-spacing:0;
  overflow-wrap:anywhere;
}

.offers-hero-copy p,
.offers-seo-lead{
  max-width:760px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.offers-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.offers-hero-media{
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 22px 48px rgba(0,0,0,.42);
  aspect-ratio:3 / 2;
  min-width:0;
}

.offers-hero-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.offers-info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.offers-info-grid .policy-card h2{
  margin:0 0 10px;
  font-size:22px;
}

.offers-home-card{
  display:grid;
  grid-template-columns:minmax(0, 880px) auto;
  align-items:center;
  justify-content:start;
  gap:24px;
  padding:clamp(18px, 3vw, 30px);
}

.offers-home-card > div{
  min-width:0;
}

.offers-home-card .section-title{
  margin:10px 0 10px;
  text-align:left;
}

.offers-home-card p{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

@media (max-width:900px){
  .offers-hero-panel{
    grid-template-columns:1fr;
  }
  .offers-info-grid{
    grid-template-columns:1fr;
  }
  .offers-home-card{
    align-items:flex-start;
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .offers-page .offers-landing{
    padding-top:28px;
  }
  .offers-hero-panel{
    padding:16px;
  }
  .offers-hero-copy h1{
    font-size:clamp(30px, 11vw, 42px);
  }
  .offers-hero-copy p,
  .offers-seo-lead,
  .offers-home-card p{
    font-size:15px;
  }
  .offers-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .offers-hero-actions .btn{
    width:100%;
    justify-content:center;
  }
  .offers-home-card .btn{
    width:100%;
    justify-content:center;
  }
  .offer-card{
    min-height:auto;
    padding:18px;
  }
  .offer-head strong{
    font-size:42px;
  }
}

@media (max-width:380px){
  .offer-head strong{
    font-size:36px;
  }
  .offer-card li{
    font-size:14px;
  }
  .starter-ribbon{
    right:-24px;
  }
}


/* ===== ONE BOX: text + image ===== */
.world-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;

  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  backdrop-filter: blur(10px);
}

@media (max-width:900px){
  .world-card{ grid-template-columns:1fr; }
}

.world-title{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.15;
}
.world-title span{ color:#c51b42; }

.world-desc{
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.world-list{
  margin:0;
  padding-left:18px;
}
.world-list li{
  margin:10px 0;
  color:var(--muted);
  line-height:1.6;
}

.world-btn{
  background:#c51b42;
  border-color:transparent;
  padding:14px 26px;
  border-radius:14px;
}

.world-media{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:240px;
}

.world-media img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  opacity:.95;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}


/* ===== FAQ Accordion ===== */
.section-title{
  text-align:center;
  font-size:29px;
  margin:0 0 22px;
  letter-spacing:.2px;
}
.section-title span{ color:#c51b42; }

.faq-accordion{
  max-width: 1050px;
  margin: 0 auto;
  display:grid;
  gap:14px;
}

.faq-item{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  width: 96%;
  margin: 0 auto;
}

.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  padding:18px 18px;
  cursor:pointer;

  background: rgba(10,18,40,.35);
  color: var(--text);
  border:0;
  outline:none;

  font-size:18px;
  font-weight:700;
  text-align:left;
}

.faq-q:hover{
  background: rgba(10,18,40,.48);
}

.faq-chevron{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;

  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transform: rotate(0deg);
  transition: transform .2s ease;
}

.faq-item.open .faq-chevron{
  transform: rotate(180deg);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease;
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
}

.faq-a-inner{
  padding:16px 18px 18px;
  color: var(--muted);
  font-size:15px;
  line-height:1.7;
}

@media (max-width:700px){
  .section-title{ font-size:30px; }
  .faq-q{ font-size:16px; padding:16px; }
}





/* ===== About Section ===== */
.about-grid{
  display:grid;
  grid-template-columns: 1.65fr .85fr;
  gap:26px;
  padding:22px;
  border-radius:18px;

  /* glass */
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.about-media{
  position: relative;
  border-radius:16px;
  overflow:hidden;
  min-height:260px;
  aspect-ratio:16 / 9;

  background:
    radial-gradient(circle at 35% 30%, rgba(197,27,66,.24), transparent 38%),
    linear-gradient(135deg, rgba(7,16,40,.96), rgba(10,24,54,.92));
  border: 1px solid rgba(255,255,255,.10);
}

/* VidÃ©o */
.about-video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  opacity:0;
  transition:opacity .22s ease;
}
.about-video.is-ready{
  opacity:1;
}
.about-fallback{
  display:none;
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-media.media-fallback .about-fallback{
  display:block;
}

/* Optionnel : lÃ©ger overlay sombre pour le texte Ã  droite */
.about-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.15),
    rgba(0,0,0,.45)
  );
  pointer-events:none;
}


.about-content{
  padding:8px 4px;
}

.about-title{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.15;
  font-weight:900;
}

.about-title span{
  color:#c51b42; /* bleu */
}

.about-text{
  margin:0 0 14px;
  color: var(--text);
  opacity:.92;
  font-size:15.5px;
  line-height:1.75;
}

@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-media{
    min-height:0;
    aspect-ratio:16 / 9;
  }
  .about-title{
    font-size:28px;
  }
}

@media (max-width: 1180px){
  .home-page .about-grid{
    grid-template-columns:1fr !important;
    gap:18px;
  }

  .home-page .about-media{
    min-height:0;
    aspect-ratio:16 / 9;
  }

  .home-page .about-content{
    max-width:760px;
  }
}

@media (min-width: 900px) and (max-height: 700px){
  .home-page .about-grid{
    grid-template-columns:minmax(0, 1.35fr) minmax(300px, .75fr) !important;
    gap:22px;
    padding:16px;
    align-items:start;
  }

  .home-page .about-media{
    aspect-ratio:16 / 9;
    max-height:338px;
    align-self:start;
  }

  .home-page .about-content{
    max-width:none;
    padding:2px 0 0;
  }

  .home-page .about-title{
    margin-bottom:8px;
    font-size:clamp(28px, 3.2vw, 34px);
    line-height:1.08;
  }

  .home-page .about-text{
    margin-bottom:10px;
    font-size:clamp(12.5px, 1.35vw, 14px);
    line-height:1.48;
  }

  .wa-widget{
    right:14px;
    bottom:12px;
  }

  .wa-float{
    padding:8px 12px;
    font-size:14px;
  }

  .wa-icon{
    width:22px;
    height:22px;
  }
}

@media (max-width: 520px){
  .about-grid{
    padding:14px;
    gap:16px;
  }
  .about-media{
    border-radius:12px;
    aspect-ratio:4 / 3;
  }
  .about-title{
    font-size:24px;
  }
  .about-text{
    font-size:14px;
    line-height:1.65;
  }
}


.pay-box{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  align-items:center;
}

.pay-head{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.pay-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(43,108,255,.15);
  border:1px solid rgba(43,108,255,.25);
  font-size:20px;
  flex:0 0 auto;
}

.pay-title{
  margin:0;
  font-size:20px;
  line-height:1.2;
}

.pay-sub{
  margin:6px 0 0;
  color: var(--muted);
  line-height:1.6;
  font-size:14px;
}


.pay-badges.center{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:clamp(12px, 5vw, 65px);
  margin-top:16px;
  flex-wrap:wrap; /* mobile */
}

.pay-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:clamp(8px, 2.2vw, 10px) clamp(10px, 3vw, 14px);
  border-radius:14px;

  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.pay-logo{
  height:clamp(38px, 8vw, 60px);
  max-width:min(120px, 28vw);
  width:auto;
  display:block;
  object-fit:contain;
}



.pay-logo-stripe{
  height:clamp(39.14px, 8.24vw, 61.8px);
}
.pay-logo-binance{
  height:clamp(44px, 8.8vw, 66px);
  max-width:min(128px, 30vw);
  transform:scale(1.26);
  transform-origin:center;
}

.pay-notes{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pay-note{
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:13px;
}

@media (max-width:700px){
  .pay-title{font-size:18px;}
  .pay-icon{width:44px;height:44px;border-radius:12px;}
}

.social-follow-section{
  padding:0 0 32px;
}

.social-follow{
  width:min(1180px,100%);
  margin:0 auto;
  padding:clamp(18px,3vw,24px) clamp(14px,3vw,18px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
  text-align:center;
}

.social-follow h2{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(18px,3vw,22px);
  line-height:1.2;
  font-weight:900;
  text-transform:uppercase;
}

.social-follow h2 span{
  color:#fff;
}

.social-follow h2 em{
  color:#c51b42;
  font-style:normal;
}

.social-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(10px,2.8vw,14px);
  flex-wrap:wrap;
}

.social-link{
  width:clamp(44px,10vw,52px);
  height:clamp(44px,10vw,52px);
  border-radius:clamp(12px,3vw,15px);
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  font-size:clamp(22px,5vw,26px);
  font-weight:900;
  line-height:1;
  box-shadow:0 14px 28px rgba(0,0,0,.28);
  transition:transform .2s ease, filter .2s ease;
}

.social-link:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
}

.social-svg{
  width:clamp(24px,5.8vw,28px);
  height:clamp(24px,5.8vw,28px);
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.social-instagram{
  background:linear-gradient(135deg,#833ab4,#c13584,#e1306c,#fd1d1d,#fcb045);
}

.social-facebook{
  background:#2563eb;
  font-family:Arial,Helvetica,sans-serif;
  font-size:30px;
}

@media (max-width:700px){
  .social-follow-section{
    padding:0 0 24px;
  }
  .social-follow{
    padding:18px 12px;
  }
  .social-link{
    flex:0 0 auto;
  }
}

@media (max-width:360px){
  .social-follow{
    padding:16px 10px;
  }
  .social-links{
    gap:8px;
  }
}






.site-footer{
  margin-top:40px;
  padding:26px 0;
  border-top:1px solid var(--line);
  background: rgba(7,16,40,.55);
  backdrop-filter: blur(10px);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-logo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:14px;
}

.footer-name{
  display:flex;
  align-items:baseline;
  gap:10px;
  font-weight:900;
  letter-spacing:.4px;
  font-size:46px;
  line-height:1;
}

.footer-name-iptv{ color:#fff; }
.footer-name-brand{ color:#c51b42; } /* bleu */

.footer-right{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  min-width:320px;
}

.footer-links{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
  color:var(--muted);
  font-weight:600;
}

.footer-links a:hover{
  color:var(--text);
}

.footer-line{
  width:100%;
  max-width:520px;
  height:1px;
  background: var(--line);
}

.footer-copy{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  letter-spacing:.2px;
}

/* Mobile */
@media (max-width:900px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-right{
    align-items:flex-start;
    min-width:auto;
    width:100%;
  }
  .footer-line{ max-width:100%; }
  .footer-name{ font-size:36px; }
}


/* Email sous le titre */


.contact-email a:hover{
  text-decoration: underline;
}

/* Layout contact */
.contact-layout{
  display: grid;
  grid-template-columns: 2.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

/* Image Ã  droite */
.contact-image{
  padding: 0;
  overflow: hidden;
}

.contact-image img{
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.95;
  
}

/* Responsive */
@media(max-width: 900px){
  .contact-layout{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-image{
    order: -1;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .contact-image img{
    width: min(160px, 44vw);
    height: auto;
    object-fit: contain;
    border-radius: 0;
    opacity: 1;
  }

  .contact-form{
    margin-top: 0 !important;
  }
}
.h11 span{
    color: #c51b42;
}

.small{
    color: #e8eefc;
    font-size: 17px;
    font-weight: bold;
}

.small span{
  color: #c51b42;
}

.h15{
  font-size: 30px;
  margin-top: 20px;
}

/* ===== CHECKOUT ===== */

.checkout-card{
  padding: 18px;
  width: 100%;
  margin-left: -18px;
}

.checkout-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
@media (max-width:900px){
  .checkout-grid{ grid-template-columns:1fr; }
}

.checkout-plan{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.checkout-title{
  font-size:22px;
  font-weight:800;
}

.checkout-price{
  font-size:34px;
  font-weight:900;
  color:#ffffff;
}



.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:10px 12px;
  border-radius:999px;
  font-size:14px;
  color:var(--text);
}

.pay-methods{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}

.pay-btn{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}
.pay-btn span{
  font-size: 15px;
}

.pay-btn:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.06);
}

.pay-btn.active{
  border-color: rgba(43,108,255,.65);
  box-shadow: 0 0 0 2px rgba(43,108,255,.25) inset;
}

.pay-btn img{
  width:80px;
  height:80px;
  object-fit:contain;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  padding:6px;
}

.checkout-submit{
  font-size:16px;
  padding:14px 16px;
}

/* ===== Pay panel (form under payment methods) ===== */
.pay-panel{
  margin-top:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:14px;
}

.pay-hint{
  color: var(--muted);
  font-size:14px;
}

.pay-form b{
  font-size:16px;
}

.checkout-summary{
  margin-top:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.summary-price{
  font-size:34px;
  font-weight:900;
  margin-top:4px;
}

.checkout-right{
  margin-top: -50px;
}

.smally{
  font-size: 25px;
}

.smally span{
  color: #c51b42;
}

.checkout-subbox{
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06); /* glass */
  border: 1px solid rgba(255,255,255,.10);
}

.checkout-title{
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}

.checkout-price-inline{
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  opacity: .95;
  margin-top: 6px;
}

.checkout-features{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.checkout-subbox{
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.checkout-title{
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}

.checkout-price-inline{
  font-size: 22px;
  font-weight: 800;
  margin-top: 6px;
  color: #ffffff;
  opacity: .95;
}


/* =========================
   CHECKOUT V2 (CLEAN + FIX)
   ========================= */

/* Container grid */
.checkout2-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 12px;
}
@media (max-width: 980px){
  .checkout2-grid{ grid-template-columns: 1fr; }
  .checkout2-right{ order: 1; }
  .checkout2-left{ order: 2; }
}

/* Glass panel */
.glass-panel{
  width: 100%;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  overflow: hidden;
}

/* Title row */
.checkout2-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 14px;
  
}

.checkout2-title span{
  color: #c51b42;
}
.checkout2-title{
  font-size: 18px;
  font-weight: 700;
}
.checkout2-secure{
  font-size: 12px;
  opacity: .9;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
}

/* âœ… TABS: 3 cases sur toute la largeur */
.pm-tabs{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 0 14px 0;
}

/* âœ… chaque case prend toute la colonne + style "glass" */
.pm-tab{
  width: 100%;
  min-height: 120px;
  border-radius: 16px;
  padding: 14px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;
  user-select: none;

  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);

  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.pm-tab:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
}

.pm-tab.active{
  background: rgba(43,108,255,.22);
  border-color: rgba(43,108,255,.55);
  box-shadow: 0 0 0 3px rgba(43,108,255,.18);
}


.h15 span{
  color: #c51b42;
}
/* contenu */
.pm-logo{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display:block;
}
.pm-logo-binance{
  width: 112px;
  height: 90px;
  transform: scale(1.08);
  transform-origin: center;
}
.pm-label{
  font-size: 13px;
  font-weight: 700;
  opacity: .95;
  text-align:center;
  line-height: 1.1;
}

/* âœ… mobile */
@media (max-width: 680px){
  .pm-tabs{
    grid-template-columns: 1fr;
  }
  .pm-tab{
    min-height:104px;
  }
  .pm-logo-binance{
    width:96px;
    height:76px;
    transform:scale(1.02);
  }
  .notice-box.loading,
  .notice-box.notice-ok,
  .notice-box.notice-error{
    display:flex;
    width:100%;
  }
}

/* Panel form under tabs */
.pm-panel{
  width: 100%;
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.stripe-soon{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, .45);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(59,130,246,.18), transparent 60%),
    linear-gradient(135deg, rgba(9,20,45,.86), rgba(8,16,36,.84));
  box-shadow: 0 14px 30px rgba(2, 8, 26, .45), 0 0 0 1px rgba(56,189,248,.08) inset;
}
.stripe-soon-logo-wrap{
  width: 76px;
  height: 76px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 10px;
  border: 1px solid rgba(59,130,246,.38);
  background: linear-gradient(135deg, rgba(14,30,62,.85), rgba(10,20,43,.78));
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.stripe-soon-logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.stripe-soon-body{
  min-width: 0;
  flex: 1;
}
.stripe-soon-badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197,27,66,.55);
  background: rgba(197,27,66,.2);
  color: #fda4af;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}
.stripe-soon-title{
  margin: 8px 0 4px;
  color: #fecdd3;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}
.stripe-soon-text{
  margin: 0;
  color: rgba(219, 234, 254, .9);
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

/* Checkout-specific responsive tuning */
.checkout-v2 .checkout2-left,
.checkout-v2 .checkout2-right{
  min-width: 0;
}
.checkout-v2 .pm-tab{
  min-height: clamp(96px, 13vw, 120px);
}
.checkout-v2 .pm-logo{
  width: clamp(58px, 7vw, 80px);
  height: clamp(58px, 7vw, 80px);
}
.checkout-v2 .pm-logo-binance{
  width: clamp(86px, 10vw, 112px);
  height: clamp(70px, 8.4vw, 90px);
  transform: scale(1.04);
}
.checkout-v2 .stripe-soon-title{
  font-size: clamp(20px, 3.2vw, 24px);
}

@media (max-width: 980px){
  .checkout-v2 .pm-tabs{
    gap: 10px;
  }
  .checkout-v2 .pm-tab{
    padding: 12px 10px;
  }
  .checkout-v2 .pm-panel{
    padding: 13px;
  }
  .checkout-v2 .stripe-soon{
    padding: 14px;
    gap: 12px;
  }
  .checkout-v2 .stripe-soon-logo-wrap{
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 680px){
  .stripe-soon{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
  .stripe-soon-logo-wrap{
    width: 62px;
    height: 62px;
    border-radius: 12px;
    padding: 8px;
  }
  .stripe-soon-title{
    margin-top: 6px;
    font-size: 20px;
  }
  .stripe-soon-text{
    font-size: 13px;
  }

  .checkout-v2 .checkout2-title-row{
    align-items: flex-start;
  }
  .checkout-v2 .checkout2-secure{
    margin-top: 2px;
  }
  .checkout-v2 .pm-panel{
    padding: 12px;
  }
  .checkout-v2 .stripe-soon{
    padding: 12px;
    gap: 10px;
  }
  .checkout-v2 .stripe-soon-badge{
    padding: 3px 9px;
    font-size: 10px;
    letter-spacing: .35px;
  }
  .checkout-v2 .stripe-soon-title{
    font-size: 18px;
  }
}

@media (max-width: 420px){
  .checkout-v2 .glass-panel{
    padding: 12px;
  }
  .checkout-v2 .pm-tab{
    min-height: 98px;
  }
  .checkout-v2 .stripe-soon-logo-wrap{
    width: 58px;
    height: 58px;
    padding: 7px;
  }
  .checkout-v2 .stripe-soon-text{
    font-size: 12.5px;
  }
}

/* Inputs in checkout v2 */
.form2{ display:flex; flex-direction:column; gap: 10px; }
.form2-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 520px){
  .form2-row{ grid-template-columns: 1fr; }
}

.f-label{
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
}
.f-input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  outline: none;
}
.f-input::placeholder{ color: rgba(255,255,255,.45); }
.f-input:focus{
  border-color: rgba(43,108,255,.65);
  box-shadow: 0 0 0 3px rgba(43,108,255,.20);
}

/* Stripe payment element + Pay button spacing */
#payment-element{
  color: #ffffff;
}
#payment-element .__PrivateStripeElement{
  display:block;
}
.stripe-loading{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  display: inline-block;
}
.notice.loading{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.notice.loading::before{
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #ffffff;
  animation: spin .8s linear infinite;
}
@keyframes spin{
  to { transform: rotate(360deg); }
}
#payBtn{
  margin-top: 12px;
}


/* ===== RIGHT: ORDER SUMMARY (checkout v2) ===== */

.checkout2-right{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Title */
.summary-title{
  font-size:18px;
  font-weight:900;
  margin:0;
}

/* Plan line */
.summary-item{
  display:grid;
  grid-template-columns: 54px 1fr auto;
  gap:12px;
  align-items:center;
}

.summary-thumb{
  width:54px;
  height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  font-size:22px;
}

.summary-meta{
  min-width:0; /* âœ… Ã©vite que le texte pousse le prix */
}

.summary-name{
  font-size:16px;
  font-weight:900;
  line-height:1.2;
  margin:0;
}

.summary-sub{
  font-size:13px;
  line-height:1.4;
  color: rgba(255,255,255,.75);
  margin-top:2px;
}

.summary-price{
  font-size:24px;
  font-weight:900;
  white-space:nowrap; /* âœ… empÃªche le retour Ã  la ligne du prix */
}

/* Divider */
.summary-divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:10px 0;
}


/* ===== SUCCESS PAGE ===== */
.success-card{
  padding-top: 28px;
  padding-bottom: 28px;
}
.success-hero{
  position:relative;
  width:132px;
  height:132px;
  margin:2px auto 10px;
}
.success-hero-logo{
  width:132px;
  height:132px;
  object-fit:cover;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 20px 38px rgba(0,0,0,.35);
}
.success-hero-badge{
  position:absolute;
  right:-8px;
  bottom:-8px;
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:22px;
  background:#16a34a;
  color:#eafff0;
  border:2px solid rgba(187,247,208,.8);
  box-shadow:0 10px 22px rgba(22,163,74,.4);
}
.success-accent{
  color: #22c55e;
}
.success-check-inline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  border: 2px solid rgba(34,197,94,.7);
  box-shadow: 0 0 18px rgba(34,197,94,.25);
  color: #22c55e !important;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
  text-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
}

/* Success page mobile background continuity */
body.success-page{
  min-height:100dvh;
  background-color:#071028;
  background:
    linear-gradient(rgba(7,16,40,.65), rgba(11,18,32,.75)),
    url("/assets/img/iptv.jpg") center top/cover no-repeat fixed;
}

@media (max-width: 900px){
  body.success-page{
    background-attachment:scroll;
    background-size:cover;
    background-position:center top;
  }
}

/* Failed page */
.failed-accent{
  color: #ef4444;
}
.failed-check-inline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(34,197,94,.22) !important;
  border: 2px solid rgba(34,197,94,.85) !important;
  box-shadow: 0 0 18px rgba(34,197,94,.35);
  color: #22c55e;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width: 700px){
  .success-card{
    padding-top:20px;
    padding-bottom:20px;
  }
  .success-hero{
    width:104px;
    height:104px;
    margin:0 auto 8px;
  }
  .success-hero-logo{
    width:104px;
    height:104px;
    border-radius:20px;
  }
  .success-hero-badge{
    right:-6px;
    bottom:-6px;
    width:32px;
    height:32px;
    font-size:18px;
  }
}

/* ===== Admin Dashboard Table ===== */
.admin-table-wrap{
  margin-top:14px;
  max-height:min(560px, calc(100vh - 250px));
  overflow:auto;
  padding: 0;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.5) rgba(255,255,255,.12);
}
.admin-table-wrap::-webkit-scrollbar{
  width:12px;
  height:12px;
}
.admin-table-wrap::-webkit-scrollbar-track{
  background:rgba(255,255,255,.12);
  border-radius:999px;
}
.admin-table-wrap::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.55);
  border:3px solid rgba(10,18,40,.85);
  border-radius:999px;
}
.admin-table-wrap::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,.75);
}
.admin-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:860px;
  font-size:14px;
}
.admin-table thead th{
  position: sticky;
  top: 0;
  z-index: 1;
  text-align:left;
  padding:12px 14px;
  background: rgba(10,18,40,.85);
  border-bottom:1px solid var(--line);
  color: #fff;
  font-weight:700;
}
.admin-table tbody td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.admin-table tbody tr:nth-child(odd){
  background: rgba(255,255,255,.02);
}
.admin-table tbody tr:hover{
  background: rgba(255,255,255,.06);
}
.cell-mono{
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}
.cell-muted{
  color: rgba(255,255,255,.8);
}
.status-pill{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-transform:capitalize;
}
.status-ok{
  color:#22c55e;
  background: rgba(34,197,94,.15);
  border:1px solid rgba(34,197,94,.45);
}
.status-bad{
  color:#ef4444;
  background: rgba(239,68,68,.15);
  border:1px solid rgba(239,68,68,.45);
}
.status-pend{
  color:#f59e0b;
  background: rgba(245,158,11,.15);
  border:1px solid rgba(245,158,11,.45);
}

/* ===== Database Visual Panel ===== */
.db-page .container{
  width:100%;
  max-width: min(1280px, calc(100vw - 36px));
}
.db-page,
.db-page *{
  min-width:0;
}
.db-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.db-title{
  text-align:left;
  margin-bottom:6px;
}
.db-subtitle{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.55;
}
.db-refresh{
  flex:0 0 auto;
}
.db-kpi-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:12px;
  margin:16px 0;
}
.db-kpi{
  min-height:126px;
  padding:14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    rgba(7,16,40,.72);
  box-shadow:0 14px 28px rgba(0,0,0,.25);
}
.db-kpi span,
.db-kpi small{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:12px;
  line-height:1.35;
}
.db-kpi strong{
  display:block;
  margin:10px 0 8px;
  font-size:clamp(21px, 2.4vw, 30px);
  line-height:1.05;
  color:#fff;
  word-break:break-word;
}
.db-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(320px, .75fr);
  gap:14px;
  margin-top:14px;
}
.db-wide{
  grid-column:span 1;
}
.db-panel{
  border-radius:8px;
  min-width:0;
  overflow:hidden;
}
.db-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.db-panel-head h3{
  margin:0;
  font-size:18px;
  line-height:1.2;
}
.db-panel-head span{
  color:rgba(255,255,255,.62);
  font-size:12px;
}
.db-bar-chart{
  height:260px;
  display:grid;
  grid-template-columns:repeat(14, minmax(28px, 1fr));
  align-items:end;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:4px;
  scrollbar-width:thin;
}
.db-bar-item{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.db-bar-track{
  width:100%;
  height:210px;
  display:flex;
  align-items:end;
  padding:4px;
  border-radius:8px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
}
.db-bar-track span{
  display:block;
  width:100%;
  min-height:6px;
  border-radius:6px 6px 3px 3px;
  background:linear-gradient(180deg, #22c55e, #15803d);
  box-shadow:0 0 18px rgba(34,197,94,.24);
}
.db-bar-item small{
  width:100%;
  color:rgba(255,255,255,.62);
  font-size:10px;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.db-donut-wrap{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:16px;
  align-items:center;
}
.db-donut{
  position:relative;
  width:150px;
  height:150px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 16px 28px rgba(0,0,0,.25);
}
.db-donut::after{
  content:attr(data-total);
  position:absolute;
  inset:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#0b1220;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  font-size:26px;
}
.db-legend{
  display:grid;
  gap:8px;
}
.db-legend div{
  display:grid;
  grid-template-columns:12px 1fr auto;
  gap:8px;
  align-items:center;
  color:rgba(255,255,255,.82);
  font-size:13px;
}
.db-legend i{
  width:10px;
  height:10px;
  border-radius:50%;
}
.db-legend b{
  color:#fff;
}
.db-rank-list,
.db-table-bars,
.db-feed{
  display:grid;
  gap:10px;
}
.db-rank,
.db-table-bar{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 12px;
  align-items:center;
}
.db-rank strong,
.db-table-bar span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.db-rank span{
  display:block;
  margin-top:3px;
  color:rgba(255,255,255,.6);
  font-size:12px;
}
.db-rank b,
.db-table-bar b{
  color:#fff;
  font-size:13px;
}
.db-rank i,
.db-table-bar i{
  grid-column:1 / -1;
  height:8px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}
.db-rank em,
.db-table-bar em{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #e11d48, #f97316);
}
.db-table-bar em{
  background:linear-gradient(90deg, #38bdf8, #2563eb);
}
.db-explorer{
  display:grid;
  grid-template-columns:minmax(220px, 280px) minmax(0, 1fr);
  gap:14px;
}
.db-explorer-side,
.db-explorer-main{
  min-width:0;
}
.db-name-card{
  padding:14px;
  border-radius:8px;
  border:1px solid rgba(56,189,248,.26);
  background:rgba(56,189,248,.08);
}
.db-name-card span,
.db-name-card small{
  display:block;
  color:rgba(255,255,255,.62);
  font-size:12px;
}
.db-name-card strong{
  display:block;
  margin:6px 0;
  color:#fff;
  font-size:22px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.db-table-picker{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.db-table-picker button{
  width:100%;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.2);
  color:rgba(255,255,255,.82);
  cursor:pointer;
  text-align:left;
}
.db-table-picker button:hover,
.db-table-picker button.active{
  border-color:rgba(225,29,72,.6);
  background:rgba(225,29,72,.18);
  color:#fff;
}
.db-table-picker span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-weight:700;
}
.db-table-picker b{
  color:rgba(255,255,255,.68);
  font-size:12px;
}
.db-selected-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.16);
}
.db-selected-head span{
  display:block;
  color:rgba(255,255,255,.58);
  font-size:12px;
}
.db-selected-head strong{
  display:block;
  margin-top:4px;
  color:#fff;
  font-size:26px;
  line-height:1.1;
  overflow:hidden;
  text-overflow:ellipsis;
}
.db-selected-head b{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(34,197,94,.12);
  color:#86efac;
  font-size:12px;
  white-space:nowrap;
}
.db-relation-box{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:12px 0;
}
.db-relation-box span{
  max-width:100%;
  padding:7px 9px;
  border-radius:8px;
  border:1px solid rgba(56,189,248,.28);
  background:rgba(56,189,248,.08);
  color:rgba(255,255,255,.82);
  font-size:12px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.db-relation-box b{
  color:#38bdf8;
}
.db-columns-wrap,
.db-values-wrap{
  margin-top:12px;
}
.db-columns-wrap h4,
.db-values-wrap h4{
  margin:0 0 10px;
  color:#fff;
  font-size:14px;
}
.db-columns{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
}
.db-columns article{
  min-width:0;
  padding:10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
}
.db-columns strong,
.db-columns span{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.db-columns strong{
  color:#fff;
  font-size:13px;
}
.db-columns span{
  margin-top:4px;
  color:rgba(255,255,255,.58);
  font-size:11px;
}
.db-table-wrap{
  margin-top:0;
  max-height:360px;
  border-radius:8px;
  width:100%;
}
.db-values-wrap .db-table-wrap{
  max-height:340px;
}
.db-admin-table{
  min-width:760px;
}
.db-feed-item{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.db-feed-item:last-child{
  border-bottom:0;
}
.db-feed-item strong,
.db-feed-item span,
.db-feed-item small{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.db-feed-item strong{
  color:#fff;
}
.db-feed-item span{
  margin-top:3px;
  color:rgba(255,255,255,.72);
  font-size:13px;
}
.db-feed-item small{
  margin-top:4px;
  color:rgba(255,255,255,.5);
  font-size:12px;
}
.db-empty{
  margin:0;
  color:rgba(255,255,255,.62);
  font-size:13px;
}

@media (max-width: 1100px){
  .db-kpi-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
  .db-grid,
  .db-explorer{
    grid-template-columns:1fr;
  }
  .db-columns{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .db-donut-wrap{
    grid-template-columns:140px 1fr;
  }
}

@media (max-width: 760px){
  .db-page .container{
    max-width:100%;
    padding-left:12px;
    padding-right:12px;
  }
  .db-head{
    align-items:stretch;
    flex-direction:column;
    gap:12px;
  }
  .db-title{
    text-align:center;
    font-size:28px;
  }
  .db-subtitle{
    text-align:center;
    font-size:14px;
  }
  .db-kpi-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .db-kpi{
    min-height:112px;
    padding:12px;
  }
  .db-grid{
    gap:12px;
    margin-top:12px;
  }
  .db-panel{
    padding:14px;
  }
  .db-panel-head{
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
  }
  .db-bar-chart{
    grid-template-columns:repeat(14, 38px);
    height:230px;
  }
  .db-bar-track{
    height:180px;
  }
  .db-donut-wrap{
    grid-template-columns:1fr;
    justify-items:center;
  }
  .db-selected-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .db-selected-head strong{
    font-size:22px;
  }
  .db-table-picker{
    grid-template-columns:1fr 1fr;
  }
  .db-columns{
    grid-template-columns:1fr;
  }
  .db-table-wrap{
    max-height:300px;
  }
  .db-values-wrap .db-table-wrap{
    max-height:320px;
  }
  .db-admin-table{
    min-width:720px;
    font-size:13px;
  }
}

@media (max-width: 460px){
  .db-kpi-grid{
    grid-template-columns:1fr;
  }
  .db-page .section-title,
  .db-title{
    font-size:26px;
  }
  .db-panel{
    padding:12px;
  }
  .db-kpi strong{
    font-size:24px;
  }
  .db-table-picker{
    grid-template-columns:1fr;
  }
  .db-donut{
    width:132px;
    height:132px;
  }
  .db-donut::after{
    inset:30px;
    font-size:22px;
  }
  .db-relation-box span{
    white-space:normal;
  }
  .db-admin-table{
    min-width:680px;
    font-size:12px;
  }
  .db-table-wrap{
    max-height:280px;
  }
}

@media (max-width: 360px){
  .db-page .container{
    padding-left:10px;
    padding-right:10px;
  }
  .db-panel{
    padding:10px;
  }
  .db-admin-table{
    min-width:640px;
  }
}

/* ===== Admin Login Error Banner ===== */
.error-banner{
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.45);
  color: #ef4444;
  font-weight: 700;
}
.login-blocked .f-input,
.login-blocked .btn{
  opacity:.55;
  cursor:not-allowed;
}
.login-blocked .f-input{
  background:rgba(255,255,255,.035);
  border-color:rgba(239,68,68,.28);
}

/* ===== Floating WhatsApp ===== */
.wa-widget{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
}
.wa-float{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: 1px solid rgba(255,255,255,.22);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.32), 0 0 0 6px rgba(34,197,94,.16);
  transition: transform .16s ease, box-shadow .2s ease;
}
.wa-widget.open .wa-float{
  display: none;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.4), 0 0 0 7px rgba(34,197,94,.22);
}
.wa-icon{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wa-icon svg{
  width: 100%;
  height: 100%;
}
.wa-label{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .1px;
}
.wa-panel{
  width: min(410px, calc(100vw - 24px));
  background: #ececec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.wa-panel-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #22c55e;
  color: #083323;
}
.wa-panel-title{
  font-size: 24px;
  font-weight: 800;
  font-family: "Arial Black", Arial, sans-serif;
}
.wa-panel-close{
  border: 0;
  background: transparent;
  color: #eaffef;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.wa-panel-body{
  padding: 18px;
  background:
    radial-gradient(circle at 12px 12px, rgba(0,0,0,.05) 1.5px, transparent 1.7px) 0 0/30px 30px,
    #ececec;
}
.wa-bubble{
  background: #d0f0bd;
  color: #1f2937;
  border-radius: 10px;
  padding: 14px;
  max-width: 86%;
  font-size: 15px;
  line-height: 1.35;
}
.wa-panel-foot{
  padding: 14px 18px 10px;
  background: #ececec;
}
.wa-open-btn{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background: #22c55e;
}
.wa-open-icon{
  font-size: .8em;
}
.wa-panel-meta{
  margin-top: 8px;
  text-align: center;
  color: #4b5563;
  font-size: 12px;
}
@media (max-width: 640px){
  .wa-widget{
    right: 12px;
    bottom: 12px;
  }
  .wa-float{
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }
  .wa-label{
    display: none;
  }
  .wa-icon{
    width: 30px;
    height: 30px;
  }
  .wa-panel-title{
    font-size: 18px;
  }
  .wa-open-btn{
    font-size: 16px;
  }
  .wa-bubble{
    font-size: 14px;
  }
  .wa-panel-meta{
    font-size: 12px;
  }
}

/* ===== Policy Page ===== */
.policy-lead{
  max-width: 860px;
  margin: 8px auto 18px;
  color: rgba(255,255,255,.8);
  text-align:center;
  font-size: 15px;
  line-height: 1.7;
}
.policy-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}
.policy-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
}
.policy-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.policy-accent{
  color: #c51b42;
}
.policy-card .small{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

/* Voucher */
.voucher-row{
  display:grid;
  grid-template-columns: 1fr 110px;
  gap:10px;
  align-items:center;
  margin-top:8px;
}

.voucher-btn{
  height:44px;
  padding:0 14px;
  border-radius:12px;
  justify-content:center;
}

/* Totals */
.totals{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tot-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:14px;
  opacity:.95;
}

.tot-total{
  font-size:18px;
  font-weight:900;
  margin-top:2px;
}


.summary-title span{
  color: #c51b42;
}

.ana {
  color: #c51b42;
  font-size: 20px;
}

.summary-foot{
  margin-top: auto;          /* ðŸ”¥ pousse vers le bas */
  padding-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  border-top: 1px solid rgba(255,255,255,.10);
}
.anaz{
  color: #c51b42;
}

/* =========================
   HOMEPAGE WIDE-SCREEN TUNING
   ========================= */
@media (min-width: 1450px){
  .home-page .container{
    max-width: min(1360px, calc(100vw - 140px));
  }

  .home-page .poster-marquee{
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }
}

@media (min-width: 1800px){
  .home-page .container{
    max-width: min(1460px, calc(100vw - 180px));
  }

  .home-page .poster-card{
    width: 250px;
  }

  .home-page .poster-track{
    gap: 24px;
  }
}

/* =========================
   GLOBAL MOBILE FIXES
   ========================= */
@media (max-width: 900px){
  body{
    background-attachment: scroll;
  }

  .container{
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-inner{
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }

  .brand{
    width: 100%;
    justify-content: center;
  }

  .links{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .links a{
    padding: 7px 9px;
    font-size: 14px;
  }

  .google-login-link{
    width:38px;
    height:38px;
  }

  .zeb,
  .h-title{
    margin-top: 8px;
    font-size: 30px;
    line-height: 1.2;
  }

  .h-sub{
    margin-top: 12px;
  }

  .split-features{
    transform: none;
    margin-top: 16px;
  }

  .quality-card{
    margin-bottom: 0;
  }

  .checkout-card{
    margin-left: 0;
  }

  .checkout2-title-row{
    flex-wrap: wrap;
  }

  .summary-item{
    grid-template-columns: 46px 1fr;
    gap: 10px;
  }

  .summary-price{
    grid-column: 2;
    justify-self: start;
    font-size: 20px;
  }

  .voucher-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px){
  .section{
    padding: 24px 0;
  }

  .google-login-link{
    width:36px;
    height:36px;
  }

  .google-login-link svg{
    width:20px;
    height:20px;
  }

  .logo{
    height: 42px;
  }

  .btn{
    width: 100%;
    justify-content: center;
  }

  .cta{
    gap: 8px;
  }

  .h2,
  .h8,
  .h11,
  .h12,
  .h15{
    font-size: 24px;
    line-height: 1.2;
    margin-top: 8px;
  }

  .device-card,
  .glass-panel,
  .policy-card,
  .faq-item{
    padding: 14px;
  }

  .device-head{
    align-items: flex-start;
  }

  .device-card h3{
    font-size: 20px;
  }

  .admin-table{
    min-width: 680px;
  }

  .footer-links{
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

.footer-name{
    font-size: 30px;
  }
}

/* Checkout payment failed modal */
.payfail-modal{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}
.payfail-modal[hidden]{
  display: none !important;
}
.payfail-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 20, .72);
  backdrop-filter: blur(2px);
}
.payfail-card{
  position: relative;
  width: min(480px, 100%);
  text-align: center;
  padding: 24px 20px 20px;
  border: 1px solid rgba(239,68,68,.45);
  box-shadow: 0 28px 50px rgba(0,0,0,.45);
}
.payfail-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.payfail-icon{
  width: 56px;
  height: 56px;
  margin: 4px auto 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 800;
  color: #fca5a5;
  border: 2px solid rgba(248,113,113,.55);
  background: rgba(127,29,29,.25);
}
.payfail-card h3{
  margin: 0 0 8px;
  font-size: clamp(24px, 6vw, 32px);
  color: #fecaca;
}
.payfail-card p{
  margin: 0;
  color: #e5e7eb;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.45;
}
.payfail-actions{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 520px){
  .pay-badges.center{
    gap: 10px;
  }

  .pay-badge{
    width: calc(50% - 8px);
    min-width: 140px;
  }

  .file-upload-name{
    text-align: center;
  }
}

/* Final homepage mobile layout guard */
@media (max-width: 900px){
  .home-page .about-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px;
    width:100%;
    padding:16px;
  }

  .home-page .about-media{
    width:100%;
    min-height:0 !important;
    aspect-ratio:16 / 9;
  }

  .home-page .about-content{
    padding:0;
  }

  .home-page .about-title{
    font-size:clamp(24px, 7vw, 30px);
    line-height:1.15;
  }

  .home-page .about-text{
    font-size:14px;
    line-height:1.65;
  }

  .home-page .split-features{
    grid-template-columns:1fr !important;
    gap:12px;
  }

  .home-page .split-card{
    grid-template-columns:82px 1fr;
    border-radius:14px;
  }

  .home-page .split-media{
    min-height:112px;
  }
}

@media (max-width: 560px){
  .home-page .about-grid{
    padding:12px;
    border-radius:14px;
  }

  .home-page .about-media{
    aspect-ratio:4 / 3;
    border-radius:12px;
  }

  .home-page .service-highlights-section,
  .home-page .section{
    padding-left:0;
    padding-right:0;
  }

  .home-page .split-card{
    grid-template-columns:74px 1fr;
    gap:0;
    padding:0;
  }

  .home-page .split-media{
    min-height:104px;
    background-size:58px auto;
  }

  .home-page .split-body{
    padding:12px;
  }

  .home-page .split-body h3{
    font-size:18px;
  }

  .home-page .split-body p{
    font-size:12.5px;
    line-height:1.45;
  }

  .home-page .pay-box{
    padding:14px;
    border-radius:14px;
  }

  .home-page .pay-head{
    align-items:flex-start;
  }

  .home-page .pay-badges.center{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .home-page .pay-badge{
    width:100%;
    min-width:0;
  }
}

/* Final responsive overflow guard */
html,
body{
  max-width:100%;
  overflow-x:hidden;
}

img,
video{
  max-width:100%;
}

.container,
.section,
.hero,
.worldcup-banner,
.checkout-v2,
.glass-panel{
  min-width:0;
}

.h-sub,
.worldcup-banner-copy,
.worldcup-banner-copy strong,
.summary-foot,
.summary-foot a,
.db-panel,
.db-feed-item,
.admin-table td{
  overflow-wrap:anywhere;
  word-break:normal;
}

@media (max-width: 680px){
  .nav-inner{
    flex-direction:column;
    justify-content:center;
    gap:10px;
    padding:10px 0;
  }

  .links{
    width:100%;
    justify-content:center;
    gap:6px;
    flex-wrap:wrap;
  }

  .links a{
    padding:7px 8px;
    font-size:14px;
  }

  .brand{
    justify-content:center;
  }

  .worldcup-banner-inner{
    grid-template-columns:1fr !important;
    justify-items:center;
    text-align:center;
    gap:14px;
    padding:16px 14px;
  }

  .worldcup-banner-copy{
    width:100%;
    min-width:0;
  }

  .worldcup-banner-copy strong{
    display:block;
    max-width:100%;
    font-size:clamp(18px, 5.4vw, 22px);
    line-height:1.18;
  }

  .worldcup-banner .btn{
    width:100%;
    justify-content:center;
  }

  .h-sub br{
    display:none;
  }

  .home-page .hero-grid > div:first-child,
  .home-page .h-sub,
  .home-page .zeb{
    max-width:100%;
    min-width:0;
  }

  .home-page .cta{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .home-page .cta .btn{
    width:100%;
    justify-content:center;
  }

  .hero-event-visual{
    width:min(100%, 360px);
  }

  .checkout2-right,
  .checkout2-left{
    padding:14px;
  }

  .summary-item{
    grid-template-columns:54px minmax(0, 1fr);
    align-items:start;
  }

  .summary-price{
    grid-column:2;
    justify-self:start;
    margin-top:8px;
    white-space:normal;
  }

  .voucher-row{
    grid-template-columns:1fr;
  }

  .voucher-btn{
    width:100%;
  }

  .summary-foot{
    font-size:13px;
    line-height:1.55;
  }
}

@media (max-width: 390px){
  .container{
    padding-left:14px;
    padding-right:14px;
  }

  .worldcup-banner-media img{
    max-width:118px;
  }

  .worldcup-kicker{
    font-size:12px;
  }

  .home-page .zeb{
    font-size:clamp(28px, 8vw, 34px);
  }
}
