.delius-regular {
  font-family: "Delius", cursive;
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #0f1115;
  --bg-2: #0b0d11;
  --text: #e8f0ef;
  --muted: #b8c3c0;
  --orange: #ff7a18;
  --orange-2: #ff9a44;
  --green: #17c964;
  --green-2: #2ee59d;
  --blue: deepskyblue;
  --blue-2: lightskyblue;
  --card: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --gap: 16px;
  --max-width: 1280px;
  --main-font:
    dynaPuff, "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, sans-serif;
}

::selection {
  background: var(--orange-2);
  color: #fff;
}

::-moz-selection {
  background: var(--orange-2);
  color: #fff;
}

* {
  box-sizing: border-box;
  font-family: var(--main-font);
}

html,
body {
  height: 100%;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 122, 24, 0.1),
      transparent 70%
    ),
    radial-gradient(circle at 70% 70%, rgba(23, 201, 100, 0.1), transparent 70%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text);
  line-height: 1.5;
}
h1 {
  padding-top: 20px;
  font-size: 2.5rem;
  line-height: 1.05;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--heading, currentColor);
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, var(--gap));
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: start center;
  isolation: isolate;
  background: url("/static/images/lobby.webp") center top/cover no-repeat;
  background-attachment: scroll;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--gap);
}

.hero-ip {
  position: absolute;
  top: 96px;
  left: max((100vw - var(--max-width)) / 2, var(--gap));
  z-index: 2;
}

.hero-content {
  text-align: center;
  width: min(1100px, 90vw);
  margin: 0 auto;
  padding-top: 96px;
  transform: translateY(-8%);
}

.title {
  font-size: clamp(38px, 7vw, 72px);
  margin: 0 0 10px;
  line-height: 1.05;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange-2), var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--muted);
  font-size: clamp(16px, 2.3vw, 20px);
  margin: 0 0 26px;
}

.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(
      1200px 800px at 30% 10%,
      rgba(255, 122, 24, 0.18),
      transparent 40%
    ),
    radial-gradient(
      1000px 800px at 70% 90%,
      rgba(23, 201, 100, 0.14),
      transparent 40%
    );
}

/* SECTIONS */
.section {
  position: relative;
  padding: 20px 0;
}

/* Keep generic decorative halos globally; feature-specific halo moved to section-features.css if needed */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Pills */

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.mono {
  font-family: var(--font-heading);
}

/*=== CURSORS === */
/* Curseur par défaut */
body {
  cursor:
    url("/static/images/cursors/cursor.png") 8 2,
    auto;
}

/* Curseur pointer pour les éléments interactifs */
a,
button,
.clickable {
  cursor:
    url("/static/images/cursors/pointer.png") 12 5,
    pointer;
}

/* === SCROLLBAR ULTRA FINE — SOMBRE === */

/* WebKit (Chromium, Edge, Safari) */
::-webkit-scrollbar {
  width: 4px; /* verticale */
  height: 4px; /* horizontale */
}

::-webkit-scrollbar-track {
  background: transparent; /* pas de fond visible */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.25); /* trait clair discret */
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.4); /* survol */
}

::-webkit-scrollbar-thumb:active {
  background-color: rgba(255, 255, 255, 0.55); /* clic/drag */
}
