/* ── Catppuccin Macchiato ── */
:root {
  --base:     #24273a;
  --mantle:   #1e2030;
  --crust:    #181926;
  --surface0: #363a4f;
  --surface1: #494d64;
  --surface2: #5b5f77;
  --overlay0: #6e738d;
  --overlay1: #8087a2;
  --overlay2: #939ab7;
  --text:     #cad3f5;
  --subtext0: #a5adcb;
  --subtext1: #b8c0e0;
  --lavender: #b7bdf8;
  --blue:     #8aadf4;
  --sapphire: #7dc4e4;
  --sky:      #91d7e3;
  --teal:     #8bd5ca;
  --green:    #a6da95;
  --yellow:   #eed49f;
  --peach:    #f5a97f;
  --maroon:   #ee99a0;
  --red:      #ed8796;
  --mauve:    #c6a0f6;
  --pink:     #f5bde6;
  --flamingo: #f0c6c6;
  --rosewater:#f4dbd6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 106.25%;
  background-color: var(--base);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ══════════════════════════════
   AGE GATE
══════════════════════════════ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(24, 25, 38, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}

#age-gate.hidden {
  animation: fadeOut 0.5s ease forwards;
  pointer-events: none;
}

.age-gate-box {
  background: var(--mantle);
  border: 1px solid var(--surface1);
  border-radius: 24px;
  padding: 48px 56px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--surface0) inset;
  position: relative;
  overflow: hidden;
}

.age-gate-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mauve), var(--pink), var(--lavender));
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mauve), var(--pink));
  font-family: 'Poppins', sans-serif;
  font-size: 1.76rem;
  font-weight: 700;
  color: var(--crust);
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(198,160,246,0.3);
  animation: pulse 2s ease infinite;
}

.age-gate-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.age-gate-box p {
  color: var(--subtext0);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.age-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.age-btn-confirm {
  background: linear-gradient(135deg, var(--mauve), var(--pink));
  color: var(--crust);
  box-shadow: 0 4px 20px rgba(198,160,246,0.35);
}

.age-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198,160,246,0.5);
}

.age-btn-deny {
  background: transparent;
  color: var(--overlay1);
  text-decoration: underline;
  font-size: 0.88rem;
  display: block;
  margin-top: 14px;
  width: 100%;
}

.age-btn-deny:hover { color: var(--subtext0); }

/* ══════════════════════════════
   MAIN LAYOUT
══════════════════════════════ */
.page {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: pageReveal 0.8s ease 0.2s forwards;
}

/* ── Logo / Avatar ── */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.site-logo {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.88rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, var(--mauve) 0%, var(--pink) 50%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-bio {
  color: var(--subtext0);
  font-size: 0.94rem;
  text-align: center;
  max-width: 100%;
  line-height: 1.6;
}

/* ── Divider ── */
.divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 28px;
  color: var(--surface2);
  font-size: 0.71rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--surface1), transparent);
}

/* ══════════════════════════════
   PHOTO STRIP
══════════════════════════════ */
.strip-label {
  align-self: flex-start;
  font-size: 0.71rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--overlay0);
  margin-bottom: 14px;
}

.photo-strip-wrapper {
  width: calc(100% + 80px);
  margin-left: -8px;
  position: relative;
  margin-bottom: 48px;
  overflow: visible;
}

.photo-strip-wrapper::before,
.photo-strip-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.photo-strip-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--base), transparent);
}

.photo-strip-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--base), transparent);
}

.photo-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow: hidden;
  padding: 10px 40px 32px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--surface1) transparent;
  cursor: grab;
  user-select: none;
}

.photo-strip:active { cursor: grabbing; }

.photo-strip::-webkit-scrollbar { height: 4px; }
.photo-strip::-webkit-scrollbar-track { background: transparent; }
.photo-strip::-webkit-scrollbar-thumb {
  background: var(--surface1);
  border-radius: 4px;
}

.thumb {
  flex: 0 0 140px;
  height: 180px;
  border-radius: 14px;
  background: var(--surface0);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  border: 1px solid var(--surface1);
  z-index: 1;
}

.thumb:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 10px rgba(0,0,0,0.5), 0 0 0 1px var(--mauve);
}

.thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.thumb:hover img { transform: scale(1.08); }

.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  overflow: hidden;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,25,38,0.92) 0%, rgba(24,25,38,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  overflow: hidden;
}

.thumb:hover .thumb-overlay { opacity: 1; }

.thumb-overlay span {
  font-size: 0.71rem;
  color: var(--text);
  letter-spacing: 0.3px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.thumb-num {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(24,25,38,0.7);
  color: var(--lavender);
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 25, 38, 0.75);
  border: 2px solid var(--text);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  pointer-events: none;
  padding-left: 3px; /* optical centre for play triangle */
}

.thumb:hover .play-btn {
  background: var(--mauve);
  border-color: var(--mauve);
  color: var(--crust);
  transform: translate(-50%, -50%) scale(1.1);
}

.cta-card {
  flex: 0 0 180px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--surface0), var(--mantle));
  border: 1px solid var(--mauve);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  z-index: 1;
}

.cta-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 10px rgba(0,0,0,0.5), 0 0 0 1px var(--mauve);
  background: linear-gradient(135deg, var(--surface1), var(--surface0));
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px;
  text-align: center;
  height: 100%;
}

.cta-text {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.cta-arrow {
  color: var(--mauve);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-card:hover .cta-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(24, 25, 38, 0.95);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.8);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--surface1);
}

#lightbox.open .lightbox-content { transform: scale(1); }

#lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-placeholder {
  width: 70vw;
  max-width: 500px;
  height: 70vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(24,25,38,0.8);
  border: 1px solid var(--surface1);
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.lb-close:hover {
  background: var(--surface0);
  transform: rotate(90deg);
  border-color: var(--mauve);
  color: var(--mauve);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(24,25,38,0.8);
  border: 1px solid var(--surface1);
  color: var(--text);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.lb-nav:hover {
  background: var(--surface0);
  border-color: var(--mauve);
  color: var(--mauve);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--subtext0);
  font-size: 0.88rem;
  white-space: nowrap;
}

#lb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(24,25,38,0.95), transparent);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#lb-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.lb-cta {
  width: 70vw;
  max-width: 500px;
  height: 70vh;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px;
  text-align: center;
  background: var(--mantle);
}

.lb-cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}

.lb-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--mauve), var(--pink));
  color: var(--crust);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(198,160,246,0.35);
}

.lb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198,160,246,0.5);
}

.lb-replay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(24, 25, 38, 0.85);
  border: 2px solid var(--text);
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

.lb-replay.visible {
  opacity: 1;
  pointer-events: all;
}

.lb-replay:hover {
  background: var(--mauve);
  border-color: var(--mauve);
  color: var(--crust);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ══════════════════════════════
   LINKS SECTION
══════════════════════════════ */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 16px;
  background: var(--mantle);
  border: 1px solid var(--surface0);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease backwards;
}

.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.link-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.link-card:hover {
  transform: translateX(4px) scale(1.01);
  border-color: var(--surface1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.link-card:hover::before { opacity: 1; }
.link-card:hover::after  { opacity: 1; }

.link-card[data-platform="onlyfans"]::after   { background: #00aff0; }
.link-card[data-platform="onlyfans"]:hover    { border-color: #00aff055; }
.link-card[data-platform="chaturbate"]::after { background: var(--peach); }
.link-card[data-platform="chaturbate"]:hover  { border-color: #f5a97f55; }
.link-card[data-platform="bluesky"]::after    { background: #0085ff; }
.link-card[data-platform="bluesky"]:hover     { border-color: #0085ff55; }
.link-card[data-platform="reddit"]::after     { background: #ff4500; }
.link-card[data-platform="reddit"]:hover      { border-color: #ff450055; }

.link-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-icon svg { width: 22px; height: 22px; }

.link-card[data-platform="onlyfans"]   .link-icon { background: rgba(0,175,240,0.12);   color: #00aff0; }
.link-card[data-platform="chaturbate"] .link-icon { background: rgba(245,169,127,0.12); color: var(--peach); }
.link-card[data-platform="bluesky"]    .link-icon { background: rgba(0,133,255,0.12);   color: #0085ff; }
.link-card[data-platform="reddit"]     .link-icon { background: rgba(255,69,0,0.12);    color: #ff4500; }

.link-card[data-platform="onlyfans"] .link-icon svg {
  width: 36px;
  height: 36px;
}

.link-text { flex: 1; }

.link-name {
  font-weight: 500;
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}

.link-handle {
  font-size: 0.82rem;
  color: var(--overlay1);
}

.link-arrow {
  color: var(--overlay0);
  font-size: 0.82rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.link-card:hover .link-arrow {
  transform: translateX(3px);
  color: var(--subtext0);
}

/* ── Footer ── */
.footer {
  margin-top: 48px;
  color: var(--overlay0);
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.footer span { color: var(--mauve); }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut   { from { opacity: 1; } to { opacity: 0; } }

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(198,160,246,0.3); }
  50%       { box-shadow: 0 8px 48px rgba(198,160,246,0.5); }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 600px) {
  body { font-size: 100%; }
  .age-gate-box { padding: 36px 28px; }
}
