@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Merriweather:wght@700&display=swap');

:root {
  --eclat-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --eclat-font-display: 'Merriweather', serif;
  --eclat-bg: #1a1b26; /* Dark navy background */
  --eclat-bg-elev: #24283b; /* Slightly lighter dark for cards */
  --eclat-card: #24283b; /* Dark card background */
  --eclat-card-highlight: #2f3542; /* Subtle highlight */
  --eclat-border: #414868; /* Dark border */
  --eclat-text: #c0caf5; /* Light text for contrast */
  --eclat-muted: #7f849c; /* Muted text */
  --eclat-accent: #7aa2f7; /* Soft blue accent */
  --eclat-accent-2: #f7b731; /* Vibrant gold accent */
  --eclat-success: #2ec4b6; /* Teal success color */
  --eclat-radius: 12px;
  --eclat-radius-lg: 16px;
  --eclat-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  --eclat-maxw: 1280px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--eclat-text);
  background: linear-gradient(180deg, var(--eclat-bg) 0%, #2a2e3f 100%) fixed;
  font-family: var(--eclat-font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

main {
  background-image: url(../images/france-bg-dark.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  padding: 32px 0;
}

main:after {
  content: '';
  background-color: rgba(26, 27, 38, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.eclat-skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.eclat-skip-nav:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  background: var(--eclat-accent);
  color: var(--eclat-bg);
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  box-shadow: 0 0 0 4px rgba(122, 162, 247, 0.3);
  z-index: 1000;
}

:focus-visible {
  outline: 3px solid var(--eclat-accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.eclat-wrapper { width: min(90%, var(--eclat-maxw)); margin: 0 auto; }
.eclat-core { min-height: 100dvh; display: flex; flex-direction: column; }

.eclat-header {
  background: rgba(36, 40, 59, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--eclat-border);
}

.eclat-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.eclat-logo { display: flex; align-items: center; gap: 14px; }
.eclat-logo__img { height: 48px; width: auto; filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3)); }
.eclat-nav { display: flex; align-items: center; }
.eclat-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--eclat-text);
  font-size: 16px;
  cursor: pointer;
}
.eclat-nav__list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.eclat-nav__list a {
  color: var(--eclat-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.eclat-nav__list a:hover { color: var(--eclat-text); }

.eclat-hero { padding: 48px 0 24px; text-align: center; }
.eclat-hero__title {
  font-family: var(--eclat-font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  background: linear-gradient(90deg, var(--eclat-accent), var(--eclat-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 10px auto 14px;
}
.eclat-hero__lead {
  max-width: 960px;
  margin: 0 auto;
  color: var(--eclat-muted);
  font-size: clamp(16px, 2.5vw, 22px);
}

.eclat-grid {
  display: grid;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 40px;
}
.eclat-grid--reviews, .eclat-grid--payments, .eclat-grid--sports {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.eclat-card {
  background: var(--eclat-card);
  border-radius: var(--eclat-radius-lg);
  border: 1px solid var(--eclat-border);
  box-shadow: var(--eclat-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eclat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.eclat-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
.eclat-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.eclat-brand__img { height: 52px; width: auto; }
.eclat-brand__name { font-weight: 700; font-size: 20px; }
.eclat-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.eclat-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 162, 247, 0.15);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--eclat-accent);
  font-weight: 700;
}
.eclat-votes { font-size: 14px; color: var(--eclat-muted); }
.eclat-card__body { padding: 16px; }
.eclat-list { display: grid; gap: 10px; padding: 0; }
.eclat-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(122, 162, 247, 0.1);
  border-radius: 8px;
  padding: 10px;
}
.eclat-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--eclat-success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.eclat-item__text { font-size: 15px; }
.eclat-cta { padding: 14px 16px; text-align: center; }
.eclat-btn {
  background: linear-gradient(90deg, var(--eclat-accent), var(--eclat-accent-2));
  color: var(--eclat-bg);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.eclat-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.2);
}
.eclat-section__title {
  font-family: var(--eclat-font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  background: linear-gradient(90deg, var(--eclat-accent), var(--eclat-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 20px 0 12px;
}
.eclat-prose { padding: 20px; border-radius: var(--eclat-radius-lg); background: rgba(36, 40, 59, 0.9); }
.eclat-prose h3 { font-weight: 700; color: var(--eclat-text); margin: 16px 0 10px; }
.eclat-prose p, .eclat-prose ul { color: var(--eclat-muted); margin: 10px 0; }
.eclat-review { background: var(--eclat-card); padding: 16px; border-radius: var(--eclat-radius); }
.eclat-review__text { font-style: italic; }
.eclat-payment, .eclat-sport {
  background: var(--eclat-card);
  padding: 12px;
  text-align: center;
  border-radius: var(--eclat-radius);
}
.eclat-footer { background: rgba(36, 40, 59, 0.95); border-top: 1px solid var(--eclat-border); }
.eclat-footer__inner { padding: 32px 0; }
.eclat-footer__cols { display: grid; gap: 24px; }
@media (min-width: 768px) { .eclat-footer__cols { grid-template-columns: 280px 1fr; gap: 48px; } }
.eclat-footer__badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.eclat-footer__badge { height: 52px; width: auto; opacity: 0.9; transition: opacity 0.3s ease; }
.eclat-footer__badge:hover { opacity: 1; }
.eclat-footer__age-icon { width: 60px; height: 60px; }
.eclat-list--links { list-style: none; padding: 0; display: grid; gap: 12px; }
.eclat-list--links a:hover { color: var(--eclat-text); }
.eclat-sep { height: 1px; background: var(--eclat-border); margin: 16px 0; }
.eclat-copy { text-align: center; color: var(--eclat-muted); font-size: 15px; padding: 16px 0; }
.eclat-hidden { display: none; }
.eclat-muted { color: var(--eclat-muted); }
.eclat-pad { padding: 12px 0; }

@media (max-width: 768px) {
  .eclat-nav__list { display: none; }
  .eclat-nav__toggle { display: block; }
  .eclat-nav__list.active {
    display: flex;
    flex-direction: column;
    background: var(--eclat-bg-elev);
    padding: 16px;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
  }
  .eclat-brand__img { height: 44px; }
  .eclat-btn { font-size: 15px; }
}

@media (max-width: 480px) {
  .eclat-grid { grid-template-columns: 1fr; }
  .eclat-footer__badge { height: 40px; }
  .eclat-footer__age-icon { width: 40px; height: 40px; }
}

@media print {
  .eclat-header, .eclat-footer, .eclat-cta { display: none !important; }
  .eclat-card { box-shadow: none; border: 1px solid var(--eclat-border); }
}