/* ==========================================================
   eeat.css — Vegas Hero | Pages EEAT (Licence, Jeu Resp, CGU, etc.)
   ========================================================== */

/* ── Hero ─────────────────────────────────────────────── */
.eeat-hero {
  background: linear-gradient(135deg, #080d1f 0%, #0e1530 60%, #0b0d14 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(245,200,66,.1);
  position: relative;
  overflow: hidden;
}

.eeat-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(30,96,212,.1) 0%, transparent 60%);
  pointer-events: none;
}

.eeat-hero--warning {
  background: linear-gradient(135deg, #080d1f 0%, #0e1222 60%, #0b0d14 100%);
}

.eeat-hero--warning::after {
  background: radial-gradient(ellipse at 20% 50%, rgba(245,100,30,.06) 0%, transparent 60%);
}

.breadcrumb {
  font-size: .8rem;
  color: var(--color-text-muted, #8b8fa8);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover { color: var(--color-gold, #f5c842); }

.eeat-hero-badge {
  display: inline-block;
  background: rgba(245,200,66,.1);
  color: var(--color-gold, #f5c842);
  border: 1px solid rgba(245,200,66,.25);
  border-radius: 50px;
  padding: .3rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.eeat-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--color-text, #eef0f8);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.eeat-hero-desc {
  font-size: .95rem;
  color: var(--color-text-muted, #8b8fa8);
  max-width: 760px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Helpline Banner ──────────────────────────────────── */
.helpline-banner {
  margin-top: 1.5rem;
  background: rgba(224,50,30,.1);
  border: 1px solid rgba(224,50,30,.25);
  border-radius: var(--radius-md, 10px);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--color-text, #eef0f8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.helpline-banner a {
  color: #ff9f7a;
  text-decoration: none;
}

.helpline-banner a:hover { text-decoration: underline; }

/* ── Layout ───────────────────────────────────────────── */
.eeat-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.section-pad { padding: 4rem 0; }

/* ── Content ──────────────────────────────────────────── */
.eeat-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text, #eef0f8);
  margin: 2.5rem 0 .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.eeat-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.eeat-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: .6rem;
}

.eeat-content p {
  font-size: .92rem;
  color: var(--color-text-muted, #8b8fa8);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.eeat-content p:last-child { margin-bottom: 0; }

.eeat-content a {
  color: var(--color-gold, #f5c842);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Info Cards ───────────────────────────────────────── */
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md, 10px);
  margin-bottom: 2rem;
}

.info-card--gold {
  background: rgba(245,200,66,.06);
  border: 1px solid rgba(245,200,66,.2);
}

.info-card--blue {
  background: rgba(30,96,212,.07);
  border: 1px solid rgba(30,96,212,.2);
}

.info-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }

.info-card strong {
  display: block;
  font-size: .95rem;
  color: var(--color-text);
  margin-bottom: .4rem;
}

.info-card p {
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Lists ────────────────────────────────────────────── */
.eeat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.eeat-list li {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}

.eeat-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-gold, #f5c842);
  font-weight: 700;
}

.eeat-steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.eeat-steps li {
  counter-increment: steps;
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-left: 2.2rem;
  position: relative;
}

.eeat-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: .05rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c842, #f0a500);
  color: #0b0d14;
  font-weight: 900;
  font-size: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Features Grid ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.feature-item {
  background: var(--color-surface, #131622);
  border: 1px solid var(--color-border, rgba(255,255,255,.07));
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem;
  transition: border-color .2s;
}

.feature-item:hover { border-color: rgba(245,200,66,.2); }

.feature-icon { font-size: 1.5rem; margin-bottom: .65rem; }

.feature-item h3 {
  font-size: .9rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: .5rem;
}

.feature-item p {
  font-size: .83rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Tools Grid (Jeu Responsable) ─────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.tool-card {
  background: var(--color-surface-2, #1c1f30);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem;
  transition: border-color .2s;
}

.tool-card:hover { border-color: rgba(245,200,66,.2); }

.tool-icon { font-size: 1.6rem; margin-bottom: .65rem; }

.tool-card h3 {
  font-size: .9rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: .5rem;
}

.tool-card p {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Checklist ────────────────────────────────────────── */
.checklist-box {
  background: rgba(224,100,30,.06);
  border: 1px solid rgba(224,100,30,.18);
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem;
  margin: 1.5rem 0;
}

.checklist-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 0 0 1rem;
  padding: 0;
}

.checklist li {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: 1.6rem;
  position: relative;
}

.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: rgba(224,100,30,.7);
}

.checklist-note {
  font-size: .82rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Resources Grid ───────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.resource-card {
  background: var(--color-surface, #131622);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem;
}

.resource-icon { font-size: 1.5rem; margin-bottom: .65rem; }

.resource-card h3 {
  font-size: .9rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: .5rem;
}

.resource-card p {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: .65rem;
}

.resource-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold, #f5c842);
  text-decoration: none;
  margin-bottom: .35rem;
}

.resource-link {
  font-size: .83rem;
  color: var(--color-gold, #f5c842);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.resource-note {
  font-size: .75rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── Contact Channels ─────────────────────────────────── */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.contact-card {
  background: var(--color-surface-2, #1c1f30);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg, 16px);
  padding: 1.5rem;
}

.contact-icon { font-size: 1.75rem; margin-bottom: .85rem; }

.contact-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: .65rem;
}

.contact-card p {
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: .65rem;
}

.contact-detail {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-bottom: .3rem;
}

.contact-detail strong { color: var(--color-text); }

/* ── Tables ───────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0 1.5rem; }

.styled-table { width: 100%; border-collapse: collapse; font-size: .85rem; }

.styled-table th {
  background: rgba(245,200,66,.08);
  color: var(--color-gold, #f5c842);
  font-weight: 700;
  text-align: left;
  padding: .65rem .85rem;
  border-bottom: 1px solid rgba(245,200,66,.15);
}

.styled-table td {
  padding: .6rem .85rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: top;
}

.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(255,255,255,.02); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .65rem; margin-top: 1rem; }

.faq-item {
  background: var(--color-surface, #131622);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-text, #eef0f8);
  cursor: pointer;
  transition: color .2s;
}

.faq-question:hover { color: var(--color-gold, #f5c842); }

.faq-arrow { flex-shrink: 0; font-size: .85rem; color: var(--color-text-muted); transition: transform .25s ease; }

.faq-answer { padding: 0 1.25rem 1.1rem; }

.faq-answer p { font-size: .87rem; color: var(--color-text-muted); line-height: 1.7; margin: 0; }

/* ── CTA Box ──────────────────────────────────────────── */
.eeat-cta-box {
  background: linear-gradient(135deg, rgba(245,200,66,.06) 0%, rgba(30,96,212,.05) 100%);
  border: 1px solid rgba(245,200,66,.15);
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
}

.eeat-cta-box--safe {
  background: linear-gradient(135deg, rgba(30,160,80,.05) 0%, rgba(30,96,212,.05) 100%);
  border-color: rgba(30,160,80,.15);
}

.eeat-cta-box p {
  color: var(--color-text-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.eeat-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  align-items: center;
}

.link-internal {
  font-size: .88rem;
  color: var(--color-gold, #f5c842);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.link-internal:hover { color: #fff; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  color: #0b0d14;
  background: linear-gradient(135deg, #f5c842 0%, #f0a500 100%);
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,165,0,.3);
  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease;
  cursor: pointer;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,165,0,.45);
  filter: brightness(1.06);
  color: #0b0d14;
}

/* ── Sidebar ──────────────────────────────────────────── */
.eeat-sidebar {
  position: sticky;
  top: calc(var(--header-height, 68px) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: var(--color-surface, #131622);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem;
}

.sidebar-card--cta {
  background: linear-gradient(135deg, rgba(245,200,66,.08) 0%, rgba(30,96,212,.06) 100%);
  border-color: rgba(245,200,66,.2);
}

.sidebar-card--urgent {
  background: rgba(224,50,30,.08);
  border-color: rgba(224,50,30,.2);
}

.sidebar-card h3 {
  font-size: .9rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: .75rem;
}

.sidebar-card p {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: .5rem;
}

.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.sidebar-card ul a {
  font-size: .83rem;
  color: var(--color-gold, #f5c842);
  text-decoration: none;
  transition: color .2s;
}

.sidebar-card ul a:hover { color: #fff; }

.sidebar-facts { list-style: none; display: flex; flex-direction: column; gap: .5rem; }

.sidebar-facts li {
  font-size: .83rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sidebar-facts li span { font-size: .9rem; flex-shrink: 0; }

.sidebar-disclaimer {
  font-size: .72rem;
  color: rgba(139,143,168,.5);
  margin-top: .5rem;
}

.sidebar-disclaimer a { color: rgba(139,143,168,.7); text-decoration: underline; }

.helpline-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff9f7a;
  text-decoration: none;
  margin: .4rem 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1000px) {
  .eeat-layout { grid-template-columns: 1fr; }
  .eeat-sidebar { position: static; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .eeat-cta-links { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section-pad { padding: 2.5rem 0; }
  .eeat-hero { padding: 2rem 0 1.75rem; }
}
