/* style.css */
/* Palette sombre + bleus signature + accent néon (style casino moderne) */

:root{
  --bg: #070913;
  --bg-2: #0b1024;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.12);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);

  --primary: #69b8ff;
  --primary-2: #3aa3ff;
  --accent: #ff3d7f;
  --success: #38f2c6;

  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --radius: 18px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(105,184,255,0.22), transparent 60%),
    radial-gradient(800px 520px at 80% 20%, rgba(255,61,127,0.18), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #050612 70%, #040512 100%);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 20px; }

/* En-tête */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,9,19,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-row{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.brand-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.brand-name{
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 16px;
}
.brand-name::after{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255,61,127,0.7);
}

/* Menu */
.main-nav{
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.nav-link{
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  padding: 8px 10px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nav-link:hover{
  background: rgba(105,184,255,0.14);
  color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.header-actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  min-width: 220px;
}

/* Boutons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn:active{ transform: translateY(0); }

.btn-lg{ padding: 12px 18px; font-size: 15px; }
.btn-sm{ padding: 8px 12px; font-size: 13px; }

.btn-primary{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 40%, var(--accent) 120%);
  color: #051021;
  box-shadow: 0 14px 30px rgba(58,163,255,0.25);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(58,163,255,0.32);
}

.btn-outline{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.90);
}
.btn-outline:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(105,184,255,0.35);
  transform: translateY(-1px);
}

.btn-ghost{
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
}
.btn-ghost:hover{
  background: rgba(105,184,255,0.10);
  border-color: rgba(105,184,255,0.28);
  transform: translateY(-1px);
}

/* Bouton collé à l’écran */
.sticky-play{
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 110%);
  color: #070913;
  font-weight: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sticky-play:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
}

/* Héro */
.hero{ position: relative; padding: 42px 0 34px; }
.hero-media{
  position: absolute;
  inset: 0;
  overflow: hidden;
  height: 520px;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02) brightness(0.85);
  transform: scale(1.03);
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(105,184,255,0.26), transparent 60%),
    radial-gradient(900px 560px at 80% 30%, rgba(255,61,127,0.20), transparent 55%),
    linear-gradient(180deg, rgba(7,9,19,0.10) 0%, rgba(7,9,19,0.85) 70%, var(--bg) 100%);
}

.hero-content{
  position: relative;
  padding: 46px 0 20px;
  max-width: 920px;
}
.pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  font-size: 13px;
}
.hero-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.hero-subtitle{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
}
.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}
.hero-badges{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badges li{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  font-weight: 900;
  font-size: 13px;
}

/* Contenu */
.main{ padding: 18px 0 56px; }

.page-intro{
  margin-top: 10px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.page-intro h1{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.2px;
}
.page-intro p{
  margin: 10px 0;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}
.notice{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(56,242,198,0.25);
  background: rgba(56,242,198,0.08);
  color: rgba(255,255,255,0.88);
}

/* Grille de cartes */
.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.card{
  grid-column: span 12;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
}
.card h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.1px;
}
.card p{
  margin: 10px 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.small{ font-size: 13px; }
.muted{ color: var(--muted); }

.steps{
  margin: 10px 0 0 18px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
}
.bullets{
  margin: 10px 0 0 18px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
}

.cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mini-title{
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  color: rgba(255,255,255,0.86);
}
.steps-wrap{
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.callout{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(105,184,255,0.22);
  background: rgba(105,184,255,0.08);
}
.callout-title{
  font-weight: 1000;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

/* Tableaux */
.table-wrap{ margin-top: 12px; overflow-x: auto; }
.data-table, .games-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.data-table thead th,
.games-table thead th{
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  padding: 12px 12px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.data-table td,
.games-table td{
  padding: 12px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
}
.data-table tbody tr:hover,
.games-table tbody tr:hover{
  background: rgba(105,184,255,0.06);
}

.link{
  color: rgba(105,184,255,0.95);
  font-weight: 900;
}
.link:hover{ text-decoration: underline; }

.thumb{
  width: 90px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  display: inline-block;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq{
  margin: 12px 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.faq summary{
  padding: 14px 14px;
  cursor: pointer;
  font-weight: 1000;
  color: rgba(255,255,255,0.90);
  list-style: none;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq p{
  padding: 0 14px 14px;
  margin: 0;
  color: rgba(255,255,255,0.80);
}

/* Pied de page */
.site-footer{
  padding: 34px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(5,6,18,0.3) 0%, rgba(5,6,18,0.7) 60%, rgba(5,6,18,0.95) 100%);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-col h3{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{ margin: 8px 0; }
.footer-links a{
  color: rgba(255,255,255,0.78);
  font-weight: 900;
}
.footer-links a:hover{ color: rgba(255,255,255,0.95); }

.footer-brand{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-title{ font-weight: 1000; letter-spacing: 0.2px; }
.footer-sub{ color: rgba(255,255,255,0.70); font-size: 13px; }
.footer-cta{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.address-card{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.footer-bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Adaptatif */
@media (max-width: 980px){
  .header-row{
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }
  .brand{ justify-self: start; }
  .header-actions{ justify-self: end; width: 100%; justify-content: flex-end; }
  .main-nav{ width: 100%; justify-content: center; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .main-nav{ gap: 10px; padding: 8px 10px; }
  .nav-link{ padding: 8px 8px; font-size: 13px; }
  .sticky-play{ left: 12px; bottom: 12px; }
  .footer-grid{ grid-template-columns: 1fr; }
}
