* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "CubanoRegular";
  src: url("/assets/fonts/cubanoregular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 16px;
  size: 62.5%;
  overflow: hidden;
}

@media only screen and (min-width: 0rem) {
  :root {
    --dark: #121212;
    --medium: #282828;
    --accent: #404040;
    --bodyTextColorWhite: #fafbfc;
  }
  body.dark-mode {
    background-color: var(--dark);
  }
  body.dark-mode p,
  body.dark-mode li,
  body.dark-mode h1,
  body.dark-mode h2,
  body.dark-mode h3,
  body.dark-mode h4,
  body.dark-mode h5,
  body.dark-mode h6,
  body.dark-mode .cs-title,
  body.dark-mode .cs-text,
  body.dark-mode .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .light {
    display: none;
  }
  body.dark-mode .dark {
    display: block !important;
  }
  .dark {
    /* class used to hide elements that only need to be seen when dark mode is enabled */
    display: none;
  }
}
/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
  #dark-mode-toggle {
    display: block;
    position: absolute;
    top: 2rem;
    transform: translateY(-50%);
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    overflow: hidden;
    padding: 0;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5625rem;
    height: 1.5625rem;
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s, fill 0.3s;
    fill: #000;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-left: 1.875rem;
    margin-bottom: 0rem;
  }
  #dark-mode-toggle .cs-moon {
    fill: #2ecc71;
  }
}
#splashScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out; /* Fade-out transition */
  opacity: 1; /* Start fully visible */
}

#splashText {
  color: #1C1D21;
}

#splashScreen.fade-out {
  opacity: 0; /* End state of animation (invisible) */
}

#loader {
  height: 2.5rem;
  width: auto;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: "Arial", sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "CubanoRegular", sans-serif;
  overflow: hidden;
  overscroll-behavior: none;
}

a {
  color: #1e1e1e;
  text-decoration: none;
}
a:hover {
  color: #2ecc71;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1e1e1e;
}

.scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  will-change: transform;
}

.animate {
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #1e1e1e;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #2ecc71;
}

.welcomeMsg {
  width: 80vw;
  height: 10vh;
  color: #1C1D21;
}

.refresh-btn {
  background-color: #1C1D21;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.mainRadioCont {
  width: 80vw;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.radioContainer, .radioContainer2 {
  width: 100%;
  height: 45%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.radioBanner, .radioBanner2 {
  width: 100%;
  height: 75%;
  background-image: url(/assets/imgs/Sonamosmas.png);
  background-size: cover;
}

.listenerCounter, .listenerCounter2 {
  width: 4rem;
  height: 1.6rem;
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  text-align: right;
  right: 0.5rem;
  top: 1rem;
}
.listenerCounter img, .listenerCounter2 img {
  height: 1rem;
  width: auto;
}

.containerInfo, .containerInfo2 {
  width: 100%;
  height: 25%;
  background-color: #1C1D21;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.kofiCont, .kofiCont2 {
  height: 100%;
  width: 15%;
}

.nowPlayingInfo, .nowPlayingInfo2 {
  height: 100%;
  width: 70%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.nowPlayingInfo p, .nowPlayingInfo2 p {
  height: auto;
  font-size: 1rem;
}

.chatCont, .chatCont2 {
  height: 100%;
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#irrKofiURL {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#irrKofiURL img {
  height: 2rem;
  width: auto;
}

#irrChatURL {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#irrChatURL img {
  height: 2rem;
  width: auto;
}

#lbrKofiURL {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lbrKofiURL img {
  height: 2rem;
  width: auto;
}

#lbrChatURL {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lbrChatURL img {
  height: 2rem;
  width: auto;
}

.bottomMain {
  width: 80vw;
  height: 20vh;
  display: flex;
  justify-content: centers;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

#treeLink {
  width: 20%;
  height: 20%;
  display: flex;
  justify-content: left;
}
#treeLink a {
  width: auto;
  height: 100%;
}
#treeLink a img {
  height: 100%;
  width: auto;
  filter: none;
}

body.dark-mode #treeLink a img {
  filter: invert(1);
}

#shareButton {
  width: 20%;
  height: 20%;
  display: flex;
  justify-content: right;
}
#shareButton a {
  width: auto;
  height: 100%;
}
#shareButton a img {
  height: 100%;
  width: auto;
  filter: none;
}

body.dark-mode #shareButton a img {
  filter: invert(1);
}

#player {
  width: 60%;
  height: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#player img {
  height: 100%;
  width: auto;
}

#playerImage, #botonstop, #botonstop {
  width: auto;
  height: 100%;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modalContent {
  background-color: #1C1D21;
  width: 100%;
  height: 100%;
}

.modalHeader {
  position: relative;
  height: 7%;
  padding: 0.5rem;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.closeBtn {
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */