@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
:root {
    --main-bg: url('images/2WORLDS.png') fixed;
    --track-bg: rgba(255, 255, 255, 0.1);
    --primary-color: #000000;
}

body {
    background-image: url('');
    background-color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 600px) {
    /* Styles for tablets and smaller devices */
  }
  
  @media screen and (max-width: 400px) {
    /* Styles for smartphones */
  }

  @media screen and (max-width: 320px) {
    /* Styles for very small devices */
  }

#master-wrapper {
    background-image: url('../images/evileyenil.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center bottom;
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Allowscrollbars */
    overflow-x: hidden;
    opacity: 0.8; /* Makes the background image slightly faded */
    border-radius: 10px; /* Matches header-container border-radius */
}

.master-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 100%;
}

.header-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0); /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.062); /* More visible border */
    border-radius: 10px;
    
}

.nav-menu-container {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto auto auto;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3px;
    margin-bottom: 3px;
    background: rgba(7, 172, 15, 0.151); /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.062); /* More visible border */
    border-radius: 10px;
}

.content-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-position: center;
    background-attachment: fixed;
    background-origin: content-box;
    background-repeat: no-repeat;
    font-size: xx-small;  
    background: rgba(255, 255, 255, 0); /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.062); /* More visible border */
    border-radius: 10px;
    color: rgba(0, 0, 0, 0.76);
    font-weight: bold ;
    overflow-y: auto;
    overflow-x: auto;
    height: 55vh;
    max-height: 55vh;
    display: flex;
    flex-direction: column;
    scrollbar-color: #4242426e #3333337c; /* Firefox */
   
}

.content-container::-webkit-scrollbar {
    width: 10px; /* Set the width of the scrollbar */
    height: 10px; /* Set the height of the scrollbar */
  }
  
  .content-container::-webkit-scrollbar-track {
    background-color: #3333337c; /* Set the background color of the scrollbar track */
    border-radius: 10px; /* Set the border radius of the scrollbar track */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.473); /* Add a box shadow to the scrollbar track */
  }
  
  .content-container::-webkit-scrollbar-thumb {
    background-color: #4242426e; /* Set the background color of the scrollbar thumb */
    border-radius: 10px; /* Set the border radius of the scrollbar thumb */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Add a box shadow to the scrollbar thumb */
  }
  
  .content-container::-webkit-scrollbar-thumb:hover {
    background-color: #18181877; /* Set the background color of the scrollbar thumb on hover */
  }

  .content-container::-webkit-scrollbar:horizontal {
    height: 10px; /* Set the height of the horizontal scrollbar */
  }
  
  .content-container::-webkit-scrollbar-track:horizontal {
    background-color: #333; /* Set the background color of the horizontal scrollbar track */
    border-radius: 10px; /* Set the border radius of the horizontal scrollbar track */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Add a box shadow to the horizontal scrollbar track */
  }
  
  .content-container::-webkit-scrollbar-thumb:horizontal {
    background-color: #666; /* Set the background color of the horizontal scrollbar thumb */
    border-radius: 10px; /* Set the border radius of the horizontal scrollbar thumb */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Add a box shadow to the horizontal scrollbar thumb */
  }
  
  .content-container::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: #888; /* Set the background color of the horizontal scrollbar thumb on hover */
  }

.player-container {
    background-color: transparent;
    padding: 1px;
    margin-top: 0px;
    align-items: center;
    justify-content: center;
}

.track-list {
    max-width: 800px;
    margin: 0 auto;
}

.track-item {
    background: rgba(0, 0, 0, 0.3); /* Slightly more opaque */
    padding: 10px;
    margin: 1px 0;
    border-radius: 5px;
    position: relative;
}

.emailForm button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.emailForm button:hover {
    background-color: #bbb;
}

.track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thumbnail {
    width: 150px;
    height: 150px;
    margin-right: 0px;
    border-radius: 5px;
}

.track-info {
    flex-grow: 1;
}

.artist-name {
    font-size: 1.1em;
    opacity: 0.8;
}

.track-name {
    font-size: 1.5em;
    font-weight: bold;
}

.track-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.track-controls button {
    background-color: #42055293;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1px;
}

.track-controls button:hover {
    background-color: #01ac0a3d;
}

.track-duration {
    font-size: 0.9em;
    opacity: 0.8;
    min-width: 50px;
    text-align: right;
}

.waveform-container {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 5px;
    padding-left: 0.1px;
    background-color: transparent;
}

.time-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 5px;
    margin-left: 10px;
}

.waveform {
    width: 100%;
    height: 80px;
    margin-top: 1px;
}

.paybutton-container {  
    text-align: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    background-color: #03030393;
    border: px solid rgba(255, 255, 255, 0.253); /* More visible border */    border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1px;
}
.paybutton-container:hover {
    flood-color: rgba(255, 255, 255, 0.034); /* Slightly more opaque on hover */
    color: black;
    box-shadow: 1px 0px 1px 2px rgba(67, 167, 0, 0.329); /* Stronger shadow on hover */
} 

.paybutton {
    background-color: transparent;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    border: none; /* Remove default border */
    cursor: pointer;
}

.subscribe-button-container {
    display: inline-flex;
    position: relative;
    width: 18%;
    text-align: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    background-color: #03030393;
    border: 1px solid rgb(255, 255, 255); /* More visible border */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 10 10px;
}
.subscribe-button-container:hover {
    flood-color: rgba(255, 255, 255, 0.034); /* Slightly more opaque on hover */
    color: black;
    box-shadow: 1px 0px 1px 2px rgba(47, 117, 1, 0.233); /* Stronger shadow on hover */
} 

.subscribe-button {
    background-color: transparent;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    border: none; /* Remove default border */
    cursor: pointer;

}

.infobar-container {
    font-size: x-small;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2px 0;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.infobar-container a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s;
}

.infobar-container a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.footer-container {
    font-size: xx-small;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 3px;
    padding-bottom: 3px;
}
