*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  color: #b6b6b6;
  font-family: "MS PGothic", "Lucida Console", monospace;
  font-size: 16px;
}

html,
body {
  cursor: url("./images/Normal-Select.ico"), default;
  background-color: rgb(30, 26, 23);
  background-image: url("./images/books.gif"), url("./images/icon.ico");
  overflow-x: hidden;       
}

a:hover {
  cursor: url("./images/Link Select.ico"), pointer;
}

.marquee-container {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./images/fog.png");
  background-size: 600px;
  background-repeat: repeat;
  background-position: 0 0;
  animation: scrollBackground 60s linear infinite;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("./images/scanlines.png"),  
    url("./images/vignette3.png");    
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  z-index: 100;
  pointer-events: none;
  opacity: 0.3;
}

@keyframes scrollBackground {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}


@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}

.scrolling-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-image: url("images/clouds.png");
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 600px;
  z-index: 9998;
  pointer-events: none;
  animation: scrollBackground 60s linear infinite, sway 10s ease-in-out infinite;
  opacity: 0.1;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px); 

  }

}

.banner-wrapper {
  position: fixed;
  top: 69px;
  left: 745px; 
  transform: none; 
  width: 0;
  height: 70px;
  z-index: 10;
  transform: translateX(-520px);
  left: 49.4%;
}

#banner {
  position: absolute;
  left: 0;
  width: 1165px; 
  height: 70px;
  
  
  

  background-color: rgb(30, 26, 23);
  background-image: url("./images/banner.png");
  background-size: cover;
  background-repeat: no-repeat;

  box-sizing: border-box;
  border-width: 3px;
  border-style: ridge;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
}

#announcements {
  position: fixed;
  left: calc(50% + 200px); /* Adjust visually */
  transform: translateX(5%);
  top: 985px;

  width: 410px;
  height: 45px;
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  line-height: 30px;
  text-align: center;
  overflow: hidden;
  z-index: 15;

  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
}

.announcement-item {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  animation: fadeInOut 8s infinite;
  transition: opacity 0.5s ease;
  text-align: center;
  z-index: 20;
  padding: 20px;
  word-wrap: break-word;
  word-spacing: -1px;
}

.announcement-item:nth-child(1) {
  animation-delay: 0s;
}
.announcement-item:nth-child(2) {
  animation-delay: 4s;
}

@keyframes fadeInOut {
  0%, 20% { opacity: 0; }
  30%, 70% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

#directory {
  position: absolute;
  top: 147px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #888;
  z-index: 10;
}

#body1 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 400px;
  min-height: 260px;
  width: 400px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-200px);
  text-align: left;
  word-wrap: break-word;
  word-spacing: -1px;
  border: 30px;
  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
  padding: 20px;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 30;
}

#body1::-webkit-scrollbar {
  width: 10px;
  background-color: #dcdcdc;
}

#body1::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #f6f6f6, #e0e0e0);
  border: 1px solid #aaa;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

#body1::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #b4b4b4, #888);
  border: 1px solid #555;
  box-shadow: none;
  border-radius: 0;
}

#body1::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #c0c0c0, #999);
}

#body1::-webkit-scrollbar-button {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border: 1px solid #999;
}

#body1::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><polygon points='0,6 5,2 10,6' fill='gray'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

#body1::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><polygon points='0,4 5,8 10,4' fill='gray'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* Optional: clean last paragraph spacing */
#body1 p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#body2 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 400px;
  min-height: 200px;
  width: 400px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-200px); 
  text-align: left;
  word-wrap: break-word;
  word-spacing: -1px;
  border: 30px;
  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
  padding: 20px;
  scrollbar-width: thin;
  z-index: 30;
}

#body3 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 600px;
  min-height: 200px;
  width: 400px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  word-wrap: break-word;
  word-spacing: -1px;
  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
  padding: 20px;
  z-index: 30;
  
  overflow-y: auto;
  overflow-x: hidden;
}


#body3::-webkit-scrollbar {
  width: 10px; 
  background-color: #dcdcdc;
}

#body3::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #f6f6f6, #e0e0e0);
  border: 1px solid #aaa;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

#body3::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #b4b4b4, #888);
  border: 1px solid #555;
  box-shadow: none;
  border-radius: 0; 
}

#body3::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #c0c0c0, #999);
}


#body3::-webkit-scrollbar-button {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border: 1px solid #999;
}

#body3::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><polygon points="0,6 5,2 10,6" fill="gray"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

#body3::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><polygon points="0,4 5,8 10,4" fill="gray"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

#body3 p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#body4 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 300px;
  min-height: 200px;
  width: 400px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-200px); 
  text-align: left;
  word-wrap: break-word;
  word-spacing: -1px;
  border: 30px;
  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
  padding: 20px;
  scrollbar-width: thin;
  z-index: 30;
}

#body5 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 600px;
  min-height: 200px;
  width: 400px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-200px); 
  text-align: left;
  word-wrap: break-word;
  word-spacing: -1px;
  border: 30px;
  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
  padding: 20px;
  scrollbar-width: thin;
  z-index: 30;
  overflow-y: auto;
}

#body6 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 600px;
  min-height: 200px;
  width: 400px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-200px);
  text-align: left;
  word-wrap: break-word;
  word-spacing: -1px;
  border: 30px;
  border-style: ridge;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  border-image: url("./images/lightwood.png") 50 round;
  box-shadow: 5px 5px black;
  box-sizing: border-box;
  padding: 20px;
  scrollbar-width: thin;
  z-index: 30;
}

#arrows {

position: fixed;
z-index: 50;
top: 560px;
width: 10px;
height: 10px;
left: 1425px;

}

#header2 {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 30px;
  width: 315px;
  line-height: 25px;
  text-align: center;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-color: rgb(255, 255, 255);
  box-shadow: 5px 5px black;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  z-index: 20;
  top: 170px;
  left: 49.4%;
  transform: translateX(-520px); 
}

#index {
  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  text-align: left;
  height: auto;
  width: 315px;
  position: absolute;
  top: 210px;
  left: 49.4%;
  transform: translateX(-520px); 
  border-color: rgb(255, 255, 255);
  box-shadow: 5px 5px black;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  padding: 10px;
  z-index: 20;
}

#guestbook {

position: absolute;
transform: translateX(-520px); 
top: 770px;
left: 49.4%;


}

#header3 {

  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 30px;
  width: 315px;
  line-height: 25px;
  text-align: center;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-color: rgb(255, 255, 255);
  box-shadow: 5px 5px black;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  z-index: 20;
  top: 810px; 
  left: 49.4%;
  transform: translateX(-520px); 

}

#affiliates {

  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  text-align: center;
  height: auto;
  width: 315px;
  position: absolute;
  top: 850px;
  left: 49.4%;
  transform: translateX(-520px); 
  border-color: rgb(209, 116, 116);
  box-shadow: 5px 5px black;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  padding: 10px;
  z-index: 20;
 
}

#header1 {

  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 30px;
  width: 410px;
  line-height: 25px;
  text-align: center;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-color: rgb(255, 255, 255);
  box-shadow: 5px 5px black;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  z-index: 40;
  top: 170px;
  left: 50%;
  transform: translateX(220px); 

}

#games1, #games2, #games3, #games4, #games5, #games6 {

  background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  text-align: left;
  width: 410px;
  height: auto; 
  min-height: 0px;
  border-color: rgb(255, 255, 255);
  box-shadow: 5px 5px black;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  position: absolute;
  padding: 10px;
  z-index: 40;
  left: 50%;
  transform: translateX(220px); 

}

#games1 { top: 220px; }
#games2 { top: 360px; } 
#games3 { top: 510px; } 
#games4 { top: 660px; } 
#games5 { top: 810px; }
#games6 { top: 960px; }

p {

  margin: 10px 0;
  line-height: 1.4;
  font-size: 15px;
  position: relative;
  color: #b6b6b6;
  z-index: 35;

}

ul {

  list-style-type: none;
  padding: 0;
  margin: 5px 0;
  z-index: 25;

}

li {

  margin: 3px 0; 
  padding: 2px 0;
  color: #b6b6b6;
  font-size: 14px; 

}

li a {

  color: #b6b6b6;
  text-decoration: none;
  z-index: 25;

}

li a:hover {

  color: #ffffff;
  text-decoration: underline;

}

#header1 b, #header2 b, #header3 b {

  color: #b6b6b6;
  z-index: 25;
  position: relative;

}

#disclaimer {

  position: fixed;
  top: 580px; 
  left: 50%;
  transform: translateX(-50%);
  
  overflow: hidden;
  font-size: 12px;
  color: #888;
  z-index: 10;
  word-spacing: -2px;
}

#disclaimer1 {
  position: fixed;
  top: 780px; 
  left: 50%;
  transform: translateX(-50%);

  font-size: 12px;
  color: #888;
  z-index: 10;
  word-spacing: -2px;
}

#disclaimer2 {
  position: fixed;
  top: 480px; 
  left: 50%;
  transform: translateX(-50%);

  font-size: 12px;
  color: #888;
  z-index: 10;
  word-spacing: -2px;
}

#dates {
  position: fixed;
  top: 605px;
  left: 950px;
  left: 50%;
  transform: translateX(-205px); 

  height: 108px;
  width: 410px;
  line-height: 16px;
  border-width: 3px;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 40;
  text-align: left;
  padding-left: 10px;
  margin-top: 0;
  color: #888;
}

.date-row span {
  font-size: 11px;
  white-space: nowrap;
  width: 150px;
  color: #888;
}

.date-row {
  display: flex;
  justify-content: flex-start;
  gap: 51px;
  margin-bottom: 3px;
}

#dates1 {
  position: fixed;
  top: 805px;
  left: 950px;
  left: 50%;
  transform: translateX(-205px); 

  height: 108px;
  width: 410px;
  line-height: 16px;
  border-width: 3px;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 40;
  text-align: left;
  padding-left: 10px;
  margin-top: 0;
  color: #888;
}

.date-row span {
  font-size: 11px;
  white-space: nowrap;
  width: 150px;
  color: #888;
}

.date-row {
  display: flex;
  justify-content: flex-start;
  gap: 51px;
  margin-bottom: 3px;
}

#dates2 {
  position: fixed;
  top: 505px;
  left: 950px;
  left: 50%;
  transform: translateX(-205px); 

  height: 108px;
  width: 410px;
  line-height: 16px;
  border-width: 3px;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 40;
  text-align: left;
  padding-left: 10px;
  margin-top: 0;
  color: #888;
}

.date-row span {
  font-size: 11px;
  white-space: nowrap;
  width: 150px;
  color: #888;
}

.date-row {
  display: flex;
  justify-content: flex-start;
  gap: 51px;
  margin-bottom: 3px;
}

img {

  position: relative;
  z-index: 5;

}

a {

  position: relative;
  z-index: 40;

}

#smalltext1 {

  font-family: "MS PGothic", monospace;
  font-size: 13px;
  color: #d49962;
  line-height: 15px;
  margin-left: 20px;
  
}

#smalltext2 {

  font-family: "MS PGothic", monospace;
  font-size: 13px;
  line-height: 15px;
  
}

#smalltext3 {
  
  font-family: "MS PGothic", monospace;
  font-size: 13px;
  color: #d49962;
  padding-top: 7px;
  text-align: left;
  margin-left: 0px;

}

.candle {

  margin-right: -20px;

}

.error {

font-size: 20px;
position: fixed;
left: 50%;

}

#button {

 background-color: rgb(30, 26, 23);
  background-image: url("./images/darkwood.png");
  height: 115px;
  width: 315px;
  line-height: 25px;
  text-align: center;
  border: 30px;
  border-width: 3px;
  border-style: ridge;
  border-color: rgb(255, 255, 255);
  box-shadow: 5px 5px black;
  border-image: url("./images/lightwood.png") 50 round;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  z-index: 40;
  top: 953px;
  left: 20.5%;
  transform: translateX(-520px);
  left: 49.4%;
}

#button textarea {
  resize: none;
}

h1 {

font-size: 32px;
font: "MS PGothic"

}

 @keyframes pulse-glow-rox {
      0% {
        text-shadow: 
          0 0 8px rgba(170, 116, 219, 0.6),
          0 0 16px rgba(170, 116, 219, 0.5),
          0 0 24px rgba(170, 116, 219, 0.4);
      }
      50% {
        text-shadow: 
          0 0 20px rgba(170, 116, 219, 1),
          0 0 35px rgba(170, 116, 219, 0.9),
          0 0 50px rgba(170, 116, 219, 0.8);
      }
      100% {
        text-shadow: 
          0 0 8px rgba(170, 116, 219, 0.6),
          0 0 16px rgba(170, 116, 219, 0.5),
          0 0 24px rgba(170, 116, 219, 0.4);
      }
    }

    .pulsing-glow-rox {
      color: rgb(170, 116, 219);
      transition: text-shadow 0.3s ease-in-out;
    }

    .pulsing-glow-rox:hover {
      animation: pulse-glow-rox 1.5s infinite ease-in-out;
    }

   @keyframes pulse-glow-homiemace {
  0% {
    text-shadow: 
      0 0 8px rgba(143, 144, 210, 0.6),
      0 0 16px rgba(143, 144, 210, 0.5),
      0 0 24px rgba(143, 144, 210, 0.4);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(143, 144, 210, 1),
      0 0 35px rgba(143, 144, 210, 0.9),
      0 0 50px rgba(143, 144, 210, 0.8);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(143, 144, 210, 0.6),
      0 0 16px rgba(143, 144, 210, 0.5),
      0 0 24px rgba(143, 144, 210, 0.4);
  }
}

.pulsing-glow-homiemace {
  color: #8f90d2;
  transition: text-shadow 0.3s ease-in-out;
}

.pulsing-glow-homiemace:hover {
  animation: pulse-glow-homiemace 1.5s infinite ease-in-out;
}
   
@keyframes pulse-glow-kss {
  0% {
    text-shadow: 
      0 0 8px rgba(75, 61, 166, 0.6),
      0 0 16px rgba(75, 61, 166, 0.5),
      0 0 24px rgba(75, 61, 166, 0.4);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(75, 61, 166, 1),
      0 0 35px rgba(75, 61, 166, 0.9),
      0 0 50px rgba(75, 61, 166, 0.8);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(75, 61, 166, 0.6),
      0 0 16px rgba(75, 61, 166, 0.5),
      0 0 24px rgba(75, 61, 166, 0.4);
  }
}

.pulsing-glow-kss {
  color: #4B3DA6;
  transition: text-shadow 0.3s ease-in-out;
}

.pulsing-glow-kss:hover {
  animation: pulse-glow-kss 1.5s infinite ease-in-out;
}
   
@keyframes pulse-glow-pgray {
  0% {
    text-shadow: 
      0 0 8px rgba(202, 39, 39, 0.6),
      0 0 16px rgba(202, 39, 39, 0.5),
      0 0 24px rgba(202, 39, 39, 0.4);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(202, 39, 39, 1),
      0 0 35px rgba(202, 39, 39, 0.9),
      0 0 50px rgba(202, 39, 39, 0.8);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(202, 39, 39, 0.6),
      0 0 16px rgba(202, 39, 39, 0.5),
      0 0 24px rgba(202, 39, 39, 0.4);
  }
}

.pulsing-glow-pgray {
  color: rgb(202, 39, 39);
  transition: text-shadow 0.3s ease-in-out;
}

.pulsing-glow-pgray:hover {
  animation: pulse-glow-pgray 1.5s infinite ease-in-out;
}
   
@keyframes pulse-glow-camo93 {
  0% {
    text-shadow: 
      0 0 8px rgba(105, 104, 82, 0.6),
      0 0 16px rgba(105, 104, 82, 0.5),
      0 0 24px rgba(105, 104, 82, 0.4);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(105, 104, 82, 1),
      0 0 35px rgba(105, 104, 82, 0.9),
      0 0 50px rgba(105, 104, 82, 0.8);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(105, 104, 82, 0.6),
      0 0 16px rgba(105, 104, 82, 0.5),
      0 0 24px rgba(105, 104, 82, 0.4);
  }
}

.pulsing-glow-camo93 {
  color: rgb(105, 104, 82);
  transition: text-shadow 0.3s ease-in-out;
}

.pulsing-glow-camo93:hover {
  animation: pulse-glow-camo93 1.5s infinite ease-in-out;
}
   
@keyframes pulse-glow-noveka {
  0% {
    text-shadow: 
      0 0 8px rgba(0, 98, 97, 0.6),
      0 0 16px rgba(0, 98, 97, 0.5),
      0 0 24px rgba(0, 98, 97, 0.4);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(0, 98, 97, 1),
      0 0 35px rgba(0, 98, 97, 0.9),
      0 0 50px rgba(0, 98, 97, 0.8);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(0, 98, 97, 0.6),
      0 0 16px rgba(0, 98, 97, 0.5),
      0 0 24px rgba(0, 98, 97, 0.4);
  }
}

.pulsing-glow-noveka {
  color: rgb(0, 98, 97);
  transition: text-shadow 0.3s ease-in-out;
}

.pulsing-glow-noveka:hover {
  animation: pulse-glow-noveka 1.5s infinite ease-in-out;
}
   
  @keyframes pulse-glow-libraryoflotus {
    0% {
      text-shadow: 
        0 0 8px rgba(212, 153, 98, 0.6),
        0 0 16px rgba(212, 153, 98, 0.5),
        0 0 24px rgba(212, 153, 98, 0.4);
    }
    50% {
      text-shadow: 
        0 0 20px rgba(212, 153, 98, 1),
        0 0 35px rgba(212, 153, 98, 0.9),
        0 0 50px rgba(212, 153, 98, 0.8);
    }
    100% {
      text-shadow: 
        0 0 8px rgba(212, 153, 98, 0.6),
        0 0 16px rgba(212, 153, 98, 0.5),
        0 0 24px rgba(212, 153, 98, 0.4);
    }
  }

  .pulsing-glow-libraryoflotus {
    color: #d49962;
    transition: text-shadow 0.3s ease-in-out;
  }

 .pulsing-glow-libraryoflotus:hover {
  animation: pulse-glow-libraryoflotus 1.5s infinite ease-in-out;
}

#textOverlay {
  position: absolute;
  bottom: 60px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  pointer-events: none; 
}

#typewriterContainer {
  margin-bottom: 10px;
}

.banner-images {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 5px; 
  display: flex;
  gap: 5px;
  z-index: 2;
}

#banner {
  position: relative;
  padding: 1px;
  overflow: hidden; 
}

#banner {
  position: relative;
  padding: 1px;
  overflow: hidden;
}

.scrolling-banner-text {
  position: absolute;
  bottom: 0;
  left: 10;
  width: calc(100% - 95px); 
  height: 25px;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding-left: 0
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; 
  color: rgb(170, 116, 219);
  font-weight: bold;
  animation: scrollText 30s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#black-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background-color: black;
      z-index: 9999;
      opacity: 1;
      pointer-events: none;
      animation: fadeOutBlack 1.5s ease forwards;
    }

    @keyframes fadeOutBlack {
      to {
        opacity: 0;
        visibility: hidden;
      }
    }

   #banner {
    position: relative;
    padding: 1px;
  }

.banner-images img {
  width: 23px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  outline: none;
  transition: outline 0.05s ease-in; 
  cursor: pointer;
}

.banner-images img:hover,
.banner-images img:focus,
.banner-images img:active {
  outline: 2px solid white;
}

.darkened {
  opacity: 0.4; 
  pointer-events: none; 
  filter: grayscale(100%) brightness(60%); 
}

.score-table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 375px; 
  margin-left: -11px;
}

.score-table td {
  padding: 5px;
  white-space: nowrap;
}

.score-table td:nth-child(1) {
  width: 80px; 
}

  .score-table td span.bold {
    color: rgb(226, 226, 226);
    font-style: italic;
  }

 .link {
    color: rgb(51, 102, 204); 
    font-style: italic;
    text-decoration: underline;
  }

  .link a {
    color: inherit;
    text-decoration: inherit;
  }

   .link1 {
    color: rgb(51, 102, 204); 
    text-decoration: underline;
  }

  .link1 a {
    color: inherit;
    text-decoration: inherit;
  }


  

