[hidden] { display: none !important; }
/* ─── Dera Sleaze World ─── tokens */
:root {
  /* candy palette (Excuse Me cover + logo) */
  --blush: #E6D1CD;
  --blush-2: #F1E3E0;
  --raspberry: #B9495E;
  --gloss: #F0A2B6;
  --lavender: #B094D7;
  --lemon: #E6CE49;
  --tangerine: #F1A03B;
  --ink: #1F1E1F;
  --electric: #F1FA1D;
  --violet: #4903CB;
  --cotton: #FDC4F2;
  /* chrome palette (her photos) */
  --night: #0B0B0D;
  --night-2: #16161A;
  --chrome: #C9C9CF;
  --bone: #F3F0EE;

  --font-display: "Unbounded", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t-world: 700ms;

  /* live theme vars (candy default) */
  --bg: var(--blush);
  --fg: var(--ink);
  --muted: #6B5A5E;
  --accent: var(--raspberry);
  --accent-fg: #fff;
  --line: rgba(31, 30, 31, .18);
  --btn-bg: rgba(255, 255, 255, .45);
}
html[data-world="chrome"] {
  --bg: var(--night);
  --fg: var(--bone);
  --muted: #9A97A0;
  --accent: var(--cotton);
  --accent-fg: var(--night);
  --line: rgba(243, 240, 238, .18);
  --btn-bg: rgba(255, 255, 255, .06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  transition: color var(--t-world) var(--ease), background-color var(--t-world) var(--ease);
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse), (hover: none) { body { cursor: auto; } }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--cotton); color: var(--ink); }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }
html[data-world="chrome"] :focus-visible { outline-color: var(--electric); }

/* ─── canvas layers */
#gl { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
#cursor { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 50; pointer-events: none; display: none; }
@media (pointer: fine) and (hover: hover) { #cursor { display: block; } }

/* ─── loader */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--ink);
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { display: grid; justify-items: center; gap: 18px; text-align: center; }
.loader__mark { width: 56px; height: 56px; color: var(--raspberry); animation: spin 6s linear infinite; }
.loader__label { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.loader__bar { width: 200px; height: 3px; background: rgba(31,30,31,.15); border-radius: 3px; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0%; background: var(--raspberry); transition: width .3s var(--ease); }
.loader__enter { margin-top: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px var(--gutter);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .04em; }
.nav__brand svg { width: 26px; height: 26px; color: var(--accent); transition: color var(--t-world) var(--ease); }
.nav__links { display: flex; gap: 26px; font-size: 14px; font-weight: 500; }
.nav__links a { text-decoration: none; opacity: .8; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--accent); transition: right .3s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { right: 0; }
@media (max-width: 760px) { .nav__links { display: none; } .nav { padding: 14px 20px; } }

/* ─── buttons */
.btn { white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .02em;
  text-decoration: none; color: var(--fg);
  background: var(--btn-bg); border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), background-color .25s, border-color .25s, color .25s;
  cursor: none;
}
@media (pointer: coarse), (hover: none) { .btn { cursor: pointer; } }
.btn:hover { transform: translateY(-2px); border-color: var(--fg); }
.btn--solid { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.btn--solid:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--sm { padding: 10px 16px; font-size: 12px; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta--wrap { flex-wrap: wrap; }

/* ─── type */
.eyebrow { margin: 0 0 14px; font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.h2 { margin: 0; font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -.02em; text-wrap: balance; }
.h2--xl { font-size: clamp(56px, 12vw, 160px); letter-spacing: -.04em; color: var(--accent); transition: color var(--t-world) var(--ease); }
.lede { margin: 20px 0 0; font-size: clamp(16px, 1.25vw, 19px); max-width: 60ch; color: var(--fg); opacity: .9; }

/* ─── sections */
main { position: relative; z-index: 1; }
#content { pointer-events: none; }
.section { position: relative; min-height: 100vh; padding: 120px var(--gutter) 96px; pointer-events: none; }
.section a, .section button, .section iframe, .section [data-tilt] { pointer-events: auto; }

/* hero */
.hero { display: grid; align-items: center; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.hero__copy { max-width: 620px; }
.hero__title { margin: 0; }
.hero__title img { width: clamp(240px, 30vw, 450px); height: auto; filter: drop-shadow(0 18px 40px rgba(73,3,203,.18)); animation: bob 7s ease-in-out infinite; }
.hero__sub { margin: 10px 0 0; font-size: clamp(17px, 1.4vw, 21px); }
.hero__sub strong { font-family: var(--font-display); font-weight: 900; letter-spacing: .02em; color: var(--raspberry); }
.hero__hint { position: absolute; left: var(--gutter); bottom: 32px; display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hero__hint i { width: 1px; height: 48px; background: linear-gradient(var(--muted), transparent); animation: drip 1.8s var(--ease) infinite; transform-origin: top; display: block; }
.hero__tip { position: absolute; right: var(--gutter); bottom: 34px; margin: 0; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-10px) rotate(1.5deg); } }
@keyframes drip { 0% { transform: scaleY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; align-content: end; padding-bottom: 120px; }
  .hero__title img { width: min(62vw, 360px); }
  .hero__tip { display: none; }
}

/* record */
.record { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; overflow: hidden; }
.record__lettering { display: grid; place-items: center; }
.record__lettering img { width: min(100%, 560px); filter: drop-shadow(0 30px 50px rgba(185,73,94,.25)); animation: bob 9s ease-in-out infinite reverse; }
.record__body { max-width: 560px; }
.player { margin-top: 28px; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(31,30,31,.18); }
.player iframe { display: block; border: 0; }
.ticker { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 0; border-top: 1.5px solid var(--line); overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; gap: 48px; padding-left: 48px; animation: ticker 40s linear infinite; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: lowercase; color: var(--raspberry); }
.ticker__track span::after { content: "★"; margin-left: 48px; color: var(--lavender); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (max-width: 900px) {
  .record { grid-template-columns: 1fr; gap: 12px; padding-bottom: 130px; }
  .record__lettering img { width: min(80vw, 420px); }
}

/* world */
.world { display: grid; grid-template-rows: auto 1fr auto; min-height: 100vh; }
.world__head { max-width: 560px; }
.world__caption { align-self: end; display: flex; gap: 20px; align-items: baseline; font-family: var(--font-display); }
.world__num { font-size: 12px; letter-spacing: .2em; color: var(--muted); }
.world__label { font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -.01em; }
.world__controls { position: absolute; right: var(--gutter); bottom: 96px; display: flex; gap: 10px; }
.ctrl { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--btn-bg); color: var(--fg); font-size: 20px; cursor: pointer; backdrop-filter: blur(8px); transition: transform .25s var(--ease), border-color .25s; }
.ctrl:hover { transform: translateY(-2px); border-color: var(--fg); }
@media (max-width: 760px) { .world__controls { bottom: 40px; right: auto; left: 20px; } .world__caption { margin-bottom: 70px; } }

/* catalog */
.catalog { display: flex; flex-direction: column; justify-content: center; gap: 40px; }
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; perspective: 1200px; }
.card { border-radius: 18px; overflow: hidden; background: var(--night-2); border: 1px solid var(--line); transform-style: preserve-3d; transition: transform .35s var(--ease), box-shadow .35s var(--ease); will-change: transform; }
.card a { display: block; position: relative; aspect-ratio: 1 / 1; text-decoration: none; color: var(--bone); }
.card img { width: 100%; height: 100%; object-fit: cover; }
.card__meta { position: absolute; inset: auto 0 0 0; padding: 64px 22px 22px; display: grid; gap: 4px; background: linear-gradient(rgba(11,11,13,0), rgba(11,11,13,.7) 40%, rgba(11,11,13,.94)); }
.card__date { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--chrome); }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.3vw, 19px); line-height: 1.2; }
.card__go { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--cotton); }
.card--type a { background: radial-gradient(120% 90% at 20% 10%, #2A2A31, var(--night)); }
.card--alt a { background: radial-gradient(120% 90% at 80% 10%, #3A2A3E, var(--night)); }
.card__big { position: absolute; top: 22px; left: 22px; font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 5.5vw, 76px); line-height: .92; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--chrome); }
.card--alt .card__big { -webkit-text-stroke-color: var(--cotton); }
.card:hover { box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.card:hover .card__big { color: var(--bone); -webkit-text-stroke-color: transparent; transition: color .3s; }
.catalog__note { margin: 0; font-size: 14px; color: var(--muted); }
.catalog__note a { color: var(--fg); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } .card a { aspect-ratio: 4 / 3; } }

/* follow */
.follow { display: flex; flex-direction: column; justify-content: center; }
.follow__inner { padding: 0 0 40px; }
.socials { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1.5px solid var(--line); max-width: 760px; }
.socials li { border-bottom: 1.5px solid var(--line); }
.socials a { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 8px; text-decoration: none; font-family: var(--font-display); transition: padding .3s var(--ease), background-color .3s; }
.socials a span:first-child { font-weight: 700; font-size: clamp(18px, 2.2vw, 28px); }
.socials a span:last-child { font-family: var(--font-body); font-size: 14px; color: var(--muted); }
.socials a:hover { padding-left: 20px; background: rgba(255,255,255,.25); }
html[data-world="chrome"] .socials a:hover { background: rgba(255,255,255,.05); }
.footer { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: auto; padding-top: 32px; font-size: 13px; color: var(--muted); pointer-events: auto; }
.footer a { color: var(--fg); text-decoration: none; }

/* ─── reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__title img, .record__lettering img, .ticker__track, .hero__hint i, .loader__mark { animation: none; }
}

/* mobile: leave a tail below the footer where the 3D logo parks */
@media (max-width: 899px) { .follow { padding-bottom: 62vh; } }

/* fan capture (Laylo) */
.capture { margin-top: 32px; }
.capture__sub { margin: -6px 0 12px; font-size: 15px; color: var(--muted); max-width: 460px; }
.capture .laylo { display: block; width: 100%; max-width: 520px; height: 235px; border: 0; border-radius: 18px; overflow: hidden; background: transparent; pointer-events: auto; }
.capture--hero { padding-top: 24px; border-top: 1.5px solid var(--line); }
.capture--follow { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 36px 0 8px; padding: 28px 0 32px; border-top: 1.5px solid var(--line); }
.capture__copy .eyebrow { color: var(--accent); }
.capture__link { display: inline-block; margin-top: 4px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg); text-decoration: none; border-bottom: 1.5px solid var(--accent); }
.capture__link:hover { color: var(--accent); }
@media (max-width: 899px) {
  .capture--hero .laylo, .capture--follow .laylo { max-width: 100%; }
}
