
:root {
  --cloud: #11101a;
  --ice: rgba(32, 28, 46, 0.82);
  --glass: rgba(25, 22, 36, 0.72);
  --glass-strong: rgba(39, 31, 53, 0.86);
  --ink: #f1e7d8;
  --muted: #b7a9bd;
  --accent: #c95b9f;
  --accent-2: #7563c9;
  --mocca: rgba(191, 111, 72, 0.55);
  --gold: #e3ad63;
  --line: rgba(241, 231, 216, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.34);
}


* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(117, 99, 201, 0.26), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(201, 91, 159, 0.22), transparent 30%),
    radial-gradient(circle at 58% 88%, rgba(191, 111, 72, 0.16), transparent 34%),
    linear-gradient(135deg, #09090f, var(--cloud));
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

.neural-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    radial-gradient(circle, rgba(227, 173, 99, 0.30) 1.5px, transparent 2px),
    linear-gradient(35deg, transparent 48%, rgba(117, 99, 201, 0.18) 49%, rgba(117, 99, 201, 0.18) 51%, transparent 52%),
    linear-gradient(145deg, transparent 48%, rgba(201, 91, 159, 0.16) 49%, rgba(201, 91, 159, 0.16) 51%, transparent 52%);
  background-size: 96px 96px, 160px 160px, 190px 190px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
  position: relative;
}

.fade-in { animation: fadeInUp 760ms ease both; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(241, 231, 216, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin-bottom: 28px;
}

.main-nav {
  min-height: 70px;
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--mocca));
  box-shadow: 0 12px 28px rgba(31, 122, 140, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(31, 122, 140, 0.12);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(38, 32, 52, .84);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
  gap: 34px;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.subtitle {
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--accent-2);
  font-weight: 700;
}

.intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.interest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.interest-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-2);
  font-weight: 800;
  font-size: 0.94rem;
}

.portrait-card {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(39,31,53,.88), rgba(18,17,28,.92));
  border: 1px solid rgba(241,231,216,.12);
}

.portrait-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.portrait {
  width: min(230px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: url('avatar.png');
  background-image: image-set(url('avatar.avif') type('image/avif'), url('avatar.png') type('image/png'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(241,231,216,.12);
  box-shadow: inset 0 0 36px rgba(201,91,159,.10), var(--shadow-soft);
  overflow: hidden;
}

.profiles, .discover { margin-top: 46px; }
.profiles h2, .discover h2, .ai-note h2, .content-card h1, .gallery-section h1 {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.profile-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  border-color: rgba(201, 91, 159, 0.42);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(241,231,216,.12);
}
.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flickr svg { fill: var(--accent); stroke: none; }
.profile-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.profile-card p { margin: 0 0 14px; color: var(--muted); line-height: 1.55; }
.profile-card strong { color: var(--accent); }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.discover-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: var(--ink);
  text-decoration: none;
  background-position: center;
  background-size: cover;
  transition: transform 180ms ease, border-color 180ms ease;
}
.discover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7,6,12,.96), rgba(7,6,12,.18));
}
.discover-card:hover { transform: translateY(-5px); border-color: rgba(201,91,159,.42); }
.discover-gallery { background-image: url('gallery.jpg'); background-image: image-set(url('gallery.avif') type('image/avif'), url('gallery.jpg') type('image/jpeg')); }
.discover-music { background-image: url('band.png'); background-image: image-set(url('band.avif') type('image/avif'), url('band.png') type('image/png')); }
.discover-label { color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.discover-card h3 { margin: 8px 0; font-size: 1.7rem; }
.discover-card p { max-width: 470px; margin: 0 0 18px; color: var(--muted); line-height: 1.55; }
.discover-card strong { color: var(--accent); }

.ai-note {
  width: fit-content;
  max-width: 760px;
  margin: 28px auto 0;
  border-radius: 22px;
  padding: 18px 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ai-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  font-size: 1.55rem;
}
.ai-note p { margin: 0; color: var(--muted); line-height: 1.7; }
.ai-note h2 { margin: 0 0 6px; font-size: 1.15rem; }

/* Gallery */
.gallery-section, .content-card {
  border-radius: 34px;
  padding: clamp(26px, 5vw, 52px);
}
.gallery-intro {
  color: var(--muted);
  margin: -4px 0 32px;
  font-size: 1.08rem;
}
.flickr-albums {
  display: grid;
  gap: 48px;
}
.flickr-album-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.flickr-album-heading h2 { margin: 0; }
.flickr-album-heading a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.flickr-album-heading a:hover { color: var(--accent-2); }
.gallery-loading, .gallery-error {
  margin: 0;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.gallery-item {
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.05) contrast(1.02); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 6, 12, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.18);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox-close {
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  border-radius: 18px;
  font-size: 52px;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.content-card img {
  display: block;
  max-width: min(680px, 100%);
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: #14111f;
}


/* Home banner */
.home-banner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  margin: -6px 0 30px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(34,28,48,.92), rgba(15,14,24,.88)),
    radial-gradient(circle at 18% 18%, rgba(117,99,201,.25), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(201,91,159,.24), transparent 34%);
  border-color: rgba(241,231,216,.14);
}

.home-banner::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 30%, rgba(201,91,159,.10) 58%, transparent 76%),
    radial-gradient(circle at 8% 100%, rgba(117,99,201,.20), transparent 34%);
  opacity: .86;
  z-index: 2;
}

.home-banner::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -18px;
  height: 46px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.46), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.banner-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: clamp(210px, 30vw, 355px);
  background: rgba(255,255,255,.05);
  isolation: isolate;
}

.banner-frame img {
  display: block;
  width: 100%;
  height: clamp(210px, 30vw, 355px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.06) brightness(.84);
}
.banner-copy {
  position: absolute;
  left: clamp(22px, 5vw, 54px);
  bottom: clamp(22px, 5vw, 48px);
  z-index: 3;
}
.banner-copy p { margin: 0 0 7px; color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.arch-frame {
  position: relative;   
  overflow: hidden;
  border-radius: 26px;
  min-height: clamp(500px, 30vw, 550px);
  background: rgba(255,255,255,.05);
  isolation: isolate;
}

.arch-frame img {  
  display: block;
  width: 100%;
  height: clamp(500px, 30vw, 550px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.06) brightness(.84);
}
.home-story { margin: 46px 0 0; }
.story-copy {
  position: absolute;
  left: clamp(24px, 6vw, 64px);
  right: clamp(24px, 6vw, 64px);
  bottom: clamp(26px, 6vw, 60px);
  z-index: 3;
  max-width: 680px;
}
.story-copy h2 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.05em; }
.story-copy > p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.banner-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(227,173,99,.12), transparent 28%),
    linear-gradient(to bottom, transparent 40%, rgba(6,5,12,.46));
  pointer-events: none;
  z-index: 1;
}

.banner-scanline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.08) 0 1px, transparent 1px 8px);
  mix-blend-mode: soft-light;
  opacity: .44;
  pointer-events: none;
  z-index: 1;
}

.banner-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.banner-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(9, 8, 15, .56);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}

@media (max-width: 680px) {
  .home-banner {
    border-radius: 24px;
    margin: -2px 0 22px;
    padding: 7px;
  }

  .banner-frame {
    border-radius: 19px;
    min-height: 245px;
  }

  .banner-frame img {
    height: 245px;
    object-position: center;
  }

  .banner-meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 7px;
  }

  .banner-meta span {
    padding: 7px 9px;
    font-size: .68rem;
  }
}


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

@media (max-width: 880px) {
  .hero, .profile-grid, .discover-grid { grid-template-columns: 1fr; }
  .portrait-card { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 680px) {
  .page-shell { width: min(100% - 20px, 1120px); padding: 14px 0 32px; }
  .site-header { top: 10px; }
  .main-nav { border-radius: 24px; padding: 10px; }
  .brand { padding-left: 4px; }
  .brand span:last-child { max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 92px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(18, 16, 28, .96);
    border: 1px solid rgba(241,231,216,.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 15px 18px; background: rgba(255,255,255,.06); }
  .hero, .profile-card, .ai-note, .gallery-section, .content-card { border-radius: 22px; }
  .ai-note { flex-direction: column; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 58px; font-size: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}


/* Music */
.music-hero {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 34px;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(7, 6, 12, .68), rgba(7, 6, 12, .22)),
    url('band.png');
  background-image:
    linear-gradient(90deg, rgba(7, 6, 12, .68), rgba(7, 6, 12, .22)),
    image-set(url('band.avif') type('image/avif'), url('band.png') type('image/png'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  position: relative;
}
.music-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% 35%;
  height: 340px;
  background: radial-gradient(circle, rgba(201,91,159,.20), transparent 65%);
  pointer-events: none;
}
.music-orb {
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}
.music-orb p {
  margin: 220px 0 0;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .9rem;
}
.orb-ring {
  position: absolute;
  width: min(260px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(227,173,99,.18) 0 1px, transparent 2px 13px),
    conic-gradient(from 20deg, rgba(117,99,201,.28), rgba(201,91,159,.36), rgba(191,111,72,.26), rgba(117,99,201,.22));
  box-shadow: inset 0 0 55px rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.36);
}
.orb-core {
  width: 118px;
  height: 118px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: white;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--mocca));
  box-shadow: 0 22px 54px rgba(31,122,140,.26);
  z-index: 1;
}
.music-section {
  margin-top: 46px;
}
.music-section h2, .spotify-section h2 {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.playlist-card {
  min-height: 300px;
  border-radius: 28px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.playlist-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% 28%;
  height: 220px;
  background: radial-gradient(circle, rgba(201,91,159,.20), transparent 68%);
  pointer-events: none;
}
.playlist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  border-color: rgba(201, 91, 159, 0.42);
}
.playlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
  color: var(--accent-2);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
}
.playlist-icon {
  width: 74px;
  height: 74px;
  margin: 34px 0 22px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--mocca));
  box-shadow: 0 18px 42px rgba(31,122,140,.24);
}
.playlist-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  letter-spacing: -0.04em;
}
.playlist-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
}
.playlist-card strong { color: var(--accent); }
.spotify-section {
  margin-top: 28px;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 38px);
}
.spotify-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}
.spotify-badge {
  background: rgba(201,91,159,.12);
  color: var(--accent);
}
.spotify-frame {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.05);
}
.spotify-frame iframe {
  display: block;
  border: 0;
}

@media (max-width: 880px) {
  .music-hero, .playlist-grid { grid-template-columns: 1fr; }
  .music-orb { min-height: 260px; }
}

@media (max-width: 680px) {
  .flickr-album-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .music-hero, .playlist-card, .spotify-section { border-radius: 22px; }
  .spotify-header { flex-direction: column; }
  .spotify-frame iframe { height: 430px; }
}


/* Playlist cover cards */
.playlist-card-image {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: rgba(241, 231, 216, 0.18);
}

.playlist-lieblinge {
  background-image: url('music.png');
}

.playlist-jazz {
  background-image: url('jazz.png');
}

.playlist-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  height: auto;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 6, 12, 0.04) 0%,
      rgba(7, 6, 12, 0.10) 38%,
      rgba(7, 6, 12, 0.78) 72%,
      rgba(7, 6, 12, 0.96) 100%
    );
  pointer-events: none;
}

.playlist-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(117, 99, 201, 0.10), transparent 42%),
    radial-gradient(circle at 84% 16%, rgba(201, 91, 159, 0.12), transparent 34%);
  pointer-events: none;
}

.playlist-card-image .playlist-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--ink);
  background: rgba(9, 8, 15, 0.58);
  border-color: rgba(241, 231, 216, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.playlist-card-image h3,
.playlist-card-image p,
.playlist-card-image strong {
  position: relative;
  z-index: 1;
}

.playlist-card-image h3 {
  color: #fff8ee;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.playlist-card-image p {
  color: rgba(241, 231, 216, 0.84);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.playlist-card-image strong {
  color: var(--gold);
}

.playlist-card-image:hover {
  background-size: 106%;
}

@media (max-width: 680px) {
  .playlist-card-image {
    min-height: 390px;
  }

  .playlist-card-image:hover {
    background-size: cover;
  }
}
