@font-face {
  font-family: "TheGoodMonolith";
  src: url("../fonts/TheGoodMonolith.woff") format("woff");
  font-display: block; /* waits until the font is ready before showing text */
}

html,
body {
  background: radial-gradient(circle, #152c42, #0c1824);
  background-size: cover;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

header {
  font-family: "TheGoodMonolith", sans-serif;
  background-color: rgba(15, 31, 47, 0.5);
  border-bottom: 1px solid #152c42;
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 5rem;
  width: 100%;
  box-sizing: border-box;
}

.logowgetroned {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logowgetroned img {
  height: 40px;
  width: auto;
}

.logowgetroned h1 {
  color: #ffffff;
  font-size: 2.6rem;
  margin: 0;
}

.navigation a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 10px 15px;
  transition: background 0.3s;
}

.navigation a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

footer {
  text-align: center;
}

#search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  margin: 10px auto;
  background: #0f2a4d;
  border-radius: 10px;
  padding: 5px 10px;
  box-sizing: border-box;
}

#search-container img {
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.search-box {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  color: white;
  background: transparent;
  border: none;
  outline: none;
}

/* Prevent background from changing on focus */
.search-box:focus {
  background: transparent;
  color: white;
  outline: none;
}

/* Optional: Prevent autofill from turning it white/yellow */
input.search-box:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0f2a4d inset !important;
  -webkit-text-fill-color: white !important;
}

.dropdown {
  position: absolute;
  background: radial-gradient(circle, #101418, #1c2126);
  border: 2px solid rgb(9, 15, 35); /* Royal blue border */
  width: auto; /* Adjust width automatically */
  z-index: 1000;
  display: none;
  left: 50%; /* Center the dropdown */
  transform: translateX(-50%); /* Adjust for its own width */
  border-radius: 8px; /* Rounded corners */
}

.dropdown-item {
  display: flex;
  align-items: center; /* Align items in center */
  padding: 10px;
  border-bottom: 1px solid royalblue; /* Changed bottom border to royal blue */
  cursor: pointer; /* Pointer cursor on hover */
}

.dropdown-item:hover {
  background-color: rgba(0, 0, 255, 0.2); /* Slight blue highlight on hover */
}

.dropdown-item img {
  width: 50px; /* Image width */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between image and text */
}

.show-card {
  background: #06172d;
  border: 2px solid rgb(6, 10, 21); /* Royal blue border for show cards */
  padding: 10px;
  margin: 10px auto;
  display: inline-block; /* Inline block for centering */
  border-radius: 8px; /* Rounded corners */
}

.show-card img {
  width: 150px; /* Width for show image */
  height: auto; /* Maintain aspect ratio */
}

#seasonContainer,
#episodeContainer {
  margin: 10px auto; /* Center dropdown containers */
  display: flex;
  flex-direction: column; /* Stack dropdowns vertically */
  align-items: center; /* Center align dropdowns */
}

select {
  padding: 10px;
  font-size: 1em;
  border: 2px solid rgb(6, 13, 33); /* Royal blue border */
  background-color: rgb(17, 18, 32);
  color: white; /* Neon green text */
  width: 300px; /* Adjust width based on content */
  margin: 10px auto; /* Center dropdown */
  border-radius: 8px; /* Rounded corners */
}

#videoContainer {
  margin: 20px auto;
  margin-bottom: 10%;
  background: #06172d;
  border: 2px solid rgb(6, 10, 21); /* Royal blue border for video container */
  width: 80%;
  height: 400px;
  border-radius: 8px; /* Rounded corners */
}

#videoPlayer {
  width: 100%;
  height: 120%;
}

.disclaimer {
  background: #0f2a4d;
  border: #183b5c;
  border-radius: 10px;
  text-align: center;
  max-width: 75%;
  margin: 20px auto;
  padding: 10px;
}

.disclaimer p {
  font-size: 1.5em; /* Slightly smaller text for footer */
  font-family: "TheGoodMonolith", san-serif;
  text-align: center;
  color: #ffffff;
}

.footer-content {
  text-align: center;
}

.footer-content img {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-color: #f7dc0f98;
  border-radius: 10px;
}

.patch {
  color: white;
}

#intro {
  font-family: "TheGoodMonolith", san-serif;
  font-size: 50px;
  line-height: 4.3rem;
  color: white;
  font-weight: 900;
  padding-top: 55px;
}

.title {
  font-family: Inter, sans-serif;
  font-size: 50px;
  line-height: 4.3rem;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(900deg, #f7bc04, #fbdfa5 100%);
  font-weight: 500;
}

#subText {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  text-align: left;
  color: #ffffffa1;
  padding-left: 10px;
  font-weight: 300;
  max-width: 800px;
}

#subText2 {
  font-family: "TheGoodMonolith", san-serif;
  font-size: 35px;
  text-align: left;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(900deg, #f7bc04, #fbdfa5 100%);
  padding-left: 10px;
  font-weight: 300;
  max-width: 800px;
}

#subText3 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #ffffffa1;
  padding: 0 10px;
  font-weight: 300;
  max-width: 800px;
}

.bodyContainer h2 {
  font-family: Inter, sans-serif;
  font-size: 3rem;
  text-align: left;
  margin-bottom: 0%;
}

.bodyBox {
  padding: 20px;
}

.bodyBoxIn {
  margin-top: 3rem !important;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.bodyBoxIn2 {
  max-width: 20%;
  border: 1px solid #112232;
  background: #20456873;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  padding-bottom: 1.5rem !important;
}

.box-title {
  padding-left: 20px;
  padding-right: 20px;
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
}

.box-define {
  padding-left: 22px;
  padding-right: 22px;
  font-family: Inter, sans-serif;
  color: #ffffff8e;
  font-size: 27px;
  font-weight: 100;
}

.box-in {
  border: 1px solid #183b5c;
  background: #162f45;
  border-radius: 10px;
  margin: 12px;
  text-align: left;
  max-width: 47%;
  transition: all 0.3s ease;
}

.box-in:hover {
  background: #0b2135;
}

.box-out {
  flex-wrap: wrap;
  background: #091724;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  margin-top: 30px;
}

.stats-container {
  justify-content: center;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.stat {
  background-color: #22222234;
  border-radius: 15px;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 4px 10px;
}

.number-container {
  display: inline-flex; /* Ensure the number and "K+" are on the same line */
  align-items: baseline; /* Align "K+" to the bottom of the number */
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
}

.number {
  font-size: 48px;
  font-weight: bold;
  display: block;
  color: #fff;
}

.ann {
  background-color: #041020;
  color: yellow;
  border: #080328 1px solid;
  width: 60%;
  margin: 15px auto;
  border-radius: 25px;
  font-family: "TheGoodMonolith", san-serif;
  margin-bottom: 2%;
}

.ann h1 {
  font-size: 30px;
}

.sentence {
  text-align: left;
  margin-left: 7%;
  margin-right: 5%;
  font-size: 25px;
}

#donate {
  width: 25%;
  margin: 0 auto;
  margin-top: 10px;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
  header {
    height: 60px;
    font-size: 0.8em;
  }

  .header-container {
    height: 60px; /* Match header height */
    align-items: center; /* Center all vertically */
  }

  .logowgetroned h1 {
    font-size: 1.2rem;
    line-height: normal;
  }

  .navigation a {
    font-size: 0.9rem;
    line-height: normal;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .logowgetroned img {
    height: 32px; /* Slightly smaller logo for mobile */
  }

  #search-container {
    width: 90%; /* Full width for input on mobile */
    font-size: 1em; /* Slightly smaller font size */
  }

  .dropdown {
    width: 90%; /* Full width for dropdown on mobile */
  }

  select {
    width: 300px; /* Fixed width for select dropdown on mobile */
  }

  .show-card img {
    width: 100px; /* Smaller images on mobile */
  }

  #videoContainer {
    width: 100%; /* Full width video on mobile */
    height: 300px; /* Adjust height for mobile */
    margin-bottom: 25%;
  }
  .footer-content img {
    margin-right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .disclaimer {
    font-size: 0.8em; /* Slightly smaller text for footer */
  }

  .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 2.5rem;
  }

  .box-in {
    margin: 10px;
    max-width: fit-content;
  }

  .box-title {
    font-size: 25px;
  }

  .box-define {
    font-size: 22px;
  }

  .stat {
    padding: 10px 20px;
    box-shadow: 0 2px 5px;
  }

  .number-container {
    font-size: 48px;
  }

  .number {
    font-size: 48px;
  }

  #subText {
    font-size: 1rem;
    padding-left: 0px;
    text-align: center;
    max-width: 100%;
  }

  #subText2 {
    font-size: 2rem;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    padding-left: 0;
    text-align: center;
    max-width: 100%;
  }

  #subText3 {
    font-size: 1.2rem;
    padding: 0;
    text-align: center;
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .bodyContainer h2 {
    font-size: 3rem;
  }

  .bodyBox {
    padding: 0;
  }

  .bodyBoxIn {
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    margin: 0;
    display: block;
    justify-content: center;
    align-items: center;
    height: max-content;
  }

  .bodyBoxIn2 {
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 75%;
    margin: 0 auto;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .ann {
    width: 70%;
    margin: 15px auto;
  }

  .ann h1 {
    font-size: 20px;
  }

  .sentence {
    margin-left: 8%;
    margin-right: 5%;
    font-size: 15px;
  }

  #donate {
    width: 60%;
    margin: 0 auto;
    margin-top: 10px;
  }
}
