/* ----------------------------------------
       NOUVEAU THÈME : "L'Éclair de Minuit"
       Palette : Noir profond / Blanc cassé / Rouge sang vif / Vert émeraude
       Structure : Minimaliste, lignes nettes, contraste élevé, élégance moderne
    ---------------------------------------- */
    :root {
      --bg-main: #0F0F0F;
      --panel-bg: #F8F9FA;
      --text-dark: #212529;
      --text-light: #FFFFFF;
      --primary: #C41E3A;      /* Rouge sang */
      --primary-hover: #a0172e;
      --accent: #2ECC71;       /* Vert émeraude */
      --accent-hover: #27ae60;
      --border: #DEE2E6;
      --shadow: 0 8px 25px rgba(0,0,0,0.15);
      --radius: 12px;
      --max-w: 1240px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Roboto', sans-serif;
      background: var(--bg-main);
      color: var(--text-dark);
      line-height: 1.7;
      font-size: 16px;
    }
    img { max-width: 100%; display: block; height: auto; }
    a { color: var(--primary); text-decoration: none; font-weight: 500; transition: all 0.3s ease; }
    a:hover {text-decoration: underline; }
    h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }

    .hp-container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
    .hp-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ===== Header Top Bar ===== */
    .hp-topnav {
      background: var(--bg-main); padding: 14px 0; position: sticky; top: 0; z-index: 1100; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .hp-topnav-inner {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .hp-brand {
      display: flex; align-items: center; gap: 12px;
    }
    .hp-logo {
      width: 50px; height: 50px; background: var(--primary); color: #fff; display: grid; place-items: center;
      font-weight: 800; font-size: 22px; border-radius: 50%; box-shadow: 0 0 0 3px var(--accent);
    }
    .hp-brand-name { color: #fff; font-size: 26px; font-weight: 800; }
    .hp-update-chip {
      background: var(--accent); color: #fff; padding: 6px 14px; font-size: 13px; font-weight: 600; border-radius: 20px;
    }
    .hp-cta-btn {
      background: var(--primary); color: #fff; padding: 12px 28px; font-weight: 700; text-transform: uppercase;
      border-radius: 8px; font-size: 15px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hp-cta-btn:hover {
      background: var(--primary-hover); transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 15px rgba(196,30,58,0.3);
    }
    .hp-cta-btn.outline {
      background: transparent; border: 2px solid var(--accent); color: var(--accent);
    }
    .hp-cta-btn.outline:hover {
      background: var(--accent); color: #fff; border-color: var(--accent);
    }

    /* ===== Hero Section ===== */
    .hp-hero {
      background: linear-gradient(145deg, #1a1a1a, #000);
      color: #fff; text-align: center; padding: 90px 20px; position: relative; overflow: hidden;
    }
    .hp-hero::before {
      content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1564419320407-9bda6e5fd491?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
      opacity: 0.25; filter: brightness(0.6);
    }
    .hp-hero > * { position: relative; z-index: 2; }
    .hp-hero h1 {
      font-size: clamp(36px, 6vw, 56px); margin-bottom: 18px; color: #fff;
    }
    .hp-hero p {
      max-width: 820px; margin: 0 auto 32px; font-size: 18px; opacity: 0.95;
    }
    .hp-pills {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 20px;
    }
    .hp-pill {
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
      padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 14px; color: #fff;
    }

    /* ===== Panels & Cards ===== */
    .hp-panel {
      background: var(--panel-bg); border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); margin-bottom: 36px; position: relative;
    }
    .hp-panel::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    .hp-panel-header {
      padding: 26px 32px; border-bottom: 1px solid var(--border);
    }
    .hp-panel-header h2 { font-size: 30px; color: var(--text-dark); margin: 0; }
    .hp-panel-body { padding: 28px 32px; }

    /* Cards Grid */
    .hp-cards {
      display: grid;     grid-template-columns: 50%;
    justify-content: center; gap: 28px;
    }
    .hp-card {
      background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      transition: all 0.4s ease; display: flex; flex-direction: column;
    }
    .hp-card:hover {
      transform: translateY(-10px); box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    }
    .hp-card-header {
      padding: 22px 26px; background: linear-gradient(135deg, var(--primary), #e63956); color: #fff;
      display: flex; justify-content: space-between; align-items: center;
    }
    .hp-card-header h3 { margin: 0; font-size: 24px; }
    .hp-rating {
      background: var(--accent); color: #fff; padding: 6px 14px; border-radius: 6px; font-weight: 700; font-size: 15px;
    }
    .hp-card-body {
      padding: 24px 26px; flex: 1;
    }
    .hp-card-body p.tagline {
      font-style: italic; color: #555; margin-bottom: 18px; font-size: 15px;
    }
    .hp-kv-list {
      display: grid; gap: 14px;
    }
    .hp-kv-item {
      padding-bottom: 12px; border-bottom: 1px dashed #ddd;
    }
    .hp-kv-item:last-child { border: none; padding-bottom: 0; }
    .hp-kv-label { font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 4px; }
    .hp-kv-value { font-size: 15px; color: #444; }
    .hp-card-footer {
      padding: 22px 26px; background: #f8f9fa; border-top: 1px solid var(--border); display: grid; gap: 12px;
    }

    /* ===== Table ===== */
    .hp-table-wrap { overflow-x: auto; border-radius: 8px; }
    table {
      width: 100%; min-width: 800px; border-collapse: collapse; background: #fff;
    }
    thead th {
      background: #343a40; color: #fff; padding: 16px 20px; text-align: left; font-size: 13px;
      text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600;
    }
    tbody td {
      padding: 16px 20px; border-bottom: 1px solid #eee; vertical-align: middle;
    }
    tbody tr:hover { background: #f1f3f5; }
    .hp-table-note {
      margin-top: 16px; font-size: 14px; color: #6c757d; font-style: italic;
    }

    /* ===== FAQ ===== */
    .hp-faq details {
      border-bottom: 1px solid #ddd; padding: 18px 0;
    }
    .hp-faq details:last-child { border: none; }
    .hp-faq summary {
      font-weight: 700; font-size: 18px; color: var(--primary); cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
    }
    .hp-faq summary::after {
      content: '+'; font-weight: 900; color: var(--accent); font-size: 20px;
    }
    .hp-faq details[open] summary::after { content: '−'; }
    .hp-faq .answer { margin-top: 14px; color: #444; line-height: 1.6; }

    /* ===== Responsible Gaming ===== */
    .hp-rg {
      text-align: center; padding: 40px 20px;
    }
    .hp-rg h3 { font-size: 36px; margin-bottom: 20px; color: var(--primary); }
    .hp-rg p { max-width: 740px; margin: 0 auto 32px; font-size: 17px; color: #444; }
    .hp-rg-links {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    }
    .hp-rg-pill {
      background: var(--primary); color: #fff; padding: 14px 24px; border-radius: 30px;
      font-weight: 700; text-transform: uppercase; font-size: 15px; transition: all 0.3s;
    }
    .hp-rg-pill:hover {
      background: var(--primary-hover); transform: scale(1.05);
    }

    /* ===== Footer ===== */
    .hp-footer {
      background: var(--bg-main); color: rgba(255,255,255,0.7); padding: 50px 20px 30px; text-align: center;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hp-badges {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px;
    }
    .hp-badge {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      padding: 8px 16px; border-radius: 6px; font-size: 13px; color: rgba(255,255,255,0.8);
    }
    .hp-footnav {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px; margin-bottom: 24px;
    }
    .hp-footnav a { color: rgba(255,255,255,0.7); font-size: 15px; }
    .hp-footnav a:hover { color: #fff; text-decoration: underline; }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
      .hp-cards { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .hp-topnav-inner { flex-direction: column; text-align: center; }
      .hp-hero { padding: 70px 15px; }
      .hp-panel-header, .hp-panel-body { padding: 20px; }
      .hp-card-header, .hp-card-body, .hp-card-footer { padding: 18px 22px; }
    }
    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
    }