/* Minimal, clean, responsive styles */
:root {
  --bg: #0b0c10;
  --card: #121317;
  --text: #e6e6e6;
  --muted: #a5a5a5;
  --accent: #7dd3fc;
  --border: #2a2b31;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
html, body { margin: 0; padding: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, Apple Color Emoji, Segoe UI Emoji; background: var(--bg); color: var(--text); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1000px; margin: 0 auto; padding: 1.2rem; }

.site-header { border-bottom: 1px solid var(--border); position: sticky; top: 0; backdrop-filter: blur(8px); background: rgba(11,12,16,0.7); z-index: 100; }
.site-title { font-size: 1.8rem; margin: 0 0 .25rem; }
.site-subtitle { margin: 0 0 .75rem; color: var(--muted); }
.site-nav { display: flex; flex-wrap: wrap; gap: .75rem; padding-bottom: .4rem; }
.site-nav a {
  --roundness: 999px;
  --color: #a78bfa;
  padding: .35rem .8rem;
  border: 2px solid transparent;
  border-radius: var(--roundness);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  color: var(--color);
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.site-nav a::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--roundness);
  padding: 2px;
  background: linear-gradient(90deg, 
    transparent,
    var(--color),
    transparent,
    var(--color),
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  filter: blur(4px) drop-shadow(0 0 8px var(--color));
  animation: border-rotate 3s linear infinite;
  animation-play-state: paused;
  transition: opacity 0.3s;
}
.site-nav a:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  filter: brightness(1.2);
  text-decoration: none;
}
.site-nav a:hover::before {
  opacity: 0.8;
  animation-play-state: running;
}
.site-nav a:active::before {
  opacity: 0;
}

/* CV link special styling */
.site-nav a.cv-link {
  --color: #34d399;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  color: #34d399;
}

.site-nav a.cv-link:hover {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.35) 0%, rgba(16, 185, 129, 0.35) 100%);
}

@keyframes border-rotate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

main section { padding: 2rem 0; border-bottom: 1px dashed var(--border); }
h2 { margin: 0 0 1rem; font-size: 1.4rem; }
.meta, .list { margin: .5rem 0 0 1rem; color: var(--muted); }
.hint { color: var(--muted); font-size: .9rem; }

.about-content { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-image { flex-shrink: 0; text-align: center; max-width: 200px; }
.about-image img { width: 200px; height: 300px; object-fit: cover; border-radius: 16px; border: 2px solid var(--border); }
.about-image img.clickable-image { 
  cursor: pointer; 
  transition: all 0.3s ease;
}
.about-image img.clickable-image:hover {
  transform: scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}
.image-caption { margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--muted); font-style: italic; }

.album-covers { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.album-covers a { display: block; transition: transform 0.2s; }
.album-covers a:hover { transform: scale(1.05); }
.album-covers img { width: 160px; height: 160px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); display: block; }

.carousel-container { position: relative; display: flex; align-items: center; gap: 1rem; }
.cards-carousel { 
  display: flex; 
  gap: 1rem; 
  overflow-x: auto; 
  scroll-behavior: smooth; 
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--card);
  padding: 0.5rem 0 1rem;
}
.cards-carousel::-webkit-scrollbar {
  height: 8px;
}
.cards-carousel::-webkit-scrollbar-track {
  background: var(--card);
  border-radius: 4px;
}
.cards-carousel::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.cards-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}
.card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 1rem; 
  min-width: 320px; 
  max-width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 320px;
}
.card h3 { margin-top: 0; margin-bottom: 0.75rem; flex-shrink: 0; font-size: 1.1rem; }
.card p:not(.tags) { flex-grow: 1; overflow: hidden; font-size: 0.95rem; line-height: 1.5; margin: 0.5rem 0; }
.tags { color: var(--muted); font-size: .9rem; margin: 0.5rem 0; flex-shrink: 0; }
.card p:last-child { margin-bottom: 0; flex-grow: 0; flex-shrink: 0; }
.carousel-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.carousel-btn:hover { background: var(--border); transform: scale(1.1); }
.carousel-btn:active { transform: scale(0.95); }

@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .cards-carousel { padding: 0.5rem; }
}

.pub { margin-bottom: 1rem; }
.pub .title { font-weight: 600; }
.pub .by, .pub .venue { color: var(--muted); margin: .1rem 0; }
.pub .links a { margin-right: .75rem; }

/* Fancy Read More Button with Edge Glow */
.read-more-btn {
  --thickness: 0.3rem;
  --roundness: 1.2rem;
  --color: #a78bfa;
  --opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: var(--color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--roundness);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.read-more-btn:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  filter: brightness(1.2);
}

.read-more-btn:active {
  --opacity: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.read-more-btn svg {
  border-radius: var(--roundness);
  display: block;
  filter: url(#glow);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  pointer-events: none;
}

.read-more-btn rect {
  fill: none;
  stroke: var(--color);
  stroke-width: var(--thickness);
  rx: var(--roundness);
  stroke-linejoin: round;
  stroke-dasharray: 185%;
  stroke-dashoffset: 80;
  animation: snake 2s linear infinite;
  animation-play-state: paused;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  width: 100%;
}

.read-more-btn:hover rect {
  animation-play-state: running;
  opacity: var(--opacity);
}

@keyframes snake {
  to {
    stroke-dashoffset: 370%;
  }
}

.read-more-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Demo (horizontal scrolling carousel) */
.demo-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--card);
  padding: 0.5rem 0 1rem;
}
.demo-carousel::-webkit-scrollbar {
  height: 8px;
}
.demo-carousel::-webkit-scrollbar-track {
  background: var(--card);
  border-radius: 4px;
}
.demo-carousel::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.demo-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}
.demo-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  width: 400px;
}
.demo-item img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .demo-item { width: 300px; }
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.modal-dialog {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  z-index: 1001;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-dialog h2 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.modal-dialog h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.modal-dialog p {
  line-height: 1.7;
  color: var(--text);
  margin: 0.75rem 0;
}

.modal-dialog .list {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.8;
}

.modal-dialog .list li {
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
  transform: rotate(90deg);
}

.modal-dialog {
  scrollbar-width: none;
}
.modal-dialog::-webkit-scrollbar {
  display: none;
}

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

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

@media (max-width: 768px) {
  .modal-dialog {
    padding: 1.5rem;
    max-height: 90vh;
  }
  
  .modal-dialog h2 {
    font-size: 1.3rem;
  }
}

/* Research Figures */
.research-figures {
  margin: 1.5rem 0;
}

.figure-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.research-figure {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}

.research-figure img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.research-figure-single {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.research-figure-single img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 4px;
  margin: 0 auto 0.5rem;
  display: block;
}

.research-figure figcaption,
.research-figure-single figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .figure-pair {
    grid-template-columns: 1fr;
  }
}

/* Cat Collage Grid */
.cat-collage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.cat-collage img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: zoom-in;
}

.cat-collage img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.3);
  border-color: var(--accent);
  z-index: 1;
}

@media (max-width: 768px) {
  .cat-collage {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  .cat-collage img {
    height: 140px;
  }
}

/* Author list in modals */
.authors {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0.25rem 0 0.75rem;
}

.highlight-author {
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* News section */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  flex-shrink: 0;
  width: 100px;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.news-content {
  flex: 1;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .news-list li {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .news-date {
    width: auto;
  }
}

/* Spotify Stats Trigger Button (matches album cover dimensions) */
.spotify-stats-trigger {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #121317 0%, #141f16 50%, #121317 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s;
  padding: 0;
  font-family: inherit;
}
.spotify-stats-trigger:hover {
  transform: scale(1.05);
  border-color: #1DB954;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.25);
}
.spotify-stats-trigger:focus {
  outline: 2px solid #1DB954;
  outline-offset: 2px;
}
.spotify-trigger-icon {
  width: 48px;
  height: 48px;
  fill: #1DB954;
}
.spotify-trigger-label {
  color: #1DB954;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Spotify Modal Header */
.spotify-header {
  background: linear-gradient(180deg, rgba(29, 185, 84, 0.12) 0%, transparent 100%);
  margin: -2rem -2rem 0;
  padding: 2rem 2rem 0;
  border-radius: 16px 16px 0 0;
  overflow: visible;
}
.spotify-modal-title {
  color: #1DB954 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Tab Bar */
.spotify-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  align-items: flex-start;
  position: relative;
}

.spotify-tab {
  background: transparent;
  border: 1px solid rgba(29, 185, 84, 0.3);
  color: #1DB954;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
}
.spotify-tab:hover {
  background: rgba(29, 185, 84, 0.1);
  border-color: #1DB954;
}
.spotify-tab.active {
  background: #1DB954;
  color: #000;
  border-color: #1DB954;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(29, 185, 84, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Tab Group with Flyout */
.spotify-tab-group {
  position: relative;
}
.spotify-tab-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
.spotify-tab-group:hover::after {
  display: block;
}
.spotify-tab-flyout {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  gap: 0.3rem;
  padding: 0.4rem 0.5rem;
  background: rgba(18, 19, 23, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(29, 185, 84, 0.25);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(29, 185, 84, 0.08);
  z-index: 10;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.spotify-tab-group:hover .spotify-tab-flyout {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.spotify-range {
  background: transparent;
  border: 1px solid rgba(29, 185, 84, 0.2);
  color: rgba(29, 185, 84, 0.7);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.spotify-range:hover {
  background: rgba(29, 185, 84, 0.12);
  border-color: #1DB954;
  color: #1DB954;
}
.spotify-range.active {
  background: rgba(29, 185, 84, 0.2);
  border-color: #1DB954;
  color: #1DB954;
  font-weight: 700;
}

/* Tab Panel */
.spotify-panel {
  padding-top: 1.25rem;
  animation: spotify-panel-in 0.3s ease;
}
@keyframes spotify-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Loading & Error */
.spotify-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  color: var(--muted);
}
.spotify-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: #1DB954;
  border-radius: 50%;
  animation: spotify-spin 0.8s linear infinite;
}
@keyframes spotify-spin { to { transform: rotate(360deg); } }

.spotify-error {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
}

/* Track List */
.spotify-tracks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spotify-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: background 0.2s;
}
.spotify-track:hover {
  background: rgba(29, 185, 84, 0.08);
}
.spotify-rank {
  width: 22px;
  text-align: right;
  color: rgba(29, 185, 84, 0.6);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.spotify-track img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.spotify-track-info {
  min-width: 0;
  flex: 1;
}
.spotify-track-info a {
  display: block;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.spotify-track-info a:hover { color: #1DB954; text-decoration: none; }
.spotify-track-info span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
}

/* Album Grid */
.spotify-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.25rem;
}
.spotify-album {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.2s;
}
.spotify-album:hover { transform: translateY(-4px); text-decoration: none; }
.spotify-album img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.spotify-album:hover img {
  border-color: rgba(29, 185, 84, 0.4);
  box-shadow: 0 6px 24px rgba(29, 185, 84, 0.15), 0 4px 16px rgba(0,0,0,0.3);
}
.spotify-album-name {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.25rem;
}
.spotify-album-artist {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Artist Grid */
.spotify-artists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1.25rem;
}
.spotify-artist {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s;
}
.spotify-artist:hover { transform: translateY(-4px); text-decoration: none; }
.spotify-artist img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.spotify-artist:hover img {
  border-color: #1DB954;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.25), 0 4px 12px rgba(0,0,0,0.3);
}
.spotify-artist-name {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  margin-top: 0.15rem;
}
.spotify-artist-genres {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .spotify-stats-trigger {
    width: 120px;
    height: 120px;
  }
  .spotify-trigger-icon {
    width: 36px;
    height: 36px;
  }
  .spotify-header {
    margin: -1.5rem -1.5rem 0;
    padding: 1.5rem 1.5rem 0;
  }
  .spotify-tabs { gap: 0.35rem; padding-bottom: 2.25rem; }
  .spotify-tab { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
  .spotify-tab-flyout { padding: 0.3rem 0.4rem; }
  .spotify-range { padding: 0.25rem 0.55rem; font-size: 0.68rem; }
  .spotify-albums {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  .spotify-artists {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 0.75rem;
  }
  .spotify-artist img {
    width: 64px;
    height: 64px;
  }
}

.site-footer { border-top: 1px solid var(--border); }
