@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
:root {
    --track-bg: rgba(255, 255, 255, 0.1);
    --primary-color: #000000;
}

body {
    background-color:#000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    color: rgb(255, 255, 255);
}

/* Ensure consistent box sizing to avoid unexpected overflow */
html, body, #master-wrapper, .content-container, .player-container, .live-area {
    box-sizing: border-box;
}

@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/2WORLDS.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: right;
    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(0, 0, 0, 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: hidden;
    height: 66vh;
    max-height: 66vh;
    display: flex;
    flex-direction: column;
    scrollbar-color: #4242426e #3333337c; /* Firefox */
}

.content-container.video-mode::-webkit-scrollbar {
    display: none;
}

.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 */
  }
    
.text-container {
    text-align: left;
    justify-content: flex-end;
    align-items: left;
    overflow: auto; /* Prevent scrollbars */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.062); /* More visible border */
    border-radius: 10px;
    padding: 4px;
    width: 300px;
    margin-left: auto;
    color: white;
    font-size: 12px;
}

.subscribe-button-container {
    display: inline-flex;
    position: relative;
    text-align: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    background-color: #25cc0493;
    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: transparent;
    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;

}

.social-icon-container {
    display: grid;
    align-items: center;
    grid-template-rows: auto auto auto auto ;
    font-size: 25px;
    width: 50%;
    max-width: 300px;
    height: 35px;
    margin: 0 auto;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0); /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.062); /* More visible border */
    border-radius: 10px;
}

.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;
}

