
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: Montserrat;
  color: #6EF2FF;
  background-color: black;
}

html, body {
  overflow: hidden;
  touch-action: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  position: fixed;
}

#msg{
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: white !important;        /* force white text */
  font-size: 16px !important;
  padding: 4px 8px !important;
  z-index: 9999 !important;
  visibility: visible !important;
}

#now_playing{
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  color: white !important;        /* force white text */
  font-size: 16px !important;
  padding: 4px 8px !important;
  z-index: 9999 !important;
  visibility: visible !important;
}


#river{
  position: fixed;
  width: 660px;
  height: 660px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 522px;
  background-image: url('test-square.gif');
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
}

#mycanvas{
  width: 660px;
  height: 660px;
  z-index: 100;
  position: fixed;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  background-color: transparent;
  border-style: none;
  border-width: 1px;
  border-radius: 2px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #river,
  #mycanvas {
    left: 58%;
    top: 48%;

  }
}

.content {
  max-width: 700px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#menu{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background-color: black;
  z-index: 500;
  
}

@media (min-width: 768px) {
  #menu {
    right: 0;
    left: auto;
    width: auto;
    justify-content: flex-end;
  }
}

#menu button {
  padding: 0.7rem 1.5rem;
  font-size: 1em;
  background-color: black;
  color: #6EF2FF;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#close-btn {
  margin-top:20px;
  margin-right:20px;
  padding: 0.7rem 1.5rem;
  font-size: 0.8em;
  background-color: #6EF2FF;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

h1, h2 {
  font-family: Montserrat;
  font-weight: 400;
  text-align: center;
}

h1 {
  font-size: 2em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: light;
  position: relative;
  z-index: 1000;
  background-color: transparent;
}

h3 {
  font-family: Montserrat;
  font-weight: 500;
}

p {
  font-weight: 200;
}

#ri{
 position:fixed;
 width:100px;
 height:100px;
 bottom:20px;
 right: 40px;
 padding: 20px 20px;
 border: 1px outset buttonborder;
 border-radius: 100px;
 color: black;
 background-color: #6EF2FF;
 text-decoration: none;
}

#play{
  position:fixed;
  width:80px;
  height:20px;
  top:20px;
  right: 40px;
  font-size: 1.8em;
  border-style: none;
}




#mygif {
  all: unset !important; /* resets most inherited/user agent styles */
  position: fixed !important;
  width: 1px !important;
  height: 1px !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  user-select: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body {
  font-family: sans-serif;
  overflow: hidden;
}



#track-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  z-index: 2000;
  hidden:true;
}

/* Splash Modal Styles */
#splash-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.splash-content {
  max-width: 800px;
  padding-top: 20px;
  padding-right: 3rem;
  padding-left: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: left !important;
}

.splash-content h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: left;
  margin-left: 0;
}

.splash-content h2 {
  text-align: left;
}

.splash-content p {
  margin-bottom: 1.5rem;
  font-size: 1.4em !important;
}

.splash-content button {
  padding: 0.7rem 1.5rem;
  font-size: 1.4em;
  background-color: #6EF2FF;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.splash-content button:hover {
  background-color: #FFFFFF;
  color: black;
}


.track-content p {
  font-size: 1em !important;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

/* Hide splash when dismissed */
.hidden {
  display: none !important;
}

/* Main content (initially visible but behind modal) */
#main-content {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}