  /* Base Styling */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      font-size: 16px; /* Base font size for rem calculations */
      height: 100%;
      width: 100%;
    }
    
    body {
      background: rgb(54,24,23);
      background: linear-gradient(
        180deg,
        rgba(54,24,23,1) 0%,
        rgba(71,21,21,1) 48%,
        rgba(54,24,23,1) 100%
      );
      background-attachment: fixed;
      color: #E1E3E2;
      text-align: center;
      margin: 0;
      padding: 0;
      min-height: 100vh;
      width: 100%;
      font-family: 'PT Sans', Arial, sans-serif;
      position: relative;
      overflow-x: hidden;
    }
    
   /* Navbar Styling */
.navbar-custom {
  background: rgba(36, 16, 15, 0.98);
  padding: 0.8rem 1rem;

}

.navbar-custom .navbar-nav {
  margin-left: 2rem !important;
}

.navbar-custom .navbar-brand {
  padding: 0;
}

.navbar-custom .navbar-brand img {
  width: 45px;
  vertical-align: middle;
}

.navbar-custom .navbar-nav .nav-link {
  color: #E1E3E2;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0.3rem;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: rgb(165, 230, 186);
}

.navbar-custom .navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background: rgb(165, 230, 186);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-custom .navbar-nav .nav-link:hover:after {
  width: 100%;
}

.navbar-custom .navbar-nav .nav-link.active {
  color: rgb(165, 230, 186);
}

/* NEW: Cool tooltip for Videos link */
.nav-link-tooltip {
  position: relative;
}

/* Prevent the green underline from appearing on the Videos link */
.navbar-custom .navbar-nav .nav-link-tooltip:after {
  display: none !important;
}

.nav-link-tooltip::before {
  content: 'Coming Soon';
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: linear-gradient(135deg, rgb(165, 230, 186), rgb(130, 200, 160));
  color: rgb(36, 16, 15);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 
    0 4px 15px rgba(165, 230, 186, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.nav-link-tooltip::after {
  content: '';
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgb(130, 200, 160);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  z-index: 1000;
}

.nav-link-tooltip:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1.5) translateY(-5px);
}

.nav-link-tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Add a subtle glow animation to the tooltip */
@keyframes tooltipGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(165, 230, 186, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(165, 230, 186, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

.nav-link-tooltip:hover::before {
  animation: tooltipGlow 2s ease-in-out infinite;
}
    
    /* Mobile navbar background */
    @media (max-width: 1024px) {
      .navbar-custom .navbar-collapse {
        background: rgba(36, 16, 15, 0.98);
        margin-top: 0.5rem;
        padding: 0.5rem;
        border-radius: 0.5rem;
      }
      
      .navbar-custom .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.25rem 0.5rem;
      }
    }
    
    .main-container {
      font-family: 'PT Sans', Arial, sans-serif;
      font-weight: normal;
      position: relative;
      margin: 1.5rem auto 1.25rem;
      max-width: 37.5rem; /* 600px converted to rem */
      width: 100%;
      font-size: 1.125rem; /* 18px converted to rem */
      text-align: center;
      opacity: 0.8;
      padding: 0 1rem;
    }
    
    /* Mobile-first responsive adjustments */
    @media (max-width: 768px) {
      .main-container {
        max-width: 100%;
        padding: 0 0.5rem;
        font-size: 1rem;
      }
      
      html {
        font-size: 14px; /* Smaller base font on mobile */
      }
    }
    
    @media (max-width: 480px) {
      body {
        padding: 0;
      }
      
      .main-container {
        padding: 0 0.25rem;
        margin: 1rem auto 0.5rem;
      }
    }
    
    span {
      display: block;
    }

    .line-1 {
      position: relative;
      font-size: clamp(0.875rem, 2vw, 1.125rem);
      text-shadow: 0 0 10px rgba(225, 227, 226, 0.3);
      animation: pulse 3s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 0.8; }
      50% { opacity: 1; }
    }
    
    .line-1:before,
    .line-1:after {
      content: "\f005";
      font-family: FontAwesome, Arial;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: clamp(0.75rem, 1.5vw, 0.75rem);
      margin: 0 clamp(1rem, 4vw, 1.875rem);
      top: -0.3125rem;
      color: #ffd700;
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
      animation: twinkle 2s ease-in-out infinite alternate;
    }
    
    @keyframes twinkle {
      0% { opacity: 0.7; transform: scale(1); }
      100% { opacity: 1; transform: scale(1.1); }
    }
.player .card-text {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  word-break: break-word;
}
    .line-2 {
      font-family: 'Changa One', 'Arial Black', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      letter-spacing: clamp(0.01rem, 1vw, 0.09375rem);
      margin: 0;
      word-break: break-word;
      background: linear-gradient(45deg, #E1E3E2, #fff, #E1E3E2);
      background-size: 200% 200%;
      background-clip: text;
      color: rgb(165, 230, 186);
    }
    
    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .line-3 {
      font-family: 'PT Sans', Arial, sans-serif;
      font-weight: 700;
font-size: clamp(.8rem, 2vw, .8rem);
      text-transform: uppercase;
      margin: 0 0 0;
      position: relative;
      letter-spacing: clamp(0.1rem, 1vw, 0.375rem);
      text-shadow: 0 0 10px rgba(225, 227, 226, 0.2);
    }
    .line-3:before,
    .line-3:after {
      content: " ";
      position: absolute;

      height: 0.3125rem;
      border-top: 1px solid #444;
      border-bottom: 1px solid #444;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(90deg, transparent, #666, transparent);
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }
  
    
    /* Hide decorative lines on very small screens */
    @media (max-width: 480px) {
      .line-3:before,
      .line-3:after {
        display: none;
      }
    }

     .footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .line-5 {
    margin: 1rem 0;
    position: relative;
    text-align: center;
    font-size: clamp(0.875rem, 2vw, 0.875rem);
    display: inline-block;
  }
    .line-5 a {
      text-decoration: none;
      margin: 0.625rem 0.625rem;
      display: inline-block;
      color: #E1E3E2;
      transition: opacity 0.3s ease;
    }
    .line-5 a:hover {
      opacity: 0.7;
    }
    
   .line-6 {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.75rem);

  display: inline-block;
  text-align: center;
}


    /* Audio Player Responsive Styles */
    .player {
      padding: clamp(1rem, 3vw, 1.25rem);
      border-radius: 0.5rem;
      margin-bottom: 1.25rem;
      transition: all 0.3s ease;
      width: 100%;
      max-width: 100%;
      position: relative;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .player::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: inherit;
      border-radius: inherit;
      opacity: 0.8;
      z-index: -1;
    }
    
    .player:hover {
  transform: translateY(-2px) scale(1.009);  /* Reduced from translateY(-4px) scale(1.02) */
  box-shadow: 
    0 5px 5px rgba(0, 0, 0, 0.25),  /* Reduced from 0 12px 40px */
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 15px rgba(255, 255, 255, 0.08);  /* Reduced glow */
}
    
    .player .card-body {
      padding: 0;
    }
    
    .player .card-text {
      font-size: clamp(0.875rem, 2.5vw, 1rem);
      margin-bottom: 1rem;
      word-break: break-word;
    }
    
    .progressContainer {
      cursor: pointer;
      min-height: 1.5rem;
      border-radius: 0.25rem;
      overflow: hidden;
    }
    
    .progress {
      height: 1.5rem;
      border-radius: 0.75rem;
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }
    
    .progress-bar {
      transition: width 0.1s ease;
      min-width: 2px;
      border-radius: 0.75rem;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .progress-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
      border-radius: 0.75rem 0.75rem 0 0;
    }
    
    /* Custom progress bar colors for specific tracks */
    
    /* Mary Contrary - match the brown/gold player background rgb(110, 85, 40) */
    .mary-contrary .progress-bar {
      background: linear-gradient(45deg, #8B6914, #DAA520, #B8860B) !important;

    }
    
    /* Pink Burrito Extended - hot pink progress bar rgb(255,105,180) */
    .pink-burrito-extended .progress-bar {
      background: linear-gradient(45deg, #FF1493, #FF69B4, #FF6347) !important;
      box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    }
    
    /* Time displays */
    .time-display {
      font-size: clamp(0.7rem, 2vw, 0.875rem);
      font-family: 'Courier New', monospace;
      flex: 0 0 auto; /* Don't grow, don't shrink, auto basis */
      min-width: 3rem;
    }
    
    .currentTime {
      text-align: left;
    }
    
    .duration {
      text-align: right;
    }
    
    /* Ensure time displays are on the edges */
    .d-flex.justify-content-between {
      width: 100%;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      flex-wrap: nowrap !important; /* Prevent wrapping */
    }
    
    /* Lyrics styling with fixed horizontal layout */
    .lyric {
      font-size: clamp(0.75rem, 2vw, 0.9rem);
      font-weight: normal;
      font-style: italic;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center;
      flex: 1;
      min-width: 0; /* Important for text overflow to work */
      margin: 0 0.5rem;
    }
    
    .lyric:before {
      content: '"';
    }
    .lyric:after {
      content: '"';
    }
    
    .playPauseBtn {
      width: clamp(2.5rem, 8vw, 3rem);
      height: clamp(2.5rem, 8vw, 3rem);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      margin: 0 auto;
      background: linear-gradient(145deg, #ffffff, #e0e0e0);
      box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3),
        inset 0 -1px 3px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .playPauseBtn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }
    
    .playPauseBtn:hover::before {
      left: 100%;
    }
    
    .playPauseBtn:hover {
  transform: scale(1.08);  /* Reduced from scale(1.15) */
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.15),  /* Reduced from 0 6px 20px */
    inset 0 1px 3px rgba(255, 255, 255, 0.4),
    inset 0 -1px 3px rgba(0, 0, 0, 0.1),
    0 0 10px rgba(255, 255, 255, 0.15);  /* Reduced glow */
}
    
    .playPauseBtn:active {
      transform: scale(0.98);
      box-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .playPauseBtn i {
      font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    
    /* Browser compatibility improvements */
    .player {
      -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .progress {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }
    
    /* Focus states for accessibility */
    .playPauseBtn:focus,
    .progressContainer:focus {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }
    
    /* High contrast mode support */
    @media (prefers-contrast: high) {
      .player {
        border: 2px solid #fff;
      }
      
      .progress {
        border: 1px solid #fff;
      }
    }
    
    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      .player,
      .playPauseBtn,
      .progress-bar,
      .line-5 a {
        transition: none;
      }
      
      .player:hover {
        transform: none;
      }
      
      .playPauseBtn:hover {
        transform: none;
      }
    }
    
    /* Print styles */
    @media print {
      body {
        background: white;
        color: black;
      }
      
      .player {
        border: 1px solid black;
        background: white !important;
        color: black !important;
      }
      
      .playPauseBtn {
        display: none;
      }
    }

     @media (max-width: 768px) {
      .links-section a {
        display: block;
        margin: 0.5rem 0;
      }
      
      .about-content {
        padding: 1.5rem;
        margin: 1rem 0.5rem;
      }
      
      .about-content h1 {
        font-size: 1.5rem;
      }
      
      .about-content p,
      .about-content ul li {
        font-size: 0.95rem;
      }
      
      .about-content blockquote {
        font-size: 1rem;
        padding: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .about-content {
        padding: 1rem;
        border-radius: 0.5rem;
      }
      
      .about-content h1 {
        font-size: 1.3rem;
      }
      
      .contact-section ul li {
        padding-left: 1.2rem;
        font-size: 0.9rem;
      }
    }
    
    /* Browser compatibility - PRESERVED FROM INDEX.HTML */
    .player {
      -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* Focus states for accessibility */
    .playPauseBtn:focus,
    .progressContainer:focus {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }
    
    /* High contrast mode support */
    @media (prefers-contrast: high) {
      .player {
        border: 2px solid #fff;
      }
    }
    
    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      .player,
      .playPauseBtn,
      .progress-bar,
      .line-5 a {
        transition: none;
      }
      
      .player:hover {
        transform: none;
      }
    }
    
    /* Print styles */
    @media print {
      body {
        background: white;
        color: black;
      }
      
      .player {
        border: 1px solid black;
        background: white !important;
        color: black !important;
      }
    }

    /* Add to your existing styles - image alongside bio text */
.bio-with-image {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.bio-image {
  flex: 0 0 auto;
  width: 380px;
}

.bio-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);

}

.bio-text {
  flex: 1 1 auto;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .bio-with-image {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .bio-image {
    width: 250px;
    margin-bottom: 1rem;
  }
}

/* Text wrapping around image - newspaper style */
.bio-image-wrapper {
  overflow: hidden; /* Clearfix */
}

.bio-image {
  float: left;

  margin: 0 1.5rem 1rem 0;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .bio-image {
    float: none;
    display: block;
    width: 250px;
    margin: 0 auto 1.5rem;
  }
}

/* Remove the previous bio layout styles */
.bio-with-image,
.bio-text {
  display: block;
}