/* ─── Reset ──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --bg: #000;
  --fg: #fff;
  --pink: #d946a8;
  --btn-border: rgba(255, 255, 255, 0.75);
  --btn-radius: 50px;
}

/* ─── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ─── Base ───────────────────────────────────────────────────────────────── */
html { font-size: 100%; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Arimo', sans-serif;
  overflow-x: hidden;
}

/* ─── Layout — mobile ────────────────────────────────────────────────────── */
.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}


/* ─── Centre column ──────────────────────────────────────────────────────── */
.centre {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 8vw, 3.5rem) 1.5rem;
  gap: 0.6rem;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.centre__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

/* ─── Logo ───────────────────────────────────────────────────────────────── */
.site-logo {
  display: block;
  width: clamp(200px, 52vw, 340px);
  height: auto;
}

/* ─── Tagline ────────────────────────────────────────────────────────────── */
.tagline {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ─── Link list ──────────────────────────────────────────────────────────── */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 340px;
}

/* Row: badge is now overlaid on the button, so all rows are full-width */
.link-row {
  display: flex;
  align-items: center;
}

/* ─── 18+ badge ──────────────────────────────────────────────────────────── */
/*
  Overlaid on the top-left corner of the OnlyFans button so all rows
  are the same full width. Sprite: f82f26…png ~800×400px, two circles.
  Scaled to 64px wide → left circle fills a 32×32 box.
*/
.badge-18 {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background-image: url('assets/badge-18.png');
  background-size: 64px auto;
  background-position: 0 center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ─── Link button ────────────────────────────────────────────────────────── */
.link-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border: 1.5px solid var(--btn-border);
  border-radius: var(--btn-radius);
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  position: relative;
  overflow: visible;
  transition: background-color 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.link-btn:hover {
  background: rgba(217, 70, 168, 0.06);
  border-color: var(--pink);
  box-shadow: 0 0 12px rgba(217, 70, 168, 0.25);
}
.link-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--pink);
}

/* ─── Button icon circle ─────────────────────────────────────────────────── */
.btn-icon-wrap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.btn-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-icon--ig {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

/*
  Throne crown sprite: 5d1ddb8…png  ~744×800, two states side by side.
  background-size: 76px 82px → first state occupies left 38px.
*/
.btn-icon--throne {
  display: block;
  width: 38px;
  height: 38px;
  background-image: url('assets/icon-throne.png');
  background-size: 76px 82px;
  background-position: 0 top;
  background-repeat: no-repeat;
}

/* ─── Button label ───────────────────────────────────────────────────────── */
.btn-label {
  flex: 1;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ─── Button chevron arrow ───────────────────────────────────────────────── */
.btn-cursor {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.btn-cursor::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg) translateX(-1px);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.link-btn:hover .btn-cursor::after {
  transform: rotate(45deg) translateX(1px);
  border-color: var(--pink);
}

/* ─── Desktop layout (≥ 600px) ───────────────────────────────────────────── */
@media (min-width: 600px) {
  .centre {
    padding: 2rem 2rem;
  }

  .site-logo { width: clamp(240px, 40vw, 340px); }
  .links { max-width: 420px; }
  .btn-label { font-size: 0.85rem; }
}

/* ─── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .skip-link { transition: none; }
}
