@font-face {
  font-family: 'nexa';
  src: url('assets/fonts/nexa.ttf');
}

body {
  font-family: 'nexa', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  font-family: "nexa", sans-serif;
  background-image: url("/agos/assets/bg_tile_blobby.webp");
  background-repeat: repeat;
  background-size: 192px 192px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== NAVBAR ========== */
.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: relative;
  z-index: 10;
}

.navbar-inner {
  background-image: url("/agos/assets/bg_menu_tile_fixed.webp");
  background-repeat: repeat;
  background-size: 256px 256px;
  border-radius: 20px;
  padding: 10px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 1100px;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  margin: 0;
}

.navbar li a {
  font-size: 28px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  -webkit-text-stroke: 1px rgba(100, 120, 160, 0.6);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* ========== EPCARD ========== */

.episode-card {
  display: flex;
  background-color: #F08C50;
  border-radius: 30px;
  padding: 20px;
  margin: 40px auto;
  max-width: 1000px;
  min-width: 80%;
  gap: 20px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.episode-card:hover {
  transform: scale(1.025);
}

.episode-thumbnail {
  width: 300px;
  height: auto;
  border-radius: 10px;
  background: black;
}

.episode-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.episode-info h1 {
  font-size: 1.6rem;
  margin: 0 0 10px 0;
}

.episode-info h1 a {
  text-decoration: none;
  color: white;
}

.episode-info h1 a:hover {
  text-decoration: underline;
}

.release-date {
  font-weight: bold;
  margin-top: 15px;
}

.music-button {
  background-color: #F08C50;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.4em 1.2em;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: none;
  outline: none;
  margin: 1rem auto;
  min-width: unset;
  width: fit-content;
  display: block;
}

.music-button:hover {
  background-color: #e67b40;
}

#rotate-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: #F08C50;
  color: white;
  text-align: center;
  font-weight: bold;
  z-index: 9999;
  font-family: "nexa", sans-serif;
}

@media screen and (orientation: portrait) and (max-width: 500px) {
  #rotate-message {
    display: block;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  width: 100vw;
  position: relative;
  bottom: 0;
  left: 0;
  margin-top: auto;
  overflow: hidden;
}

.footer-inner {
  background-image: url("/agos/assets/bg_menu_tile_fixed.webp");
  background-repeat: repeat;
  background-size: 256px 256px;
  padding: 10px 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: white;
  text-align: center;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.footer-inner p {
  margin: 0 0 10px;
  font-size: 16px;
  -webkit-text-stroke: 0.5px rgba(100, 120, 160, 0.6);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  -webkit-text-stroke: 0.5px rgba(100, 120, 160, 0.6);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.footer-links li a i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

.footer-links i.fa-youtube {
  color: #ff4f4f;
}

.footer-links i.fa-discord {
  color: #7289da;
}
