/* ============================================
   LINNEA TORRES — Premium Link-in-Bio Styles
   ============================================ */

/* ========== RESET & ROOT ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:     #030305;
  --dark:      #0a0a0f;
  --dark-2:    #111118;
  --dark-3:    #1a1a24;
  --glass:     rgba(255,255,255,0.04);
  --glass-b:   rgba(255,255,255,0.08);
  --white:     #ffffff;
  --white-70:  rgba(255,255,255,0.70);
  --white-40:  rgba(255,255,255,0.40);
  --white-20:  rgba(255,255,255,0.20);
  --white-10:  rgba(255,255,255,0.10);
  --white-05:  rgba(255,255,255,0.05);
  --accent:    #c8a96e;       /* warm gold */
  --accent-2:  #e8c98e;       /* lighter gold */
  --accent-3:  #8b5cf6;       /* purple accent */
  --accent-4:  #ec4899;       /* pink */
  --border:    rgba(255,255,255,0.08);
  --shadow:    0 25px 80px rgba(0,0,0,0.7);
  --ff-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', -apple-system, sans-serif;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
  --trans-fast: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-sans);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 99999;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white-70);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.lang-switcher__btn:hover {
  background: rgba(10,10,15,0.95);
  border-color: var(--accent);
  color: var(--white);
}

.lang-switcher__flag {
  font-size: 16px;
  line-height: 1;
}

.lang-switcher__code {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switcher__arrow {
  font-size: 10px;
  transition: transform 0.3s var(--transition);
  opacity: 0.5;
}

.lang-switcher__btn[aria-expanded="true"] .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.25s var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.lang-switcher__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--white-70);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.lang-option:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.lang-option.active {
  background: rgba(200,169,110,0.1);
  color: var(--accent);
  font-weight: 500;
}

.lang-option__flag {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 480px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
  }
  .lang-switcher__btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .lang-switcher__flag {
    font-size: 14px;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ========== NOISE OVERLAY ========== */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}


/* ========== AMBIENT BACKGROUND ========== */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: orbFloat 0.8s ease forwards;
}

.ambient-orb--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  animation-delay: 0.3s;
}
.ambient-orb--2 {
  width: 500px; height: 500px;
  bottom: 10%; left: -150px;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%);
  animation-delay: 0.6s;
}
.ambient-orb--3 {
  width: 400px; height: 400px;
  top: 50%; right: -100px;
  background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 70%);
  animation-delay: 0.9s;
}

@keyframes orbFloat {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}


/* ========== AGE MODAL (18+) ========== */
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-modal.hidden { display: none; }

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,5,0.97);
  backdrop-filter: blur(20px);
}

.age-modal__content {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,36,0.95) 0%, rgba(17,17,24,0.98) 100%);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 24px;
  padding: 52px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: modalIn 0.6s var(--transition) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-modal__logo {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 40px rgba(200,169,110,0.4);
}

.age-modal__label {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.age-modal__title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.age-modal__text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 32px;
}

.age-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-modal__btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--transition);
}

.age-modal__btn--yes {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(200,169,110,0.4);
}

.age-modal__btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.6);
}

.age-modal__btn--no {
  background: transparent;
  color: var(--white-40);
  border: 1px solid var(--border);
}

.age-modal__btn--no:hover {
  background: var(--glass);
  color: var(--white-70);
}

.age-modal__footer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--white-40);
}


/* ========== SECTION TYPOGRAPHY ========== */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 14px;
  color: var(--white-40);
}


/* ========== HERO SECTION ========== */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 24px 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  animation: heroIn 1.2s var(--transition) both;
}

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

/* Avatar */
.hero__avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
}

.hero__avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3), var(--accent-4), var(--accent));
  background-size: 300% 300%;
  animation: ringRotate 4s linear infinite;
  z-index: 0;
}

@keyframes ringRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__avatar {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--black);
}

.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__avatar-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 2;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--black);
}

/* Info */
.hero__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 100px;
  padding: 6px 14px;
}

.hero__verified svg { width: 14px; height: 14px; }

.hero__name {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__handle {
  font-size: 15px;
  color: var(--white-40);
  letter-spacing: 0.05em;
}

.hero__bio {
  font-size: 16px;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 400px;
}

.hero__bio-sub {
  font-size: 14px;
  color: var(--white-40);
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 16px 32px;
  backdrop-filter: blur(10px);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__stat-num {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.hero__stat-lbl {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
}

.hero__stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Scroll indicator */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-4) 0%, #d63889 100%);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(236,72,153,0.4);
  margin-top: 8px;
}

.hero__cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(236,72,153,0.6);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, var(--dark) 10%, var(--dark) 90%, transparent);
}

.gallery-section__header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 52px;
}

/* Gallery wrapper */
.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* Gradient fade edges */
.gallery-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}

.gallery-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}

.gallery-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}

/* Gallery track (scrolling strip) */
.gallery-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  user-select: none;
}

/* Gallery items */
.gallery-item {
  flex: 0 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition);
  transform-style: preserve-3d;
  /* Photo dimensions */
  height: 260px;
  width: 200px;
}

.gallery-track--reverse .gallery-item {
  height: 260px;
  width: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition), filter 0.5s ease;
  filter: brightness(0.92);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::before { opacity: 1; }

/* Click overlay */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  transform: scale(0.7);
  transition: transform 0.4s var(--transition);
}

.gallery-item:hover .gallery-item__overlay-icon {
  transform: scale(1);
}

/* Elementy w taśmach — tylko dekoracja, bez interakcji */
.gallery-item--strip {
  cursor: default;
  pointer-events: none;
}
.gallery-item--strip .gallery-item__overlay { display: none; }
.gallery-item--strip:hover { transform: none; box-shadow: none; }
.gallery-item--strip:hover img { transform: none; filter: brightness(0.92); }

/* Lazy loading fade-in */
.gallery-item img {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s var(--transition), filter 0.5s ease;
}
.gallery-item img.loaded { opacity: 1; }

/* Toggle button */
.gallery-toggle-wrap {
  text-align: center;
  margin-top: 44px;
  position: relative;
  z-index: 12;
}

.gallery-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 100px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.gallery-toggle-btn:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.7);
  transform: translateY(-2px);
}

.gallery-toggle-btn__arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-toggle-btn.open .gallery-toggle-btn__arrow {
  transform: rotate(180deg);
}

/* Expandable grid */
.gallery-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.5s ease,
              margin-top 0.5s ease;
}

.gallery-all.open {
  max-height: 5000px;
  opacity: 1;
  margin-top: 40px;
}

.gallery-all .gallery-item {
  width: 100%;
  height: 280px;
  flex: unset;
}

@media (max-width: 700px) {
  .gallery-all { grid-template-columns: repeat(2, 1fr); }
  .gallery-all .gallery-item { height: 200px; }
}


/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,5,0.95);
  backdrop-filter: blur(24px);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: scale(0.88);
  transition: transform 0.5s var(--transition);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__counter {
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 0.1em;
}

.lightbox__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: var(--glass-b);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox__close:hover {
  background: var(--white-20);
  transform: scale(1.1);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  background: var(--glass-b);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox__nav:hover {
  background: var(--white-20);
  transform: translateY(-50%) scale(1.1);
}

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


/* ========== LINKS SECTION ========== */
.links-section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.links-section .section-label,
.links-section .section-title {
  text-align: center;
}

.links-section .section-title {
  margin-bottom: 52px;
}

.links-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* Link card */
.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--transition), border-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
}

.link-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.link-card:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Platform-specific border accents */
.link-card--featured {
  background: linear-gradient(135deg, rgba(236,72,153,0.13) 0%, rgba(26,26,36,0.97) 60%);
  border-color: rgba(236,72,153,0.35);
  padding: 26px 28px;
  box-shadow: 0 0 40px rgba(236,72,153,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.link-card--featured .link-card__platform { font-size: 18px; }
.link-card--featured .link-card__desc { color: var(--white-70); font-size: 14px; }

.link-card__featured-badge {
  position: absolute;
  top: 14px; right: 68px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-4);
  background: rgba(236,72,153,0.15);
  border: 1px solid rgba(236,72,153,0.35);
  border-radius: 100px;
  padding: 3px 10px;
  z-index: 2;
}

.link-card__icon--featured {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.link-card__icon--featured img { width: 34px; height: 34px; }

.link-card__arrow--featured {
  font-size: 22px;
  color: var(--accent-4);
}

/* Platform-specific border accents */
.link-card--fanvue:hover  { border-color: rgba(236,72,153,0.4); box-shadow: 0 20px 60px rgba(236,72,153,0.15); }
.link-card--feetfinder:hover { border-color: rgba(200,169,110,0.4); box-shadow: 0 20px 60px rgba(200,169,110,0.15); }
.link-card--x:hover       { border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 60px rgba(255,255,255,0.05); }
.link-card--tiktok:hover  { border-color: rgba(105,243,224,0.3); box-shadow: 0 20px 60px rgba(105,243,224,0.1); }

/* Glow effect */
.link-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.link-card--fanvue .link-card__glow {
  background: radial-gradient(circle at 0% 50%, rgba(236,72,153,0.08) 0%, transparent 70%);
}
.link-card--feetfinder .link-card__glow {
  background: radial-gradient(circle at 0% 50%, rgba(200,169,110,0.08) 0%, transparent 70%);
}
.link-card--x .link-card__glow {
  background: radial-gradient(circle at 0% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.link-card--tiktok .link-card__glow {
  background: radial-gradient(circle at 0% 50%, rgba(105,243,224,0.06) 0%, transparent 70%);
}

.link-card:hover .link-card__glow { opacity: 1; }

/* Icon */
.link-card__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: var(--glass-b);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.link-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Info */
.link-card__info {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-card__platform {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.link-card__desc {
  font-size: 13px;
  color: var(--white-40);
}

/* Badge 18+ */
.link-card__badge {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 100px;
}

.link-card__badge--18 {
  background: rgba(236,72,153,0.15);
  color: var(--accent-4);
  border: 1px solid rgba(236,72,153,0.3);
}

/* Arrow */
.link-card__arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: var(--white-40);
  transition: transform 0.3s ease, color 0.3s ease;
}

.link-card:hover .link-card__arrow {
  transform: translateX(4px);
  color: var(--white);
}

/* Shine sweep */
.link-card__shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--transition);
  pointer-events: none;
  z-index: 0;
}

.link-card:hover .link-card__shine { left: 140%; }


/* ========== LINK PREVIEW PANEL ========== */
.link-card-wrap {
  display: flex;
  flex-direction: column;
}

.link-preview-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 18px 18px;
  color: var(--white-40);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.link-preview-toggle:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white-70);
}

.link-preview-toggle--pink {
  border-color: rgba(236,72,153,0.2);
  color: rgba(236,72,153,0.5);
}

.link-preview-toggle--pink:hover {
  background: rgba(236,72,153,0.06);
  color: rgba(236,72,153,0.8);
  border-color: rgba(236,72,153,0.35);
}

.link-preview-toggle__arrow {
  display: inline-block;
  transition: transform 0.35s var(--transition);
}

.link-preview-toggle[aria-expanded="true"] .link-preview-toggle__arrow {
  transform: rotate(180deg);
}

.link-preview-toggle[aria-expanded="true"] {
  color: var(--white-70);
  background: rgba(255,255,255,0.05);
}

/* Panel */
.link-preview {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s var(--transition), opacity 0.4s ease;
}

.link-preview.open {
  max-height: 600px;
  opacity: 1;
}

.link-preview__inner {
  padding: 20px 24px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 18px 18px;
  margin-top: -2px;
}

.link-preview__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--white-40);
  margin-bottom: 16px;
}

.link-preview__text strong {
  color: var(--white-70);
  font-weight: 600;
}

.link-preview__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.link-preview__photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--transition), border-color 0.3s ease;
}

.link-preview__photos img:hover {
  transform: scale(1.03);
  border-color: rgba(200,169,110,0.4);
}

/* Keep card's bottom corners sharp when toggle is attached */
.link-card-wrap .link-card {
  border-radius: 18px 18px 0 0;
}


/* ========== LINK MODAL (18+ gate) ========== */
.link-modal {
  position: fixed;
  inset: 0;
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.link-modal.active {
  opacity: 1;
  pointer-events: all;
}

.link-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,5,0.85);
  backdrop-filter: blur(16px);
}

.link-modal__content {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(236,72,153,0.2);
  border-radius: 20px;
  padding: 44px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s var(--transition);
}

.link-modal.active .link-modal__content {
  transform: translateY(0) scale(1);
}

.link-modal__icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.link-modal__title {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}

.link-modal__text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 28px;
}

.link-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-modal__btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.link-modal__btn--yes {
  background: linear-gradient(135deg, var(--accent-4), #f472b6);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(236,72,153,0.35);
}

.link-modal__btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(236,72,153,0.5);
}

.link-modal__btn--no {
  background: transparent;
  color: var(--white-40);
  border: 1px solid var(--border);
}

.link-modal__btn--no:hover {
  background: var(--glass);
  color: var(--white-70);
}


/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(17,17,24,0.6) 20%, rgba(17,17,24,0.6) 80%, transparent);
}

.about-section .section-label,
.about-section .section-title {
  text-align: center;
}

.about-section .section-title {
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-text { display: flex; flex-direction: column; gap: 20px; }

.about-quote {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.about-desc {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
}

.about-desc strong { color: var(--white); font-weight: 500; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 100px;
  padding: 6px 14px;
}

/* About photos */
.about-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 400px;
}

.about-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.6s var(--transition);
  width: 100%;
  height: 100%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo--main {
  grid-row: 1 / 3;
  border: 1px solid var(--border);
  transform: rotate(-1.5deg);
}

.about-photo--main:hover { transform: rotate(-1.5deg) scale(1.02) translateY(-5px); }

.about-photo--secondary {
  border: 1px solid var(--border);
  transform: rotate(1.5deg);
}

.about-photo--secondary:hover { transform: rotate(1.5deg) scale(1.02) translateY(-4px); }

.about-photo--accent {
  border: 1px solid rgba(200,169,110,0.25);
  transform: rotate(-1deg);
}

.about-photo--accent:hover { transform: rotate(-1deg) scale(1.02) translateY(-4px); }


/* ========== FOOTER ========== */
.footer {
  padding: 48px 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  color: var(--white-40);
  transition: color 0.3s ease;
}

.footer__link:hover { color: var(--white); }

.footer__legal {
  font-size: 12px;
  color: var(--white-40);
}


/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
  .hero__stats {
    padding: 12px 20px;
    gap: 16px;
  }

  .hero__stat-num { font-size: 18px; }

  .gallery-item { height: 200px; width: 150px; }
  .gallery-track--reverse .gallery-item { height: 200px; width: 150px; }

  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  .link-card { padding: 16px 18px; gap: 14px; }
  .link-card__platform { font-size: 14px; }

  .about-photos { height: 260px; gap: 10px; }
}

@media (min-width: 768px) {
  .gallery-item { height: 300px; width: 230px; }
  .gallery-track--reverse .gallery-item { height: 300px; width: 230px; }
}

/* ═══════════════════════════════════════════
   THRONE WISHLIST — SECTION
═══════════════════════════════════════════ */
.throne-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(17,17,24,0.7) 20%, rgba(17,17,24,0.7) 80%, transparent);
  position: relative;
  overflow: hidden;
}

.throne-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 55% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.throne-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.35), transparent);
}

/* ---- CARD GRID ---- */
.throne-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- PHOTO ---- */
.throne-card__photo {
  position: relative;
}

.throne-card__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  filter: brightness(0.95) saturate(1.1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.throne-card__photo:hover img {
  transform: scale(1.02);
  filter: brightness(1.02) saturate(1.2);
}

.throne-card__photo-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(200,169,110,0.45), rgba(232,201,142,0.2), rgba(200,169,110,0.35));
  z-index: -1;
  filter: blur(18px);
  opacity: 0.65;
  animation: throne-glow-pulse 4s ease-in-out infinite;
}

@keyframes throne-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.03); }
}

/* ---- CONTENT ---- */
.throne-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.throne-card__label {
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a78bfa;
  margin: 0;
}

.throne-card__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f3e8ff;
  margin: 0;
  letter-spacing: -0.01em;
}

.throne-card__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.throne-card__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(220, 200, 240, 0.8);
  margin: 0;
}

/* ---- BUTTON ---- */
.throne-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--dark);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 30px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 6px 28px rgba(200,169,110,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-self: flex-start;
}

.throne-card__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(200,169,110,0.55);
}

.throne-card__btn:active {
  transform: translateY(0) scale(0.99);
}

.throne-card__btn svg {
  transition: transform 0.25s ease;
}

.throne-card__btn:hover svg {
  transform: translateX(4px);
}

/* ---- GIFT CARDS ---- */
.throne-gifts {
  display: flex;
  gap: 10px;
}

.throne-gift {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.throne-gift:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.5);
  box-shadow: 0 8px 24px rgba(200,169,110,0.15);
}

.throne-gift__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-2);
}

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

.throne-gift:hover .throne-gift__img img {
  transform: scale(1.06);
}

.throne-gift__info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.throne-gift__name {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.throne-gift__price {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ---- CREDIT ---- */
.throne-card__credit {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(200,169,110,0.45);
  margin: 0;
  text-align: left;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .throne-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .throne-card__photo img {
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }
  .throne-card__content {
    gap: 16px;
  }
  .throne-card__btn {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .throne-section {
    padding: 70px 0;
  }
  .throne-card__title {
    font-size: 2.2rem;
  }
}
