* {
    box-sizing: border-box;
  }

body {
    font-family: sans-serif;
    background: #f4f4f4;
    color: #111;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12.5vh;
  }
  
  .container {
    max-width: 600px;
    padding: 2em;
    text-align: left;
  }
  
  h1 {
    color: #444;
    font-size: 3em;
    margin: 0.5em 0;
  }
  
  h2 {
    color: #444;
    margin: 0.5em 0;
  }
  
  p {
    margin: 1em 0;
  }
  
  .carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 2em;
  }
  
  .carousel-inner {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }

  .iframe-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
  }
  
  .carousel-item {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
  }
  
  .carousel iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border: none;
  }
  
  .caption {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #666;
  }
  
  .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 0.25rem 0.5rem;
    user-select: none;
  }
  
  .nav.left {
    left: 0.25rem;
  }
  
  .nav.right {
    right: 0.25rem;
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
  }
  
  .carousel-indicators .dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .carousel-indicators .dot.active {
    background: #111;
  }

  .spotify-track {
    height: 315px;
    overflow: hidden;
    position: relative;
  }

  .spotify-track iframe {
    position: absolute;
    top: 40px;
    left: 0;
  }

  .spotify-album iframe {
    display: block;
    width: 100%;
    height: 352px;
  }

  .socials {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .socials img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) hue-rotate(0deg);
    width: 100%;
    max-width: 60px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.2s ease;
  }
  
  .socials a:hover img {
    filter: invert(50%);
    transform: scale(1.025);
  }

  .idot {
    position: fixed;
    bottom: 0;
    right: 10px;
    width: clamp(80px, 20vw, 300px);
    z-index: 100;
    pointer-events: none;
  }
  