body {
  position: relative;
  margin: 0;
  z-index: 0;
}
    
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/bg.webp'); 
  background-size: cover;
  background-attachment: fixed;
  z-index: -1; 
  transition: filter 0.3s ease;
}

body.inverted-bg::before {
  filter: brightness(110%);
}


h2 {
  position: relative;
  font-family: "homemadeapple";
  font-size: 10vw;
  font-style: normal;
  font-weight: normal;
  text-shadow: 1px 0px 4px #FFD5FF, 2px 0px 4px #FFD5FF, 3px 0px 4px #FFD5FF, 2px 0px 3px #D42CCA, 2px 3px 15px #D42CCA, 2px 0px 15px, 5px 0px 125px, 20px 0vw 200px #D42CCA,40px 0vw 200px #D42CCA;
  margin-bottom: -2vw;
  margin-top: 5vw;
  text-align: center;
  color: #cb4c6f;
  opacity: 0.9;
}

h2 a {
  position: relative;
  font-family: "homemadeapple";
  font-style: normal;
  font-weight: normal;
  padding: 5px;
  text-align: center;
  color: #cb4c6f;
}

h2 a:hover {
 text-decoration: none; 
}

a:hover {
  text-decoration: none;
}

.blinking-text {
    display: block;
    font-size: 1.2em;
    animation: blinker 1s linear infinite;
    color: #cb4c6f;
    font-style: italic;
    text-shadow: 
    0 0 5px #fff0f3,
    0 0 15px #e5a5b7,
    0 0 30px #cb4c6f;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.table-container {
  width: 90vw;
  max-width: 500px;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

th, td {
  padding: 4px;
  text-align: left;
}

thead {
  background-color: #f2f2f2;
}

.player-container {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
  z-index: 9999;
}

#audio-player {
  display: none;
}

.custom-player {
  font-family: "Courier New", Courier, monospace;
  background-image: url('https://joseywails.com/assets/paper-a.webp');
  border: 2px solid #cb4c6f;
  padding: 15px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 5px 5px 0px #cb4c6f;
  color: #333;
}

#now-playing {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

.player-controls button {
  background: #cb4c6f;
  color: white;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}

.player-controls button:hover {
  background: #c93c63;
}

tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5); 
}

thead {
  background-color: #f2f2f2; 
  border-bottom: 2px solid #ccc;
}

.dots {
  display: inline-block;
  width: 1.5em; 
  vertical-align: bottom;
  overflow: hidden;
  white-space: nowrap;
  animation: typing-dots 1.5s steps(3, end) infinite;
}

@keyframes typing-dots {
  from { width: 0; }
  to { width: 1.5em; }
}

.playbtn {
  filter: grayscale(100%) sepia(100%) hue-rotate(300deg) saturate(190%) brightness(100%);
}