/* style.css — Styles WinOui (FR) */

:root{
  --bg: #070b18;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);

  --neon: #ff4bd6;
  --cyan: #5cf2ff;
  --violet: #a78bfa;
  --gold: #ffd166;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(255,75,214,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(92,242,255,.12), transparent 60%),
    radial-gradient(900px 500px at 70% 90%, rgba(167,139,250,.12), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

/* Liens */
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.muted{ color: var(--muted); }
.accent{ color: var(--cyan); font-weight: 700; }

/* Bouton collant */
.sticky-play{
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,75,214,.95), rgba(92,242,255,.90));
  color: #091024;
  font-weight: 900;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.22);
}
.sticky-play:hover{ text-decoration: none; transform: translateY(-1px); }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7,11,24,.62);
  border-bottom: 1px solid var(--line);
}
.header__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 16px;
  align-items: center;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__logo{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(90% 90% at 20% 20%, rgba(255,75,214,.95), rgba(255,75,214,.10)),
    radial-gradient(90% 90% at 80% 80%, rgba(92,242,255,.80), rgba(92,242,255,.10));
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 1000;
  color: #0a1026;
  box-shadow: 0 10px 40px rgba(255,75,214,.10);
}
.brand__logo--sm{
  width: 34px;
  height: 34px;
  border-radius: 12px;
}
.brand__name{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 18px;
}

/* Nav */
.nav{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a{
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

.header__actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Boutons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}
.btn:hover{
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--primary{
  background: linear-gradient(135deg, rgba(255,75,214,.95), rgba(167,139,250,.85));
  color: #0a1026;
  border-color: rgba(255,255,255,.22);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
}
.btn--xl{
  padding: 13px 18px;
  font-size: 16px;
}
.btn--sm{
  padding: 8px 12px;
  font-size: 13px;
}
.btn--full{
  width: 100%;
}

/* Hero */
.hero{
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 15% 30%, rgba(255,75,214,.22), transparent 60%),
    radial-gradient(900px 500px at 70% 20%, rgba(92,242,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  pointer-events: none;
}
.hero__wrap{
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 16px 30px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  align-items: stretch;
}
.hero__content{
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__title{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .2px;
}
.hero__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  max-width: 62ch;
}
.hero__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero__note{
  margin: 12px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.hero__card{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pill{
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.kpi{
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(255,255,255,.86);
}
.kpi strong{ color: rgba(255,255,255,.95); }

/* Main */
.main{
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 16px 40px;
}
.section{
  margin: 18px 0;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.section--intro{
  background: rgba(255,255,255,.03);
}
.section h1{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: rgba(255,255,255,.96);
}
.section p{
  margin: 10px 0;
  color: rgba(255,255,255,.86);
  max-width: 92ch;
}

/* Callout */
.callout{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(92,242,255,.10), rgba(255,75,214,.08));
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
}
.callout strong{ color: rgba(255,255,255,.98); }

/* Liste étapes */
.steps{
  margin: 12px 0 0;
  padding-left: 20px;
  color: rgba(255,255,255,.86);
}
.steps li{ margin: 8px 0; }

/* CTA box */
.cta-box{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-box h3{
  margin: 0 0 6px;
  font-size: 18px;
}
.cta-box p{
  margin: 0;
  color: rgba(255,255,255,.78);
}

/* Tables */
.table-wrap{
  margin-top: 14px;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
}
.table{
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  vertical-align: top;
}
.table thead th{
  position: sticky;
  top: 0;
  background: rgba(9,16,38,.92);
  border-bottom: 1px solid rgba(255,255,255,.16);
  text-align: left;
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}
.table tbody tr:hover{
  background: rgba(255,255,255,.04);
}
.table--games{ min-width: 880px; }
.thumb{
  width: 160px;
  height: 96px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.game-link{
  font-weight: 900;
  color: rgba(255,255,255,.95);
}
.game-link:hover{ color: var(--cyan); text-decoration: none; }

/* Mini actions */
.mini-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* FAQ */
.faq{
  margin-top: 12px;
  display: grid;
  gap: 12px;
}
.faq__item{
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.faq__item h3{
  margin: 0 0 8px;
  font-size: 16px;
  color: rgba(255,255,255,.96);
}
.faq__item p{
  margin: 0;
  color: rgba(255,255,255,.82);
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.footer__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 16px 36px;
}
.footer__cols{
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 18px;
}
.footer__col h4{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255,255,255,.94);
  letter-spacing: .2px;
}
.footer__col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col li{ margin: 8px 0; }
.footer__col a{ color: rgba(255,255,255,.78); }
.footer__col a:hover{ color: rgba(255,255,255,.95); text-decoration: none; }

.footer__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer__legal{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 980px){
  .header__wrap{ grid-template-columns: 1fr; }
  .nav{ justify-content: flex-start; }
  .header__actions{ justify-content: flex-start; }

  .hero__wrap{ grid-template-columns: 1fr; }
  .footer__cols{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer__cols{ grid-template-columns: 1fr; }
  .hero__title{ font-size: 28px; }
  .section h1{ font-size: 26px; }
  .sticky-play{ left: 12px; right: 12px; text-align: center; }
}
