  /* BACKGROUND */
    body {
      background-image: url('images/musicbg9.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
      margin: 0;
      padding: 0;
    }

    /* HEADER */
    .simple-header {
      text-align: center;
      padding: 10px 10px 10px 10px;
      background-size: 40%;
      background-position: center;
      border-bottom: 4px dotted white;
    }

    .simple-header h1 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 48px;
      color: #3a3530;
      letter-spacing: 4px;
    }

    .simple-nav {
      margin-top: -20px;
      background: #000000;
      padding: 10px 30px;
      border-radius: 10px;
      display: inline-block;
      opacity: 0.5;
    }

    .simple-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      color: white;
      text-decoration: none;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin: 0 15px;
      transition: all 0.3s ease;
    }

    .simple-nav a:hover {
      color: #3a3530;
      border-bottom: 1px solid #8b7564;
    }

    /* MUSIC CONTENT */
    .music-content {
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 30px;
    }

    /* SECTION TITLES */
    .section-title {
      text-align: center;
      font-family: 'Cinzel Decorative', serif;
      font-size: 28px;
      color: #3a3530;
      letter-spacing: 3px;
      margin-bottom: 30px;
    }

    /* TWO COLUMN LAYOUT */
    .music-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    /* LEFT COLUMN */
    .left-column {
      background: rgba(255, 255, 255, 0.6);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }

    /* COMPACT MUSIC GRID (3x3) */
    .compact-music-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

    /* COMPACT MUSIC CARD */
    .compact-music-card {
    background: #d4c4b4;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    overflow: hidden;
  }

    .compact-music-card:hover {
      transform: translateY(-3px);
    }

    /* CARD COLORS */
    .card-brown { background: #a88b7a; }
    .card-blue { background: #5b8fd9; }
    .card-yellow { background: #d4b54a; }
    .card-green { background: #7fb69e; }
    .card-gray { background: #8a8a8a; }
    .card-pink { background: #d4a0a7; }
    .card-darkgray { background: #6a6a6a; }
    .card-lightblue { background: #9db8d9; }
    .card-orange { background: #e8a854; }

    /* COMPACT ALBUM ART */
    .compact-album-art {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 10px;
      background: #2a2a2a;
    }

    .compact-album-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* COMPACT SONG INFO */
    .compact-song-info {
      text-align: center;
      margin-bottom: 10px;
      min-height: 45px;
    }

    .compact-song-info .compact-song-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-weight: 600;
      color: #2a2a2a;
      margin-bottom: 3px;
      display: block;
      line-height: 1.3;
    }

    .compact-song-info .compact-artist-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      color: #3a3a3a;
    }

    /* CUSTOM MUSIC PLAYER */
    .compact-custom-player {
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
  }
    /* Play button (clickable link to Spotify) */
    .play-button {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .play-button:hover {
      background: white;
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    /* Play icon (triangle) */
    .play-icon {
      font-size: 16px;
      color: #2a2a2a;
      margin-left: 3px;
    }

    /* Fake progress bar (decorative only) */
    .fake-progress-bar {
      flex: 1;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }

    /* Optional: animated progress effect */
    .fake-progress-bar::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 35%;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 2px;
    }

    /* Progress bar fill - random */
      .progress-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0%;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 2px;
    }

    /* RIGHT COLUMN */
    .right-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* INFO CARDS */
    .info-card {
      background: rgba(255, 255, 255, 0.85);
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      border-left: 4px solid #a88b7a;
    }

    .info-card:hover {
      transform: translateX(5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .info-card-tall {
      padding: 25px;
    }

    .info-card-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .info-card-label {
      font-family: 'Cinzel Decorative', serif;
      font-size: 14px;
      color: #3a3530;
      letter-spacing: 1px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .info-card-content {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: #2a2a2a;
      line-height: 1.5;
    }

    .lyrics-style {
      font-style: italic;
      font-size: 16px;
      color: #3a3530;
      text-align: center;
      padding: 10px 0;
    }

    /* SOUNDCLOUD SECTION */
    .soundcloud-section {
      background: rgba(255, 255, 255, 0.7);
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      margin-bottom: 60px;
    }

    .soundcloud-intro {
      margin-bottom: 40px;
    }

    .soundcloud-about {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .soundcloud-about h3 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 22px;
      color: #3a3530;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .soundcloud-about p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: #2a2a2a;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .soundcloud-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
    }

    .soundcloud-card {
      background: rgba(255, 255, 255, 0.5);
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* SPOTIFY WRAPPED SECTION */
    .wrapped-section {
      background: rgba(255, 255, 255, 0.7);
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      margin-bottom: 20px;
    }

    .wrapped-subtitle {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: #3a3530;
      font-style: italic;
      margin-top: -20px;
      margin-bottom: 40px;
    }

    .wrapped-timeline {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .wrapped-year {
      position: relative;
    }

    .year-label {
      font-family: 'Cinzel Decorative', serif;
      font-size: 24px;
      color: #3a3530;
      text-align: center;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .wrapped-card {
      background: linear-gradient(135deg, #a88b7a 0%, #8b7564 100%);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .wrapped-card:hover {
      transform: translateY(-5px);
    }

    .wrapped-stat {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .wrapped-stat:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .stat-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      color: rgba(255,255,255,0.8);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .stat-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: white;
    }

    /* TABLET */
    @media (max-width: 1100px) {
      .music-layout {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .compact-music-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .simple-header h1 {
        font-size: 36px;
      }

      .music-content {
        padding: 0 15px;
      }

      .compact-music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .left-column {
        padding: 20px;
      }

      .compact-song-info .compact-song-title {
        font-size: 12px;
      }

      .compact-song-info .compact-artist-name {
        font-size: 11px;
      }

      .wrapped-timeline {
        grid-template-columns: 1fr;
      }

      .soundcloud-section,
      .wrapped-section {
        padding: 30px 20px;
      }

      .section-title {
        font-size: 24px;
      }
    }
    
  /* DECORATIVE TRINKETS */
  .trinket {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
  }

  .trinket-1 { /* casette */
    top: 9%;
    left: 10%;
    width: 320px;
    transform: rotate(-15deg);
  }

  .trinket-2 { /* radio */
    top: 2250px;
    right: 13%;
    width: 150px;
    transform: rotate(10deg);
  }

  .trinket-3 { /* headphones */
    top: 1280px;
    left: -2%;
    width: 470px;
    transform: scaleX(-1);
  }
  
    .trinket-4 { /* LP */
    top: 3880px;
    left: 2%;
    width: 320px;
  }
  
    /* LISTENING HIGHLIGHTS SECTION */
  .highlights-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    margin-bottom: 60px;
  }

  .highlights-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #3a3530;
    font-style: italic;
    margin-top: -20px;
    margin-bottom: 40px;
  }

  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }

  .stat-box {
    background: linear-gradient(135deg, #7fb69e 0%, #5a9378 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  .stat-box:hover {
    transform: translateY(-5px);
  }

  .stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .stat-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Top Tracks Grid */
  .top-tracks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .top-track-card {
    background: linear-gradient(135deg, #a88b7a 0%, #8b7564 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  .top-track-card:hover {
    transform: scale(1.03);
  }

  .top-track-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .top-track-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .top-track-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .top-track-hours {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
  }

  /* Journey Box */
  .journey-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 40px;
    border-radius: 15px;
    border-left: 5px solid #a88b7a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .journey-box h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 22px;
    color: #3a3530;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .journey-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: #2a2a2a;
    line-height: 1.8;
    margin: 0;
    text-align: center;
  }

  .journey-box strong {
    color: #8b7564;
    font-weight: 600;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .stat-number {
      font-size: 28px;
    }

    .top-tracks-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .highlights-section {
      padding: 30px 20px;
    }

    .journey-box {
      padding: 25px 20px;
    }
  }

  /* CUSTOM SCROLLBAR */
  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }

  ::-webkit-scrollbar-thumb {
    background: #edbcd2;
    border-radius: 6px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #e5adc4;
  }
  
    @media (max-width: 480px) {
      .compact-music-grid {
        grid-template-columns: 1fr;
      }

    .simple-nav a {
      margin: 0 8px;
      font-size: 14px;
    }

    .info-card-content {
      font-size: 16px;
    }
  }