html {
  background-color: #fd6918;
}

/* ==============================
   RESET
   ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   THEME HOMEBAGS
   ============================== */
:root {
  --bg-main: #0b0b0b;
  --primary: #fd6918;
  --accent: #fd6918;
  --accent-soft: rgba(253, 105, 24, 0.16);
  --accent-strong: rgba(253, 105, 24, 0.55);

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.60);

  --card-bg: rgba(0, 0, 0, 0.62);
  --card-soft: rgba(0, 0, 0, 0.54);

  --border: rgba(253, 105, 24, 0.28);
  --border-strong: rgba(253, 105, 24, 0.52);

  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.58);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.76);

  --radius-lg: 22px;
  --radius-md: 16px;
}

/* ==============================
   BODY / FOND
   ============================== */
body {
  font-family: Urbanist, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;

  background:
    radial-gradient(900px 700px at 8% 0%, rgba(253, 105, 24, 0.34), transparent 60%),
    radial-gradient(800px 600px at 92% 100%, rgba(253, 105, 24, 0.26), transparent 55%),
    linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(18, 18, 18, 0.88) 45%,
      rgba(0, 0, 0, 0.96) 100%
    );
}

/* Grain léger */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* Halo orange discret */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 15%, rgba(253, 105, 24, 0.18), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(253, 105, 24, 0.12), transparent 30%);
}

/* ==============================
   PAGE CONTAINER
   ============================== */
.page {
  min-height: 100vh;
  padding: 28px 16px 34px;
  position: relative;
}

/* ==============================
   BOUTON RETOUR
   ============================== */
.back {
  position: absolute;
  left: 16px;
  top: 16px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius-md);

  text-decoration: none;
  color: var(--text);

  background:
    radial-gradient(circle at 10% 0%, rgba(253, 105, 24, 0.38), transparent 60%),
    rgba(0, 0, 0, 0.72);

  border: 1px solid rgba(253, 105, 24, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  font-size: 1.8rem;
  font-weight: 900;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.back:hover {
  transform: translateX(-3px);
  background: rgba(253, 105, 24, 0.90);
  border-color: rgba(253, 105, 24, 0.95);
  box-shadow: 0 18px 40px rgba(253, 105, 24, 0.28);
}

/* ==============================
   CONTENU
   ============================== */
.wrap {
  max-width: 920px;
  margin: 60px auto 0;
}

/* Titres */
h1 {
  margin: 0 0 6px;
  font-size: clamp(2.0rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text);
}

h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fd6918, rgba(253, 105, 24, 0));
}

.sub {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==============================
   KPIs
   ============================== */
.kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 20px;
}

.kpi {
  border-radius: var(--radius-lg);
  padding: 14px 16px;

  background:
    radial-gradient(circle at 0 0, rgba(253, 105, 24, 0.24), transparent 58%),
    linear-gradient(155deg, rgba(0, 0, 0, 0.70), rgba(20, 20, 20, 0.72));

  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.kpi-title {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kpi-value {
  font-size: 28px;
  font-weight: 900;
  margin-top: 6px;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(253, 105, 24, 0.34);
}

/* ==============================
   LISTE AVIS
   ============================== */
.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Carte avis */
.card {
  border-radius: var(--radius-lg);
  padding: 16px;

  background:
    radial-gradient(circle at 0 0, rgba(253, 105, 24, 0.13), transparent 42%),
    var(--card-bg);

  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

@media (hover:hover) {
  .card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-strong);
    background:
      radial-gradient(circle at 0 0, rgba(253, 105, 24, 0.20), transparent 45%),
      rgba(0, 0, 0, 0.68);
  }
}

/* Ligne haut : étoiles + date */
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Étoiles */
.stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(253, 105, 24, 0.45);
}

/* Date */
.date {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
}

/* Nom */
.name {
  margin-top: 8px;
  font-weight: 800;
  color: var(--text);
}

/* Commentaire */
.comment {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ==============================
   ETAT VIDE / ERREUR
   ============================== */
.empty {
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);

  background:
    radial-gradient(circle at 0 0, rgba(253, 105, 24, 0.14), transparent 48%),
    var(--card-soft);

  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);

  color: var(--text-muted);
  font-weight: 800;
  text-align: left;
}

/* ==============================
   BLOC TRANSPARENCE AVIS
   ============================== */
.trust-section {
  margin: 6px 0 18px;
}

.trust-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 14px 16px;
  border-radius: var(--radius-lg);

  background:
    radial-gradient(circle at 0 0, rgba(253, 105, 24, 0.26), transparent 58%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.70), rgba(20, 20, 20, 0.72));

  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(253, 105, 24, 0.28);
}

.trust-text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-commit {
  font-weight: 700;
  color: var(--text);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 680px) {
  .wrap {
    margin-top: 56px;
  }

  .kpis {
    grid-template-columns: 1fr;
  }

  .back {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .trust-box {
    padding: 13px 14px;
  }

  .row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}