:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --panel: rgba(14, 14, 14, 0.56);
  --panel-strong: rgba(18, 18, 18, 0.74);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.22);
  --radius-card: 22px;
  --radius-pill: 999px;
  --radius-icon: 16px;
  --bg-orb-1: rgba(255, 70, 140, 0.28);
  --bg-orb-2: rgba(90, 190, 255, 0.24);
  --bg-orb-3: rgba(255, 180, 70, 0.18);
  --bg-orb-4: rgba(125, 255, 214, 0.14);
  --bg-orb-5: rgba(195, 140, 255, 0.18);
  --toggle-flash: rgba(255, 255, 255, 0.78);
  --toggle-glint: rgba(255, 255, 255, 0.52);
  --accent-pink-soft: rgba(255, 94, 144, 0.08);
  --accent-pink-strong: rgba(255, 94, 144, 0.22);
  --accent-blue-soft: rgba(89, 145, 255, 0.08);
  --accent-blue-strong: rgba(89, 145, 255, 0.2);
  --accent-amber-soft: rgba(255, 183, 77, 0.08);
  --accent-amber-strong: rgba(255, 183, 77, 0.18);
  --accent-lilac-soft: rgba(190, 145, 255, 0.08);
  --accent-lilac-strong: rgba(190, 145, 255, 0.18);
  --accent-green-soft: rgba(110, 225, 180, 0.08);
  --accent-green-strong: rgba(110, 225, 180, 0.18);
  --hot: #ff2f73;
  --hot-dark: #ff5a47;
}

.light-mode {
  color-scheme: light;
  --bg: #f8f8f8;
  --text: #1f1f1f;
  --muted: rgba(31, 31, 31, 0.68);
  --border: rgba(20, 20, 20, 0.14);
  --panel: rgba(255, 255, 255, 0.62);
  --panel-strong: rgba(255, 255, 255, 0.82);
  --shadow: 0 18px 42px rgba(28, 28, 28, 0.08);
  --shadow-soft: 0 12px 28px rgba(28, 28, 28, 0.06);
  --bg-orb-1: rgba(255, 70, 140, 0.16);
  --bg-orb-2: rgba(90, 190, 255, 0.15);
  --bg-orb-3: rgba(255, 180, 70, 0.11);
  --bg-orb-4: rgba(125, 255, 214, 0.08);
  --bg-orb-5: rgba(195, 140, 255, 0.11);
  --toggle-flash: rgba(0, 0, 0, 0.32);
  --toggle-glint: rgba(0, 0, 0, 0.16);
  --accent-pink-soft: rgba(255, 94, 144, 0.05);
  --accent-pink-strong: rgba(255, 94, 144, 0.14);
  --accent-blue-soft: rgba(89, 145, 255, 0.05);
  --accent-blue-strong: rgba(89, 145, 255, 0.14);
  --accent-amber-soft: rgba(255, 183, 77, 0.05);
  --accent-amber-strong: rgba(255, 183, 77, 0.13);
  --accent-lilac-soft: rgba(190, 145, 255, 0.05);
  --accent-lilac-strong: rgba(190, 145, 255, 0.12);
  --accent-green-soft: rgba(110, 225, 180, 0.05);
  --accent-green-strong: rgba(110, 225, 180, 0.12);
}

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

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.light-mode,
body.light-mode {
  background-color: #f8f8f8;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a,
button,
[role="button"],
.link-btn,
.toy-card {
  touch-action: manipulation;
}


body::before {
  content: none;
}

body::after {
  content: none;
}

.page {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 10px 16px 12px;
  font-size: 0.97rem;
  transform-origin: top center;
  transition: opacity 0.2s ease;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.reward-toggle,
#theme-toggle {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.24s ease;
  opacity: 0;
  animation: fadeDown 0.75s ease-out 0s both;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.reward-toggle {
  color: #ffcc33;
}

.reward-toggle i {
  font-size: 1.18rem;
  line-height: 1;
}

.reward-toggle:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.light-mode .reward-toggle,
.light-mode #theme-toggle {
  background: rgba(255,255,255,0.72);
}

#theme-toggle:hover {
  opacity: 1;
}

#theme-toggle.is-switching {
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
}

.reward-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: max(22px, env(safe-area-inset-top)) 22px max(22px, env(safe-area-inset-bottom));
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.reward-modal[hidden] {
  display: none !important;
}

.reward-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.24s ease;
}

.reward-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.reward-panel {
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --panel: rgba(14, 14, 14, 0.74);
  position: relative;
  width: min(100%, 420px);
  max-height: min(92svh, 760px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--border);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.reward-modal.open .reward-panel {
  transform: translateY(0) scale(1);
}

.light-mode .reward-panel {
  --text: #1f1f1f;
  --muted: rgba(31, 31, 31, 0.66);
  --border: rgba(20, 20, 20, 0.14);
  --panel: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.34)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.68);
}

.light-mode .reward-wheel {
  background:
    repeating-conic-gradient(
      from -20deg,
      rgba(20,20,20,0.16) 0deg 0.8deg,
      transparent 0.8deg 40deg
    ),
    conic-gradient(
      from -20deg,
      rgba(255,255,255,0.32) 0deg 40deg,
      rgba(255,255,255,0.32) 40deg 80deg,
      rgba(255,255,255,0.32) 80deg 120deg,
      rgba(255,255,255,0.32) 120deg 160deg,
      rgba(255,255,255,0.32) 160deg 200deg,
      rgba(255,255,255,0.32) 200deg 240deg,
      rgba(255,255,255,0.32) 240deg 280deg,
      rgba(255,255,255,0.32) 280deg 320deg,
      rgba(255,255,255,0.32) 320deg 360deg
    );
  box-shadow:
    0 24px 54px rgba(28,28,28,0.18),
    0 0 28px rgba(255,255,255,0.38),
    inset 0 0 0 1px rgba(255,255,255,0.56),
    inset 0 46px 76px rgba(255,255,255,0.34),
    inset 0 -46px 78px rgba(80,90,100,0.12);
}

.light-mode .reward-wheel::after {
  background: rgba(255,255,255,0.34);
  border-color: rgba(255,255,255,0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.36),
    0 10px 24px rgba(28,28,28,0.14),
    0 0 0 7px rgba(255,255,255,0.18);
}

.light-mode .wheel-highlight {
  background:
    conic-gradient(
      from -20deg,
      transparent 0deg var(--winner-start, 0deg),
      rgba(255,255,255,0.64) var(--winner-start, 0deg) var(--winner-end, 0deg),
      transparent var(--winner-end, 0deg) 360deg
    );
}

.light-mode .wheel-label {
  color: rgba(31,31,31,0.72);
}

.reward-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  text-align: left;
}

.reward-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reward-title {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reward-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.wheel-stage {
  position: relative;
  width: min(100%, 320px);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.wheel-stage::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 47, 115, 0.72), transparent 26%),
    radial-gradient(circle at 78% 28%, rgba(255, 153, 64, 0.66), transparent 27%),
    radial-gradient(circle at 68% 78%, rgba(57, 211, 143, 0.6), transparent 29%),
    radial-gradient(circle at 26% 72%, rgba(27, 156, 242, 0.48), transparent 28%);
  filter: blur(18px) saturate(1.28);
  opacity: 0.9;
  transform: scale(1);
  animation: wheelColorDrift 7.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  z-index: 7;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 32px solid rgba(255,255,255,0.96);
  filter:
    drop-shadow(0 5px 8px rgba(0,0,0,0.42))
    drop-shadow(0 0 4px rgba(255,255,255,0.36));
  transform: translateX(-50%);
}

.reward-wheel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0;
  background:
    repeating-conic-gradient(
      from -20deg,
      rgba(255,255,255,0.34) 0deg 0.8deg,
      transparent 0.8deg 40deg
    ),
    conic-gradient(
      from -20deg,
      rgba(255,255,255,0.18) 0deg 40deg,
      rgba(255,255,255,0.18) 40deg 80deg,
      rgba(255,255,255,0.18) 80deg 120deg,
      rgba(255,255,255,0.18) 120deg 160deg,
      rgba(255,255,255,0.18) 160deg 200deg,
      rgba(255,255,255,0.18) 200deg 240deg,
      rgba(255,255,255,0.18) 240deg 280deg,
      rgba(255,255,255,0.18) 280deg 320deg,
      rgba(255,255,255,0.18) 320deg 360deg
    );
  box-shadow:
    0 24px 54px rgba(0,0,0,0.46),
    0 0 28px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.34),
    inset 0 46px 76px rgba(255,255,255,0.24),
    inset 0 -46px 78px rgba(0,0,0,0.26);
  backdrop-filter: blur(22px) saturate(1.38);
  -webkit-backdrop-filter: blur(22px) saturate(1.38);
  transform: rotate(0deg);
  transition: transform 5.4s cubic-bezier(0.08, 0.82, 0.13, 1);
  overflow: hidden;
  will-change: transform;
}

.reward-wheel::after {
  content: "";
  position: absolute;
  inset: 37%;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(18px) saturate(1.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.16),
    0 10px 24px rgba(0,0,0,0.36),
    0 0 0 7px rgba(255,255,255,0.06);
  z-index: 5;
}

.wheel-highlight {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      from -20deg,
      transparent 0deg var(--winner-start, 0deg),
      rgba(255,255,255,0.44) var(--winner-start, 0deg) var(--winner-end, 0deg),
      transparent var(--winner-end, 0deg) 360deg
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 3;
}

.wheel-highlight.show {
  opacity: 0.38;
}

.wheel-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 48px;
  color: rgba(255,255,255,0.94);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  transform: rotate(var(--angle));
  z-index: 6;
}

.wheel-label span {
  display: block;
  width: 84px;
  transform: rotate(90deg);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reward-spin {
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(90deg, #ff007a, #ff6941);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow:
    var(--shadow-soft),
    0 10px 26px rgba(255, 87, 115, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.reward-spin:disabled {
  cursor: wait;
  opacity: 0.76;
}

.reward-spin:focus,
.reward-spin:focus-visible {
  outline: none;
  box-shadow:
    var(--shadow-soft),
    0 10px 26px rgba(255, 87, 115, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.reward-result {
  margin-top: 16px;
  max-width: 100%;
  max-height: 0;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition:
    max-height 0.44s ease,
    opacity 0.28s ease,
    transform 0.34s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.reward-result.show {
  max-height: 340px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.075);
}

.reward-result.link-only .reward-code,
.reward-result.link-only .reward-copy {
  display: none;
}

.reward-result.link-only .reward-actions,
.reward-result.no-reward .reward-actions {
  grid-template-columns: 1fr;
}

.reward-result.no-reward .reward-code,
.reward-result.no-reward .reward-copy {
  display: none;
}

.reward-result-title {
  display: block;
  margin-bottom: 5px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reward-result-copy {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

.reward-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 38px;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  font-weight: 900;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  user-select: all;
  -webkit-user-select: all;
}

.reward-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding-bottom: 2px;
}

.reward-copy,
.reward-claim {
  min-width: 0;
  min-height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.reward-copy {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.reward-claim {
  border: 0;
  background: linear-gradient(90deg, #1b9cf2, #9b6fff);
  color: #fff;
}

body.modal-open {
  overflow-x: hidden;
}

body.modal-open .page {
  opacity: 0;
  pointer-events: none;
}

#theme-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform-origin: center;
  backface-visibility: hidden;
}

#theme-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

header {
  text-align: center;
  padding: 8px 0 24px;
}

.follower-counter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  animation: fadeDown 0.75s ease-out 0.04s both;
}

.light-mode .follower-counter {
  background: rgba(255,255,255,0.72);
  border-color: rgba(20,20,20,0.12);
  box-shadow:
    0 12px 28px rgba(28,28,28,0.06),
    inset 0 1px 0 rgba(255,255,255,0.74);
}

.follower-number {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-block;
  min-width: 4ch;
  font-variant-numeric: tabular-nums;
}

.follower-number.is-counting {
  animation: followerNumberTick 0.42s ease-out infinite alternate;
}

.follower-number.count-complete {
  animation: followerNumberComplete 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.follower-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.avatar-wrap {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto 14px;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #ff3b8d,
    #ff9f1c,
    #ffe45e,
    #35e38a,
    #27abff,
    #9b6fff,
    #ff3b8d
  );
  filter: blur(10px);
  opacity: 0;
  transform: scale(0.86) rotate(0deg);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 0;
}

.avatar-wrap.neo-glow::before {
  opacity: 0.9;
  animation: avatarRainbowGlow 2.4s linear infinite;
}

.avatar-wrap.neo-glow .avatar {
  border-color: rgba(255,255,255,0.72);
  box-shadow:
    0 22px 58px rgba(0,0,0,0.4),
    0 0 0 3px rgba(255,255,255,0.18);
}

.avatar {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  object-fit: cover;
  margin: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.34);
  display: block;
  opacity: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  animation: avatarReveal 0.8s ease-out 0.12s both;
}

h1 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  opacity: 0;
  animation: fadeDown 0.8s ease-out 0.24s both;
}

.subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeDown 0.8s ease-out 0.36s both;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeDown 0.8s ease-out 0.48s both;
}

.socials a {
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.95;
}

.socials a:nth-child(1) { color: #f5f5f5; }
.socials a:nth-child(2) { color: #27abff; }
.socials a:nth-child(3) { color: #39b3ff; }
.socials a:nth-child(4) { color: #ff5c92; }
.socials a:nth-child(5) { color: #ff6a3d; }
.socials a:nth-child(6) { color: #f5f5f5; }

.light-mode .socials a:nth-child(1) { color: #111827; }
.light-mode .socials a:nth-child(6) { color: #111827; }

.section-head {
  text-align: center;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeDown 0.82s ease-out both;
}

.links + .shop-header,
.shop-header {
  opacity: 0;
  animation: fadeDown 0.82s ease-out both;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.04);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.light-mode .section-label {
  border-color: rgba(20,20,20,0.16);
  background: rgba(255,255,255,0.5);
}

.note {
  color: var(--muted);
  line-height: 1.5;
  max-width: 36rem;
  margin: 0 auto;
}

.links,
.toy-grid {
  display: grid;
  gap: 14px;
}

.links {
  margin-bottom: 32px;
}

.link-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -20px 36px rgba(255,255,255,0.015);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.28s ease, box-shadow 0.38s ease, border-color 0.38s ease;
  opacity: 0;
  animation: fadeDown 0.72s ease-out both;
  --link-glow-x: 62%;
  --link-glow-y: -22%;
  --link-glow-scale: 0.96;
  --touch-x: 50%;
  --touch-y: 50%;
  --touch-opacity: 0;
}

:root .link-btn {
  box-shadow:
    var(--shadow),
    0 8px 24px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -20px 36px rgba(255,255,255,0.015);
}

.link-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.light-mode .link-btn:hover,
.light-mode .link-btn:active {
  transform: translateY(-1px) scale(1.005);
  box-shadow:
    0 18px 42px rgba(28, 28, 28, 0.09),
    0 0 0 1px rgba(20,20,20,0.035),
    inset 0 1px 0 rgba(255,255,255,0.78),
    inset 0 -20px 36px rgba(255,255,255,0.18);
}

.link-btn::before {
  display: none;
}

.link-btn::after {
  display: none;
}

.links > .link-btn:nth-of-type(2)::before,
.links > .link-btn:nth-of-type(5)::before,
.links > .link-btn:nth-of-type(8)::before {
  animation-name: linkGlowDriftB;
  animation-duration: 6.6s;
  animation-delay: -1.1s;
}

.links > .link-btn:nth-of-type(3)::before,
.links > .link-btn:nth-of-type(6)::before {
  animation-name: linkGlowDriftC;
  animation-duration: 7.8s;
  animation-delay: -2s;
}

.links > .link-btn:nth-of-type(4)::before,
.links > .link-btn:nth-of-type(7)::before,
.links > .link-btn:nth-of-type(9)::before {
  animation-name: linkGlowDriftD;
  animation-duration: 6.9s;
  animation-delay: -0.8s;
}


.yourvids-btn { --accent-soft: rgba(255, 84, 138, 0.08); --accent-strong: rgba(255, 84, 138, 0.22); }
.fansly-btn { --accent-soft: rgba(27, 156, 242, 0.09); --accent-strong: rgba(27, 156, 242, 0.24); }
.onlyfans-btn { --accent-soft: rgba(0, 175, 240, 0.08); --accent-strong: rgba(0, 175, 240, 0.22); }
.manyvids-btn { --accent-soft: rgba(255, 84, 138, 0.08); --accent-strong: rgba(255, 132, 176, 0.18); }
.clips4sale-btn { --accent-soft: rgba(255, 92, 163, 0.06); --accent-strong: rgba(255, 92, 163, 0.16); }
.pornhub-btn { --accent-soft: rgba(255, 153, 0, 0.07); --accent-strong: rgba(255, 153, 0, 0.2); }
.throne-btn { --accent-soft: rgba(155, 111, 255, 0.07); --accent-strong: rgba(155, 111, 255, 0.18); }
.paypal-btn { --accent-soft: rgba(0, 87, 255, 0.07); --accent-strong: rgba(0, 87, 255, 0.18); }
.more-btn { --accent-soft: rgba(57, 211, 143, 0.06); --accent-strong: rgba(57, 211, 143, 0.16); }

.platform-icon,
.logo-box img {
  display: block;
  object-fit: contain;
}

.platform-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 9px;
  border-radius: var(--radius-icon);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  box-shadow:
    0 6px 16px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.light-mode .platform-icon {
  background: rgba(255,255,255,0.72);
  border-color: rgba(20,20,20,0.1);
}

.platform-icon-inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.light-mode .manyvids-btn .platform-icon-inner {
  filter: brightness(0);
}

.pornhub-logo-light {
  display: none;
}

.light-mode .pornhub-logo-dark {
  display: none;
}

.light-mode .pornhub-logo-light {
  display: block;
}

.link-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.link-title {
  display: block;
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.link-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-btn i:last-child {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.link-btn:hover i:last-child {
  transform: translateX(3px);
}

.more-btn {
  cursor: pointer;
  width: 100%;
  border: 1px solid var(--border);
  font: inherit;
  text-align: left;
}

.more-btn.open i:last-child {
  transform: rotate(180deg);
}

#hiddenLinks {
  display: grid;
  gap: 14px;
  height: 0;
  opacity: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    height 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, opacity, transform;
}

#hiddenLinks > a {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transition:
    opacity 0.34s ease,
    transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

#hiddenLinks.show {
  opacity: 1;
  overflow: visible;
  transform: translateY(0);
}

#hiddenLinks.show > a {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#hiddenLinks.show > a:nth-of-type(1) { transition-delay: 0.03s; }
#hiddenLinks.show > a:nth-of-type(2) { transition-delay: 0.07s; }
#hiddenLinks.show > a:nth-of-type(3) { transition-delay: 0.11s; }
#hiddenLinks.show > a:nth-of-type(4) { transition-delay: 0.15s; }
#hiddenLinks.show > a:nth-of-type(5) { transition-delay: 0.19s; }

/* Toy cards */
.shop-header {
  text-align: center;
  margin-bottom: 18px;
}

.toy-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}

.toy-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 22px 26px 18px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008)),
    rgba(9,9,11,0.975);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeDown 0.78s ease-out both;
  transition: transform 0.26s ease, box-shadow 0.38s ease, border-color 0.38s ease;
  --toy-accent-soft: rgba(255, 84, 138, 0.14);
  --toy-accent-strong: rgba(255, 84, 138, 0.34);
  --toy-button-start: #ff007a;
  --toy-button-end: #ff6941;
  --toy-touch-x: 50%;
  --toy-touch-y: 50%;
  --toy-touch-opacity: 0;
  min-height: 240px;
}

.light-mode .toy-card {
  border-color: rgba(17,24,39,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,246,247,0.95)),
    rgba(255,255,255,0.98);
  box-shadow:
    0 18px 42px rgba(15,23,42,0.1),
    0 0 0 1px rgba(17,24,39,0.045),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

.toy-card::before {
  content: "";
  position: absolute;
  left: -18%;
  top: -28%;
  width: 86%;
  height: 140%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, var(--toy-accent-strong) 0%, var(--toy-accent-soft) 36%, transparent 74%);
  filter: blur(42px);
  opacity: 0.88;
  animation: toyGlowDriftA 8.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.toy-card::after {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: 999px;
  background: radial-gradient(circle at var(--toy-touch-x) var(--toy-touch-y), var(--toy-accent-strong) 0%, var(--toy-accent-soft) 18%, transparent 42%);
  filter: blur(24px);
  opacity: var(--toy-touch-opacity);
  pointer-events: none;
  z-index: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toy-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 62px rgba(0,0,0,0.46),
    inset 0 1px 0 rgba(255,255,255,0.09);
}

.toy-new-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)),
    linear-gradient(90deg, var(--toy-button-start), var(--toy-button-end));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    0 10px 22px rgba(255, 87, 115, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.28);
  pointer-events: none;
}

.light-mode .toy-card:hover,
.light-mode .toy-card:active {
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(15,23,42,0.11),
    0 0 0 1px rgba(17,24,39,0.055),
    inset 0 1px 0 rgba(255,255,255,0.88);
}

.toy-card-nothosaur {
  --toy-accent-soft: rgba(198, 50, 46, 0.14);
  --toy-accent-strong: rgba(198, 50, 46, 0.34);
}

.toy-card-hankeys {
  --toy-accent-soft: rgba(255, 128, 54, 0.15);
  --toy-accent-strong: rgba(255, 128, 54, 0.36);
}

.toy-card-tantaly {
  --toy-accent-soft: rgba(238, 190, 178, 0.15);
  --toy-accent-strong: rgba(238, 190, 178, 0.35);
}

.toy-card-qutoys {
  --toy-accent-soft: rgba(218, 126, 116, 0.14);
  --toy-accent-strong: rgba(218, 126, 116, 0.34);
}

.toy-card-nyoon {
  --toy-accent-soft: rgba(44, 142, 197, 0.14);
  --toy-accent-strong: rgba(44, 142, 197, 0.34);
}

.toy-card-uberrime {
  --toy-accent-soft: rgba(92, 214, 93, 0.15);
  --toy-accent-strong: rgba(92, 214, 93, 0.36);
}

.toy-card-juliet {
  --toy-accent-soft: rgba(160, 38, 45, 0.14);
  --toy-accent-strong: rgba(160, 38, 45, 0.34);
}

.toy-card-swisok {
  --toy-accent-soft: rgba(58, 170, 205, 0.16);
  --toy-accent-strong: rgba(58, 170, 205, 0.38);
}

.toy-card-greedy {
  --toy-accent-soft: rgba(112, 82, 118, 0.14);
  --toy-accent-strong: rgba(112, 82, 118, 0.34);
}

.toy-card-hismith {
  --toy-accent-soft: rgba(106, 112, 132, 0.13);
  --toy-accent-strong: rgba(106, 112, 132, 0.32);
}

.toy-card-fuckyeah {
  --toy-accent-soft: rgba(150, 160, 160, 0.12);
  --toy-accent-strong: rgba(150, 160, 160, 0.30);
}

.toy-card-hankeys::before,
.toy-card-tantaly::before,
.toy-card-swisok::before {
  animation-name: toyGlowDriftB;
  animation-duration: 7.8s;
  animation-delay: -1.2s;
}

.toy-card-qutoys::before,
.toy-card-greedy::before {
  animation-name: toyGlowDriftC;
  animation-duration: 9.2s;
  animation-delay: -2.2s;
}

.toy-card-nyoon::before,
.toy-card-uberrime::before,
.toy-card-hismith::before {
  animation-name: toyGlowDriftD;
  animation-duration: 8.1s;
  animation-delay: -0.9s;
}

.toy-card-fuckyeah::before {
  animation-name: toyGlowDriftD;
  animation-duration: 8.1s;
  animation-delay: -1.6s;
}

.toy-top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.toy-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 6px 8px 0 18px;
}

.toy-brand-logo {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 112px;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  box-shadow:
    var(--shadow-soft),
    0 6px 14px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 3;
}

.toy-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.light-mode .toy-brand-logo {
  background: rgba(255,255,255,0.86);
  border-color: rgba(20,20,20,0.1);
}

.toy-brand-logo.logo-greedy-cluster img {
  width: 92%;
  height: 92%;
}

.toy-brand-logo.logo-contrast-dark img {
  width: 88%;
  height: 88%;
  margin: auto;
}

.square-sharp,
.no-radius {
  border-radius: inherit;
}

.toy-glow {
  display: none;
}

.toy-image-left {
  display: block;
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  height: 176px;
  object-fit: contain;
  object-position: right center;
  filter: none;
}

.toy-content-right {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.toy-content-right > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 440px;
  transform: none;
  min-height: 0;
}

.toy-title {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}

.light-mode .toy-title {
  color: #111827;
}

.toy-desc {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.34;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 500;
  max-width: 18ch;
  min-height: 0;
}

.light-mode .toy-desc {
  color: rgba(17,24,39,0.68);
}

.toy-accent-line {
  display: none;
}

.toy-cta-wrap {
  position: relative;
  z-index: 1;
  margin-top: auto;
  transform: none;
}

.btn-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  padding: 14px 18px;
  border-radius: 26px;
  background: linear-gradient(90deg, var(--toy-button-start), var(--toy-button-end));
  color: white;
  text-decoration: none;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow:
    var(--shadow-soft),
    0 8px 18px rgba(255,255,255,0.04),
    0 10px 26px rgba(255, 87, 115, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.btn-offer::before {
  content: "\f02b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.92em;
  line-height: 1;
}

.btn-offer:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  min-height: 1.1em;
  background: transparent;
  color: rgba(255,255,255,0.58);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: center;
  transform: translateY(2px);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 12px;
}

.code-box[data-copy-code] {
  cursor: pointer;
}

.code-box.code-copied {
  border: 1px solid rgba(69, 233, 130, 0.38);
  background: rgba(69, 233, 130, 0.13);
  color: rgba(226, 255, 237, 0.96);
  box-shadow:
    0 0 0 1px rgba(69, 233, 130, 0.12),
    0 10px 26px rgba(69, 233, 130, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.14);
  animation: codeCopiedSoft 1.55s ease-out;
}

.code-box.code-copied span {
  animation: codeCopiedText 1.55s ease-out;
}

.code-box.code-copied-fade {
  opacity: 0;
  transition:
    opacity 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.code-box.code-copied::before {
  content: "\f00c";
  color: #45e982;
  text-shadow: 0 0 12px rgba(69, 233, 130, 0.42);
  font-size: 1.16em;
  animation: codeCopiedGreenCheck 1.55s ease-out;
}

.code-box[data-copy-code]::after {
  display: none;
}

.code-box::before {
  content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1em;
  line-height: 1;
  opacity: 0.85;
}

.code-box span {
  letter-spacing: -0.01em;
}

.light-mode .code-box {
  color: rgba(17,24,39,0.6);
}


.copy-icon,
.copy-icon.disabled {
  display: none;
}

.invert-on-dark,
.logo-contrast-dark img {
  filter: invert(1) brightness(1.15);
}

.light-mode .invert-on-dark,
.light-mode .logo-contrast-dark img {
  filter: none;
}

footer {
  position: relative;
  z-index: 50;
  isolation: isolate;
  pointer-events: auto;
  margin-top: 56px;
  padding: 28px 0 5px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: rgba(255,255,255,0.54);
  font-size: 0.78rem;
  opacity: 0;
  animation: fadeDown 0.9s ease-out 1.32s both;
}

footer p {
  margin: 0;
}

.legal-note {
  position: relative;
  z-index: 51;
  margin-top: 8px;
  pointer-events: auto;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.45;
}

.legal-note a {
  position: relative;
  z-index: 52;
  display: inline;
  margin-left: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  pointer-events: auto;
  touch-action: manipulation;
}

.light-mode .legal-note {
  color: inherit;
}

.light-mode .legal-note a {
  color: inherit;
}

.section-head:first-of-type {
  animation-delay: 0.62s;
}

.links > .link-btn:nth-of-type(1) { animation-delay: 0.74s; }
.links > .link-btn:nth-of-type(2) { animation-delay: 0.82s; }
.links > .link-btn:nth-of-type(3) { animation-delay: 0.9s; }
.links > .link-btn:nth-of-type(4) { animation-delay: 0.98s; }
.links > .link-btn:nth-of-type(5) { animation-delay: 1.06s; }

#hiddenLinks.show > a:nth-of-type(1) { animation-delay: 0.04s; }
#hiddenLinks.show > a:nth-of-type(2) { animation-delay: 0.08s; }
#hiddenLinks.show > a:nth-of-type(3) { animation-delay: 0.12s; }
#hiddenLinks.show > a:nth-of-type(4) { animation-delay: 0.16s; }
#hiddenLinks.show > a:nth-of-type(5) { animation-delay: 0.2s; }

.shop-header {
  animation-delay: 1.14s;
}

.toy-grid > .toy-card:nth-of-type(1) { animation-delay: 1.22s; }
.toy-grid > .toy-card:nth-of-type(2) { animation-delay: 1.28s; }
.toy-grid > .toy-card:nth-of-type(3) { animation-delay: 1.34s; }
.toy-grid > .toy-card:nth-of-type(4) { animation-delay: 1.4s; }
.toy-grid > .toy-card:nth-of-type(5) { animation-delay: 1.46s; }
.toy-grid > .toy-card:nth-of-type(6) { animation-delay: 1.52s; }
.toy-grid > .toy-card:nth-of-type(7) { animation-delay: 1.58s; }
.toy-grid > .toy-card:nth-of-type(8) { animation-delay: 1.64s; }
.toy-grid > .toy-card:nth-of-type(9) { animation-delay: 1.7s; }
.toy-grid > .toy-card:nth-of-type(10) { animation-delay: 1.76s; }
.toy-grid > .toy-card:nth-of-type(11) { animation-delay: 1.82s; }

.light-mode footer {
  color: rgba(31,31,31,0.58);
}

@media (min-width: 768px) {
  .links > .link-btn:nth-of-type(1),
  .links > .link-btn:nth-of-type(2) { animation-delay: 0.74s; }

  .links > .link-btn:nth-of-type(3),
  .links > .link-btn:nth-of-type(4) { animation-delay: 0.9s; }

  .links > .more-btn { animation-delay: 1.06s; }

  #hiddenLinks.show > a:nth-of-type(1),
  #hiddenLinks.show > a:nth-of-type(2) { animation-delay: 0.04s; }

  #hiddenLinks.show > a:nth-of-type(3),
  #hiddenLinks.show > a:nth-of-type(4) { animation-delay: 0.12s; }

  #hiddenLinks.show > a:nth-of-type(5) { animation-delay: 0.2s; }

  .toy-grid > .toy-card:nth-of-type(1),
  .toy-grid > .toy-card:nth-of-type(2) { animation-delay: 1.22s; }

  .toy-grid > .toy-card:nth-of-type(3),
  .toy-grid > .toy-card:nth-of-type(4) { animation-delay: 1.34s; }

  .toy-grid > .toy-card:nth-of-type(5),
  .toy-grid > .toy-card:nth-of-type(6) { animation-delay: 1.46s; }

  .toy-grid > .toy-card:nth-of-type(7),
  .toy-grid > .toy-card:nth-of-type(8) { animation-delay: 1.58s; }

  .toy-grid > .toy-card:nth-of-type(9),
  .toy-grid > .toy-card:nth-of-type(10) { animation-delay: 1.7s; }

  .toy-grid > .toy-card:nth-of-type(11) { animation-delay: 1.82s; }
}

@media (min-width: 1024px) {
  .toy-grid > .toy-card:nth-of-type(1),
  .toy-grid > .toy-card:nth-of-type(2),
  .toy-grid > .toy-card:nth-of-type(3) { animation-delay: 1.22s; }

  .toy-grid > .toy-card:nth-of-type(4),
  .toy-grid > .toy-card:nth-of-type(5),
  .toy-grid > .toy-card:nth-of-type(6) { animation-delay: 1.34s; }

  .toy-grid > .toy-card:nth-of-type(7),
  .toy-grid > .toy-card:nth-of-type(8),
  .toy-grid > .toy-card:nth-of-type(9) { animation-delay: 1.46s; }

  .toy-grid > .toy-card:nth-of-type(10),
  .toy-grid > .toy-card:nth-of-type(11) { animation-delay: 1.58s; }
}

/* Responsive layout */
@media (min-width: 768px) {
  .page {
    width: min(100%, 1100px);
    padding: 16px 32px 40px;
  }

  .links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .toy-card {
    max-width: 100%;
  }

  .toy-top {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 0;
  }

  .toy-visual {
    min-height: 126px;
    align-items: flex-start;
    padding: 4px 4px 0 8px;
  }

  .toy-brand-logo {
    width: 70px;
    height: 70px;
    padding: 11px;
    border-radius: 20px;
  }

  .toy-image-left {
    width: min(100%, 182px);
    height: 100px;
  }

  .toy-content-right > div {
    max-width: none;
    transform: none;
    min-height: 0;
  }

  .toy-title {
    margin-bottom: 6px;
    font-size: 1.18rem;
    line-height: 1;
  }

  .toy-desc {
    max-width: none;
    font-size: 0.76rem;
    min-height: 0;
  }

  .toy-cta-wrap {
    margin-top: 0;
    transform: none;
  }

  .btn-offer {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.94rem;
  }

  .code-box {
    margin-top: 8px;
    font-size: 0.74rem;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .page {
    width: min(100%, 1280px);
  }

  .toy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }

  .toy-card {
    height: 100%;
    padding: 12px 12px 9px;
    border-radius: 20px;
    min-height: 228px;
  }

  .toy-top {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 0;
  }

  .toy-visual {
    min-height: 120px;
    align-items: flex-start;
    padding: 2px 6px 0 6px;
  }

  .toy-brand-logo {
    width: 64px;
    height: 64px;
    padding: 10px;
    border-radius: 16px;
  }

  .toy-image-left {
    width: min(100%, 210px);
    height: 118px;
    object-position: center right;
  }

  .toy-content-right > div {
    max-width: none;
    transform: none;
    min-height: 100%;
  }

  .toy-title {
    margin-bottom: 4px;
    font-size: 1.08rem;
    line-height: 1;
  }

  .toy-desc {
    max-width: none;
    font-size: 0.74rem;
    line-height: 1.34;
    min-height: 0;
  }

  .toy-cta-wrap {
    margin-top: auto;
    padding-top: 15px;
    transform: none;
  }

  .btn-offer {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  .code-box {
    margin-top: 8px;
    font-size: 0.74rem;
    transform: none;
  }
}

@media (max-width: 860px) {
  .toy-card {
    padding: 18px 18px 16px;
    border-radius: 28px;
    min-height: 268px;
  }

  .toy-top {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 0;
  }

  .toy-visual {
    min-height: 144px;
    align-items: flex-start;
    padding: 8px 8px 0 12px;
  }

  .toy-brand-logo {
    width: 86px;
    height: 86px;
    padding: 14px;
    border-radius: 24px;
  }

  .toy-content-right > div {
    transform: none;
    min-height: 0;
  }

  .toy-image-left {
    width: min(100%, 238px);
    height: 150px;
  }

  .toy-title {
    margin-bottom: 10px;
    font-size: 1.9rem;
  }

  .toy-desc {
    max-width: none;
    font-size: 0.98rem;
    min-height: 0;
  }

  .toy-cta-wrap {
    margin-top: 16px;
    transform: none;
  }

  .btn-offer {
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 1.02rem;
  }

  .code-box {
    margin-top: 10px;
    font-size: 0.82rem;
  }
}

@media (min-width: 422px) and (max-width: 860px) {
  .toy-cta-wrap {
    margin-top: 16px;
  }
}

@media (min-width: 861px) and (max-width: 1023px) {
  .toy-card {
    min-height: 232px;
  }

  .toy-content-right > div {
    transform: none;
    min-height: 0;
  }

  .toy-desc {
    min-height: 0;
  }

  .toy-cta-wrap {
    margin-top: 15px;
  }
}

@media (max-width: 420px) {
  .follower-counter {
    min-height: 36px;
    padding: 0 11px;
  }

  .follower-number,
  .follower-label {
    font-size: 0.78rem;
  }

  .page {
    padding: 10px 14px 24px;
  }

  .reward-toggle,
  #theme-toggle {
    width: 46px;
    height: 46px;
  }

  .reward-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .reward-title {
    font-size: 1.48rem;
  }

  .reward-actions {
    grid-template-columns: 1fr;
  }

  .link-btn {
    min-height: 80px;
    padding: 15px 16px;
  }

  .platform-icon {
    width: 48px;
    height: 48px;
  }

  .link-title {
    font-size: 0.92rem;
  }

  .toy-brand-logo {
    width: 72px;
    height: 72px;
    padding: 12px;
    border-radius: 20px;
  }

  .toy-top {
    gap: 4px;
  }

  .toy-visual {
    min-height: 136px;
    padding: 6px 6px 0 10px;
  }

  .toy-image-left {
    width: min(100%, 208px);
    height: 134px;
  }

  .toy-title {
    font-size: 1.58rem;
  }

  .toy-desc {
    font-size: 0.88rem;
    min-height: 0;
  }

  .toy-cta-wrap {
    margin-top: 14px;
  }

  .toy-card {
    min-height: 252px;
  }

  .btn-offer {
    min-height: 52px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

  .code-box {
    margin-top: 8px;
    font-size: 0.74rem;
  }
}

@keyframes wheelColorDrift {
  0% {
    transform: scale(0.98) rotate(0deg);
    filter: blur(18px) saturate(1.18);
  }
  50% {
    transform: scale(1.04) rotate(14deg);
    filter: blur(20px) saturate(1.36);
  }
  100% {
    transform: scale(1.01) rotate(-10deg);
    filter: blur(18px) saturate(1.26);
  }
}

@keyframes drift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(0, -1.2%, 0);
  }
}

@keyframes hueDrift {
  0%, 100% {
    filter: saturate(1.14) brightness(1.02) hue-rotate(0deg);
  }
  50% {
    filter: saturate(1.24) brightness(1.04) hue-rotate(-10deg);
  }
  100% {
    filter: saturate(1.14) brightness(1.02) hue-rotate(0deg);
  }
}

@keyframes toyGlowDriftA {
  0% {
    transform: translate3d(72%, -10%, 0) scale(0.92);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(20%, 14%, 0) scale(1.02);
    opacity: 0.94;
  }
  100% {
    transform: translate3d(-26%, 38%, 0) scale(0.98);
    opacity: 0.84;
  }
}

@keyframes toyGlowDriftB {
  0% {
    transform: translate3d(58%, -18%, 0) scale(0.94);
    opacity: 0.78;
  }
  30% {
    transform: translate3d(8%, 6%, 0) scale(1.04);
    opacity: 0.92;
  }
  68% {
    transform: translate3d(-18%, 28%, 0) scale(0.97);
    opacity: 0.86;
  }
  100% {
    transform: translate3d(12%, 44%, 0) scale(1.01);
    opacity: 0.82;
  }
}

@keyframes toyGlowDriftC {
  0% {
    transform: translate3d(42%, -22%, 0) scale(0.9);
    opacity: 0.74;
  }
  25% {
    transform: translate3d(28%, 8%, 0) scale(1.01);
    opacity: 0.9;
  }
  60% {
    transform: translate3d(-12%, 30%, 0) scale(1.05);
    opacity: 0.94;
  }
  100% {
    transform: translate3d(-30%, 12%, 0) scale(0.96);
    opacity: 0.8;
  }
}

@keyframes toyGlowDriftD {
  0% {
    transform: translate3d(64%, -6%, 0) scale(0.98);
    opacity: 0.82;
  }
  35% {
    transform: translate3d(10%, 22%, 0) scale(1.02);
    opacity: 0.95;
  }
  72% {
    transform: translate3d(-22%, 42%, 0) scale(0.94);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(4%, -4%, 0) scale(1);
    opacity: 0.88;
  }
}

@keyframes codeCopiedSoft {
  0% {
    background: rgba(69, 233, 130, 0);
    border-color: rgba(69, 233, 130, 0);
    box-shadow: none;
    transform: translateY(2px) scale(1);
  }
  22% {
    background: rgba(69, 233, 130, 0.18);
    border-color: rgba(69, 233, 130, 0.55);
    box-shadow:
      0 0 0 4px rgba(69, 233, 130, 0.08),
      0 14px 30px rgba(69, 233, 130, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.18);
    transform: translateY(0) scale(1.035);
  }
  64% {
    background: rgba(69, 233, 130, 0.13);
    border-color: rgba(69, 233, 130, 0.38);
    transform: translateY(1px) scale(1.01);
  }
  100% {
    background: rgba(69, 233, 130, 0.13);
    border-color: rgba(69, 233, 130, 0.38);
    transform: translateY(2px) scale(1);
  }
}

@keyframes codeCopiedGreenCheck {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  22% {
    opacity: 1;
    transform: scale(1.08);
  }
  58% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1);
  }
}

@keyframes codeCopiedText {
  0% {
    letter-spacing: -0.01em;
  }
  22% {
    letter-spacing: 0.02em;
  }
  100% {
    letter-spacing: -0.01em;
  }
}

@keyframes linkGlowDriftA {
  0% {
    transform: translate3d(72%, -10%, 0) scale(0.92);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(18%, 8%, 0) scale(1.02);
    opacity: 0.88;
  }
  100% {
    transform: translate3d(-22%, 22%, 0) scale(0.98);
    opacity: 0.74;
  }
}

@keyframes linkGlowDriftB {
  0% {
    transform: translate3d(48%, -18%, 0) scale(0.9);
    opacity: 0.64;
  }
  40% {
    transform: translate3d(4%, 10%, 0) scale(1.04);
    opacity: 0.84;
  }
  100% {
    transform: translate3d(-28%, 6%, 0) scale(0.96);
    opacity: 0.72;
  }
}

@keyframes linkGlowDriftC {
  0% {
    transform: translate3d(66%, 4%, 0) scale(0.95);
    opacity: 0.62;
  }
  55% {
    transform: translate3d(14%, 24%, 0) scale(1.03);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-16%, -6%, 0) scale(0.98);
    opacity: 0.7;
  }
}

@keyframes linkGlowDriftD {
  0% {
    transform: translate3d(58%, -14%, 0) scale(0.94);
    opacity: 0.66;
  }
  35% {
    transform: translate3d(28%, 12%, 0) scale(1.01);
    opacity: 0.86;
  }
  100% {
    transform: translate3d(-24%, 24%, 0) scale(0.97);
    opacity: 0.72;
  }
}

@keyframes linkGlowDriftE {
  0% {
    transform: translate3d(-18%, 26%, 0) scale(0.92);
    opacity: 0.28;
  }
  35% {
    transform: translate3d(24%, -12%, 0) scale(1.04);
    opacity: 0.44;
  }
  100% {
    transform: translate3d(42%, 12%, 0) scale(0.96);
    opacity: 0.34;
  }
}

@keyframes linkGlowDriftF {
  0% {
    transform: translate3d(36%, -24%, 0) scale(0.88);
    opacity: 0.24;
  }
  45% {
    transform: translate3d(-8%, 8%, 0) scale(1.02);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(-28%, 34%, 0) scale(0.94);
    opacity: 0.3;
  }
}

@keyframes linkGlowDriftG {
  0% {
    transform: translate3d(12%, 30%, 0) scale(0.9);
    opacity: 0.26;
  }
  50% {
    transform: translate3d(38%, -6%, 0) scale(1.06);
    opacity: 0.46;
  }
  100% {
    transform: translate3d(-16%, -18%, 0) scale(0.92);
    opacity: 0.28;
  }
}

@keyframes linkGlowDriftH {
  0% {
    transform: translate3d(-10%, -20%, 0) scale(0.9);
    opacity: 0.22;
  }
  40% {
    transform: translate3d(18%, 18%, 0) scale(1.01);
    opacity: 0.4;
  }
  100% {
    transform: translate3d(46%, -8%, 0) scale(0.95);
    opacity: 0.3;
  }
}

@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes avatarReveal {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes avatarRainbowGlow {
  0% {
    transform: scale(0.98) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(180deg);
  }
  100% {
    transform: scale(0.98) rotate(360deg);
  }
}

@keyframes followerNumberTick {
  from {
    transform: translateY(0);
    opacity: 0.82;
  }
  to {
    transform: translateY(-1px);
    opacity: 1;
  }
}

@keyframes followerNumberComplete {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }
  36% {
    transform: translateY(-1px) scale(1.08);
    text-shadow: 0 0 14px rgba(255,255,255,0.28);
  }
  100% {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
