html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  font-family: monospace;
   
}

/* Fixed centered logo */
.fixed-logo {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 33vw;
  max-height: 33vh;
  width: auto;
  height: auto;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

/* Center links underneath */
.centered-links {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Each line container */
.reveal-container {
  position: relative;
  margin: 0.5em 0;
}

/* Roman numerals (default state) */
.roman {
  font-family: "Times New Roman", "Times New Roman", Times, serif, "Times New Roman", Icons;  
  font-size: 2.2rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-style: normal;
  font-weight: 400;
  line-height: 2.0em;  
}

/* Hidden link (revealed on hover) */
.typed-link {
  font-family: "Monument Grotesk Mono Variable", Icons;  
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: #00f;
  opacity: 0;
  font-size: 1.3em;
  line-height: 2.0em;  
  white-space: nowrap;
	font-style: normal;
	font-weight: 400;
	font-variation-settings: 'slnt' 0, 'MONO' 1;
}

/* Hover behavior */
.reveal-container:hover .roman {
  opacity: 0;
}

.reveal-container:hover .typed-link {
  opacity: 1;
}

/* Fade-in logo */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -55%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Flashing underscore */
.typed-link::before {
  content: "_";
  animation: blink 0.7s infinite;
  margin-right: 3px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.1%, 100% { opacity: 0; }
}



/* Audio player container */
.audio-container {
  position: fixed;
  top: 75%; /* adjust to sit below numerals */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing between dropdown and audio */
  align-items: center;
}

.audio-container audio {
 width: 110px;
 height: 22px;   
  max-width: 60vw;
    background-color: #fff;
}
 /* Audio track selector styling */
.audio-container select {
  font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
  font-size: 1em;
  padding: 2px 2px 2px 2px;
  border: 0px solid #000;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  text-align: center;
  appearance: none; /* removes native arrow style */
  cursor: pointer;
  transition: all 0.3s ease;
	font-style: normal;
	font-weight: normal;
}

.audio-container select:hover {
  
  filter: blur(3px);
  opacity: 0.7;
  transform: scale(1.03);  
}

/* Fade + blur effect on hover */
.audio-container select {
  transition: all 0.3s ease;
    
}


.audio-container select:hover {
  filter: blur(3px);
  opacity: 0.7;
  transform: scale(1.03);
}

/* Hide native audio player */
#audioPlayer {
  display: none;
}

/* Custom play button */
.play-btn {
  font-size: 2.0rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
  font-family: monospace;
}

.play-btn:hover {
  transform: scale(1.2);
  filter: blur(1px);
  opacity: 0.8;
}



/* Copyright at bottom */
.copyright {
  position: fixed;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: Messapia, Icons;
  font-size: 1em;
  color: #000;
  opacity: 0;
  animation: fadeInCopyright 2.5s ease-in-out forwards;
  animation-delay: 1.5s; /* wait a moment before appearing */
	font-style: normal;
	font-weight: 400;
}

/* make sure text is visible (since typed-link defaults to hidden) */
.copyright .typed-link {
  opacity: 1;
  position: static;
  font-size: 1.0em;
}

/* Fade-in animation */
@keyframes fadeInCopyright {
  from {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

