* {
  padding: 0;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  text-shadow: var(--text-glow, #00a700 1px 1px 2px);
}
p {
  font-weight: bold;
}
html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

html {
  overflow-y: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  background-image: url("./media/logo.gif");
  background-repeat: repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
}

footer {
  margin-top: auto;
  position: relative;
}


/* nav */
#navBG {
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#navLink {
  text-decoration: none;
  flex: 1;
  margin: 0 5px;
}
#navbtn {
  padding: 10px;
  border: 1px solid #00f72d;
  border-radius: 2px;
  background-color: #008017;
  text-decoration: none;
  display: flex;
  justify-content: center;
  margin: 5%;
  border-radius: 10px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  cursor: pointer;
  box-shadow: 1px 1px 10px #00f72d;
}
#navbtn:hover {
  background-color: #00f72d;
  transform: scale(1.05);
}
#navTXT {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
  font-size: medium;
  text-shadow: none;
}
/* discord (still in the nav tho) */
/* #5865f2 = discord color */
#discordBTN {
  width: 210px;
  height: 37px;
  background: linear-gradient(90deg, #5865f2 25%, #135800 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}
#discordBTN:hover {
  background: linear-gradient(90deg, #5865f2 25%, #00f72d 75%);
  transform: scale(1.05);
}
#discordlogo {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
#adalogoicon {
  height: 25px;
  width: 25px;
  margin-left: 5px;
}
#DiscordTXT {
  font-family: "Courier New", Courier, monospace;
  color: black;
  font-size: small;
  text-shadow: none;
}

/* banner*/
#banner {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bannerGradient {
  width: 100%;
  height: 239.625px;
  background: linear-gradient(#0c6700 35%, #00f72d, #00f72d);
}
#gifbanner {
  width: 426px;
  display: block;
  margin: 0 auto;
}
.bannerContent {
  position: relative;
  width: 50%;
  height: 239.625px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bannerText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Courier New", monospace;
  font-size: clamp(0.9rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 550px;
  padding: 0 15px;
  box-sizing: border-box;
  text-shadow: none;
}

/* intro */
.text1 {
  font-family: "Courier New", Courier, monospace;
  font-weight: 600;
  font-size: 40px;
  padding-top: 20px;
  color: #000000;
  text-align: center;
}
.text2 {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 20px;
  padding-top: 20px;
  color: #000000;
  text-align: center;
}

/* Exclusive content video preview */
#exclusiveContent {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 20px 20px 30px;
}
.exclusive-card.is-fullscreen,
.exclusive-card:fullscreen,
.exclusive-card:-webkit-full-screen,
.exclusive-card:-moz-full-screen,
.exclusive-card:-ms-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #101010;
}
.exclusive-card {
  max-width: 320px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #00f72d;
  background: #101010;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25), 0 0 10px #00f72d;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* FULLSCREEN */
.exclusive-card.is-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* VIDEO AREA */
.exclusive-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: var(--exclusive-aspect-ratio, 16/9);
  max-height: 320px;
  min-height: 180px;
  overflow: hidden;
  background: black;
  display: flex;
}

.exclusive-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.exclusive-card.is-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1.1rem;
}

.exclusive-card.is-fullscreen .exclusive-thumbnail {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: var(--exclusive-aspect-ratio, 16/9);
  align-self: flex-start;
  background: transparent;
  max-height: none;
  height: auto;
}

.exclusive-card.is-fullscreen.force-landscape .exclusive-thumbnail {
  aspect-ratio: 16 / 9;
}

.exclusive-card.is-fullscreen.force-landscape-fallback .exclusive-thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vh;
  height: 100vw;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center center;
  background: black;
}

.exclusive-card.is-fullscreen.force-landscape-fallback .exclusive-thumbnail-img {
  display: none;
}

.exclusive-card.is-fullscreen.force-landscape-fallback .exclusive-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusive-card.is-fullscreen.force-landscape-fallback .exclusive-title-box,
.exclusive-card.is-fullscreen.force-landscape-fallback .fullscreen-button-row,
.exclusive-card.is-fullscreen.force-landscape-fallback .fullscreen-seek-row {
  z-index: 2;
}

.exclusive-card.is-fullscreen:not(.portrait) .exclusive-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.exclusive-card.is-fullscreen.portrait {
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

.exclusive-card.is-fullscreen.portrait .exclusive-thumbnail {
  width: 55%;
  height: 100%;
  aspect-ratio: 9 / 16;
  max-height: none;
  background: black;
}

.exclusive-card.is-fullscreen.portrait .exclusive-title-box {
  width: 45%;
  max-width: none;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.exclusive-card.is-fullscreen.portrait .exclusive-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.exclusive-card.is-fullscreen.portrait .fullscreen-btn {
  align-self: flex-start;
  min-width: 0;
}

.exclusive-card.is-fullscreen.portrait .fullscreen-button-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.exclusive-card.is-fullscreen.portrait::after {
  display: none;
}

/* IMAGE */
.exclusive-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


.exclusive-card.portrait .exclusive-thumbnail {
  aspect-ratio: 16 / 9;
}

.exclusive-card.portrait:not(.is-fullscreen) .exclusive-thumbnail-img {
  object-position: center center;
  transform: none;
  object-fit: cover;
}

/* NO CROP IN FULLSCREEN */
.exclusive-card.is-fullscreen:not(.portrait) .exclusive-thumbnail-img {
  object-fit: contain;
  transform: none;
  object-position: left top;
}

.exclusive-card.is-fullscreen .exclusive-play-button {
  display: none;
}

/* PLAY BUTTON */
.exclusive-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.exclusive-play-button::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
}

.exclusive-play-button::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent white;
}

/* FOOTER */
.exclusive-title-box {
  padding: 15px;
}

/* PUSH FOOTER DOWN */
.exclusive-card.is-fullscreen .exclusive-title-box {
  margin-top: 15px;
  width: 70%;              /* match video width */
  max-width: 900px;
}

.exclusive-card.is-fullscreen::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  opacity: 0.6;
  border: none;
}

/* TEXT */
.exclusive-video-title {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 6px;
  text-shadow: none;
}

.exclusive-card.is-fullscreen .exclusive-video-title {
  font-size: 1.4rem;
}

.exclusive-aspect-ratio {
  color: #aaa;
  font-size: 0.85rem;
  text-shadow: none;
  margin-bottom: 6px;
}

.exclusive-fullscreen-description {
  display: none;
  margin: 6px 0 8px;
}

.exclusive-card.is-fullscreen .exclusive-fullscreen-description {
  display: block;
}

.description-heading {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.description-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.exclusive-card.is-fullscreen .exclusive-aspect-ratio,
.exclusive-card.is-fullscreen .exclusive-channel-name,
.exclusive-card.is-fullscreen .fullscreen-btn,
.exclusive-card.is-fullscreen .fullscreen-play-btn,
.exclusive-card.is-fullscreen .fullscreen-time-display {
  font-size: 1rem;
}

/* CHANNEL */
.exclusive-channel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.exclusive-channel-pfp {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #00f72d;
  box-shadow: 0 0 8px #00f72d;
}

.exclusive-views-count {
  color: #00f72d;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 14px;
  margin-bottom: 4px;
  display: block;
  text-transform: lowercase;
}

.exclusive-channel-name {
  color: #00f72d;
  font-weight: bold;
  text-shadow: none;
}

.exclusive-channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exclusive-creator-stats {
  color: #00f72d;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: lowercase;
}

/* BUTTON */
.fullscreen-btn {
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #00f72d;
  background: #008017;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00f72d;
}

.fullscreen-control-group .fullscreen-btn {
  margin-top: 0;
}

.fullscreen-play-btn {
  margin-top: 0;
  margin-left: 0;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #00f72d;
  background: #008017;
  color: black;
  font-weight: bold;
  cursor: pointer;
  min-width: 55px;
  box-shadow: 0 0 10px #00f72d;
}

.exclusive-likes-count {
  color: #00f72d;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 4px;
  display: block;
  text-transform: lowercase;
}

.fullscreen-like-btn {
  margin-bottom: 6px;
  margin-top: 2px;
  padding: 6px 12px;
  width: 70px;
  border-radius: 8px;
  border: 1px solid #00f72d;
  background: #008017;
  color: black;
  cursor: pointer;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 34px;
  text-align: center;
  justify-items: center;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0px;
  padding-top: 2px;
  box-shadow: 0 0 10px #00f72d;
}

.fullscreen-like-btn.liked {
  background: #ffea5c;
  border-color: #e6c200;
  box-shadow: 0 0 15px #ffea5c, 0 0 30px rgba(255, 234, 92, 0.5);
}

.fullscreen-like-btn.liked:hover {
  background: #fff176;
}

.fullscreen-like-btn:disabled {
  cursor: default;
  opacity: 0.95;
}

.fullscreen-button-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
}

.fullscreen-like-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.creator-youtube-stats-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #00f72d;
  background: #008017;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00f72d;
  transition: opacity 0.25s ease;
}

.creator-youtube-stats-btn:hover {
  background: #00f72d;
}

.fullscreen-control-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.fullscreen-play-btn {
  margin-left: 0;
}

.fullscreen-seek-row {
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fullscreen-time-display {
  color: #00f72d;
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 90px;
  text-align: left;
}

.fullscreen-seek-bar {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  cursor: pointer;
}

.fullscreen-seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00f72d;
  border: 2px solid #000;
  margin-top: -4px;
}

.fullscreen-seek-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00f72d;
  border: 2px solid #000;
}

.fullscreen-btn {
  opacity: 1;
  transition: opacity 0.25s ease;
  margin-top: 4px;
}

.fullscreen-exit-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 48px;
}

@media (max-width: 900px) {

  #exclusiveContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
    padding: 0 12px 20px;
  }

  .exclusive-card {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  /* BASE FULLSCREEN LAYOUT */
  .exclusive-card.is-fullscreen {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
  }

  .exclusive-card.is-fullscreen .exclusive-thumbnail {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    aspect-ratio: 16 / 9;
    order: 0;
    background: black;
  }

  .exclusive-card.is-fullscreen .exclusive-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .exclusive-card.is-fullscreen .exclusive-title-box,
  .exclusive-card.is-fullscreen .fullscreen-button-row,
  .exclusive-card.is-fullscreen .fullscreen-seek-row {
    transform: none;
    transform-origin: top left;
    width: 100%;
  }

  .exclusive-card.is-fullscreen .exclusive-title-box {
    padding: 16px;
    margin-top: 12px;
    max-width: none;
  }

  .exclusive-card.is-fullscreen .fullscreen-button-row {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    z-index: 1;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
  }

  .exclusive-card.is-fullscreen .fullscreen-seek-row {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 12px;
    z-index: 1;
  }

  .exclusive-card.is-fullscreen .fullscreen-time-display {
    display: block;
  }

  .exclusive-card.is-fullscreen .fullscreen-btn,
  .exclusive-card.is-fullscreen .fullscreen-play-btn,
  .exclusive-card.is-fullscreen .fullscreen-repeat-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
    min-width: auto;
  }

  .exclusive-card.is-fullscreen.force-landscape .exclusive-thumbnail {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    margin: 0;
    background: black;
  }

  .exclusive-card.is-fullscreen.force-landscape .exclusive-thumbnail-img {
    object-fit: contain;
    object-position: center center;
  }

  .exclusive-card.is-fullscreen.force-landscape.portrait,
  .exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait {
    flex-direction: column;
    align-items: stretch;
  }

  .exclusive-card.is-fullscreen.force-landscape.portrait .exclusive-thumbnail,
  .exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-thumbnail {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
  }

  .exclusive-card.is-fullscreen.force-landscape.portrait .exclusive-title-box,
  .exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-title-box {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 18px 16px;
    gap: 12px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .fullscreen-button-row {
    position: relative;
    width: 100%;
    margin-top: 12px;
    order: 2;
  }

}

@media (max-width: 768px) {
  #exclusiveContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 16px;
    margin: 0 auto;
    padding: 18px 14px 26px;
  }

  .exclusive-card {
    width: min(100%, 400px);
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 8px;
  }

  .exclusive-thumbnail {
    max-height: 190px;
    min-height: 160px;
  }

  .exclusive-title-box {
    padding: 10px 12px 16px;
  }

  .exclusive-video-title {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .exclusive-aspect-ratio,
  .exclusive-channel-name {
    font-size: 0.78rem;
  }

  .exclusive-channel-meta {
    gap: 8px;
  }

  .exclusive-channel-pfp {
    width: 32px;
    height: 32px;
  }

  .fullscreen-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .text1 {
    font-size: 30px;
  }

  .text2 {
    font-size: 15px;
    padding-top: 10px;
  }
}

@media (max-width: 560px) {
  .exclusive-card {
    max-width: 100%;
  }

  .exclusive-title-box {
    padding: 10px;
  }

  .exclusive-video-title {
    font-size: 0.95rem;
  }
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-thumbnail {
  width: 55% !important;
  max-width: 55% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0;
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-title-box,
.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-aspect-ratio,
.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-channel-meta,
.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-video-title {
  display: block !important;
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .exclusive-title-box {
  display: flex;
  width: 45% !important;
  max-width: 45% !important;
  height: 100%;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  overflow-y: auto;
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .fullscreen-button-row {
  position: static;
  width: 100%;
  margin-top: 12px;
  order: 2;
}

.exclusive-card.is-fullscreen.force-landscape.mobile-force-landscape.portrait .fullscreen-exit-wrapper {
  width: 100%;
  justify-content: flex-start;
}

.fullscreen-play-btn.paused {
  background: #008017;
  border-color: #00f72d;
  color: black;
}

.fullscreen-play-btn.playing {
  background: rgb(168, 0, 0);
  border-color: #ff1900;
  color: white;
}

.fullscreen-btn:hover,
.fullscreen-play-btn.paused:hover {
  background: #00f72d;
}

.fullscreen-play-btn.playing:hover {
  background: #ff4c4c;
}

/* design index.html */
/* Socials */
#socials {
  margin: 15px;
  font-family: sans-serif;
}
.socialslink {
  color: red;
  text-decoration: none;
}
.socialslink:hover {
  text-decoration: underline;
}

/* footer */
#footerBG {
  width: 100%;
  height: 200px;
  background-color: rgb(35, 35, 35);
  outline: 5px solid;
  outline-offset: -5px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
.footerTXT {
  color: #ffffff;
  font-family: 'Courier New', Courier, monospace;
  padding: 10px;
  text-shadow: none;
  font-size: large;
}
.footerTXT2 {
  color: #00f72d;
  font-family: 'Courier New', Courier, monospace;
  padding: 10px;
  text-align: end;
  text-shadow: none;
}
.footerLink {
  color: #00f72d;
}
/* design index.html */
.S1 {
  height: 300px;
  width: 4px;
  background-color: #8e8e8e;
  margin-top: 15px;
  margin-left: 25px;
  margin-right: 55%;
  filter: blur(3px);
}
.TXTpart1 {
  margin-left: 15px;
  font-size: larger;
}
.S2 {
  height: 300px;
  width: 10px;
  background-color: #8e8e8e;
  margin-top: 15px;
  margin-right: 25px;
  margin-left: 55%;
  filter: blur(3px);
}
.TXTpart2 {
  font-size: larger;
  margin-right: 15%;
}
#offer {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.SocialLink {
  color: rgb(255, 0, 0);
  text-decoration: none;
}
.SocialLink:hover {
  text-decoration: underline;
}
#boost {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row-reverse;
}
#security {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.stafflist {
  width: 100%;
  margin-bottom: 500px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stafflistBG {
  height: 200px;
  width: 900px;
  margin: 15px;
  background-color: rgb(65, 65, 65);
  border-radius: 10% / 50%;
}
.stafflistContent {
  color: #ededed;
  height: 200px;
  width: 800px;
  margin-left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.PFPandNamestafflist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.stafflistPFP {
  width: 100px;
  height: 100px;
}
.stafflistName {
  font-size: x-large;
  margin-top: 10px;
  text-shadow: none;
}
.stafflistRankDiv {
  font-size: larger;
  text-shadow: none;
}
.stafflistRank2owner {
  color: red;
  margin-top: 30px;
  text-shadow: none;
}
.stafflistRank2Coowner {
  color: #a44a00;
  margin-top: 30px;
  text-shadow: none;
}
.stafflistInfos1 {
  text-align: center;
  text-shadow: none;
}

/* realm MC */
#realmST2 {
  margin-bottom: 15px;
}
.realmTitle {
  margin-left: 15px;
  margin-top: 20px;
  text-decoration: underline;
}
.realmTXT {
  margin: 15px;
}
.realmLink {
  color: blue;
}
/* Realm Tutotial Images */
#realmtuto1 {
  width: 639px;
  height: 178px;
  margin-left: 15px;
}
#realmtuto2 {
  width: 462px;
  height: 104px;
  margin-left: 15px;
}
#realmtuto3 {
  width: 456px;
  height: 100px;
  margin-left: 15px;
}
#realmtuto4 {
  width: 553px;
  height: 248px;
  margin-left: 15px;
}
/* Staff grid container */
.staffGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 60%;
  margin: 50px auto 100px auto;
}

/* Staff buttons */
.staffBtn {
  background-color: #008017;
  border: 2px solid #00f72d;
  border-radius: 10px;
  padding: 25px;
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-align: center;
  user-select: none;
  text-shadow: none;
  box-shadow: 0 0 10px #00f72d;
}

.staffBtn:hover {
  background-color: #00f72d;
  transform: scale(1.05);
}

/* Modal background */
#adminModal {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none; /* hidden by default */
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  align-self: center;
  justify-self: center;
}

/* Show modal when active */
#adminModal.active {
  display: grid;
  place-items: center;
}

/* Modal content box */
#adminModal > div {
  position: relative;
  background-color: #121212;
  color: #ededed;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  padding: 60px 20px 40px 20px;
  text-align: center;
  font-family: "Courier New", monospace;
  box-shadow: 0 0 20px #00f72d;
  margin: 0 auto;
  max-height: calc(100vh - 40px);
  overflow: visible;
}

/* Modal profile picture */
#adminImage {
  position: absolute;
  top: -100px; /* half of image height for overlap */
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00f72d;
  background-color: #000;
  box-shadow: 0 0 20px #00f72d;
}

@media (max-width: 768px) {
  .staffGrid {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px auto 80px auto;
  }

  #adminModal {
    padding: 30px 15px;
  }

  #adminModal > div {
    width: 100%;
    max-width: 100%;
    padding: 90px 18px 28px;
  }

  #adminImage {
    top: -75px;
    width: 120px;
    height: 120px;
  }

  #adminName {
    font-size: 1.6rem;
  }

  #adminInfo {
    font-size: 0.95rem;
  }
}

#adminModalBg {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 998;
}

/* Modal name */
#adminName {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #00f72d;
}

/* Modal rank */
#adminRank {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #00f72d;
  text-shadow: none;
}

/* Modal info */
#adminInfo {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 30px;
  text-shadow: none;
}

#closeAdminModalBtn {
  background-color: #008017; /* red color = #c40a0a */
  border: none;
  color: black;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-family: "Courier New", monospace;
  text-shadow: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

#closeAdminModalBtn:hover {
  background-color: #00f72d;
  transform: scale(1.05);
}
.staff-button:hover {
  background-color: #00f72d;
  color: black;
}

/* booster section */
.boosterGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 60%;
  margin: 50px auto 100px auto;
}

.boosterBtn {
  background-color: #008017;
  border: 2px solid #00f72d;
  border-radius: 10px;
  padding: 25px;
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-align: center;
  user-select: none;
  text-shadow: none;
  box-shadow: 0 0 10px #00f72d;
}

.boosterBtn:hover {
  background-color: #00f72d;
  transform: scale(1.05);
}

/* Modal background */
#boosterModal {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none; /* hidden by default */
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

/* Show modal when active */
#boosterModal.active {
  display: grid;
  place-items: center;
}

/* Modal content box */
#boosterModal > div {
  position: relative;
  background-color: #121212;
  color: #ededed;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  padding: 60px 20px 40px 20px;
  text-align: center;
  font-family: "Courier New", monospace;
  box-shadow: 0 0 20px #00f72d;
  margin: 0 auto;
  max-height: calc(100vh - 40px);
  overflow: visible;
}

/* Modal profile picture */
#boosterImage {
  position: absolute;
  top: -100px; /* half of image height for overlap */
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00f72d;
  background-color: #000;
  box-shadow: 0 0 20px #00f72d;
}

/* Modal name */
#boosterName {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #00f72d;
}

/* Modal rank */
#boosterRank {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #00f72d;
  text-shadow: none;
}

#boosterAmount {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  background-image: linear-gradient(90deg, #00ff00 25%, #c204a8 75%);
  color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Modal info */
#boosterInfo {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 35px;
  text-shadow: none;
}

#closeBoosterModalBtn {
  background-color: #008017; /* red color = #c40a0a */
  border: none;
  color: black;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-family: "Courier New", monospace;
  text-shadow: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

#closeBoosterModalBtn:hover {
  background-color: #00f72d;
  transform: scale(1.05);
}
.booster-button:hover {
  background-color: #00f72d;
  color: black;
}

@media screen and (max-width: 1024px) {
  #navBG {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
  }

  #navbtn {
    padding: 6px 10px;
    margin: 4px;
    border-radius: 8px;
  }

  #navTXT {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow: none;
  }

  /* DISCORD BUTTON */
  #discordBTN {
    width: auto;
    height: auto;
    padding: 5px 8px;
  }

  #DiscordTXT {
    font-size: 0.6rem;
    font-weight: 600;
    text-shadow: none;
  }

  #discordlogo,
  #adalogoicon {
    width: 15px;
    height: 15px;
    margin: 0 3px;
  }

  /* BANNER */
  #bannerText {
    font-size: clamp(0.8rem, 5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0;
  }
  .bannerGradient,
  .bannerContent {
    height: 160px;
  }
  #gifbanner {
    max-width: 290px;
  }

  /* LAYOUT ADJUSTMENTS */
  #socials {
    flex-direction: column;
    gap: 10px;
  }

  /* FOOTER */
  #footerBG {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 20px 0;
    margin-bottom: 0;
  }
  .boosterGrid {
    width: 90%;
    grid-template-columns: 2fr;
  }

  .staffGrid {
    width: 90%;
    grid-template-columns: 2fr;
  }

  .boosterBtn {
    font-size: 1.2rem;
    padding: 20px;
  }
  .staffBtn {
    font-size: 1.2rem;
    padding: 20px;
  }
  /* Keep your existing modal layout */
  #adminModal {
    position: fixed;
    background: none; /* no overlay */
    padding-top: 60px;
    height: auto; /* fit content height */
    width: auto;
    right: 25px;
    nav-down: 25px;
  }

  #adminModal > div {
    width: 95%; /* fit screen width */
    transform: scale(1.5); /* no overscale */
    text-align: center; /* center text */
    margin-left: auto; /* horizontal center */
    margin-right: auto; /* horizontal center */
    position: relative;
  }

  #adminImage {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    background: #000;
  }

  /* Keep your existing text sizes and spacing */
  #adminName {
    font-size: 1.6rem !important;
    margin-top: 25px !important;
  }

  #adminRank {
    font-size: 1.2rem !important;
    margin-top: 10px !important;
  }

  #adminInfo {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-top: 15px;
  }


@media screen and (max-width: 768px) { /* Thats where it starts glitching so I will make a fix */
  #adminName {
    font-size: 1.6rem; /* same */
    margin-top: 5px !important;
    }
  #adminModal > div {
    transform: scale(0.95);
    }
  #boosterName {
    font-size: 1.6rem !important;
    margin-top: 5px !important;
    }
  #boosterModal > div {
    transform: translateX(-15px) scale(0.95);
    }
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body {
    background-size: 200%; /* Zoom out the background */
  }

  #bannerText {
    text-shadow: #0c6700 1px 1px 2px; /* Add text shadow to banner text */
  }
}

/* Search Bar Styles */
#searchBar {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.search-container {
  display: flex;
  gap: 10px;
  width: 95%;
  max-width: 1400px;
  justify-content: center;
}

.search-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #00f72d;
  border-radius: 8px;
  background-color: #000000;
  color: #00f72d;
  font-size: 16px;
  font-family: "Courier New", Courier, monospace;
  box-shadow: 0 0 15px rgba(0, 247, 45, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input::placeholder {
  color: #00a700;
}

.search-input:focus {
  outline: none;
  border-color: #00f72d;
  box-shadow: 0 0 15px rgba(0, 247, 45, 0.5);
}

.clear-search-btn {
  padding: 12px 25px;
  border: 2px solid #00f72d;
  border-radius: 8px;
  background-color: #008017;
  color: #000000;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px #00f72d;
}

.clear-search-btn:hover {
  background-color: #00f72d;
  transform: scale(1.05);
}

.clear-search-btn:active {
  transform: scale(0.95);
}

/* SETTINGS PAGE STYLES */
#settingsContent {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  border: 2px solid #00f72d;
  margin-bottom: 30px;
  box-shadow: 0 0 15px #00f72d, 0 0 30px rgba(0, 247, 45, 0.3);
}

#settingsContent h2 {
  color: #00f72d;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Courier New", Courier, monospace;
}

.setting-group {
  margin-bottom: 20px;
}

.setting-group label {
  display: block;
  color: #00f72d;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Courier New", Courier, monospace;
}

.glow-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

#textGlowSlider {
  width: 255px;
  background: #121212;
  height: 18px;
  border-radius: 10px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 6px #00f72d33 inset;
}

#textGlowSlider::-webkit-slider-runnable-track {
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(to right, #00f72d, #00f72d) no-repeat, #121212;
  background-size: 0% 100%;
}

#textGlowSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #00f72d;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -2px;
  box-shadow: 0 0 8px #00f72d, 0 0 16px #00f72d;
  transition: 0.2s;
}

#textGlowSlider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 12px #00f72d, 0 0 24px #00f72d;
}

#textGlowSlider::-moz-range-track {
  height: 18px;
  border-radius: 10px;
  background: #121212;
}

#textGlowSlider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #00f72d;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px #00f72d, 0 0 16px #00f72d;
}

#textGlowBox {
  min-width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  color: #00f72d;
  border: 2px solid #00f72d;
  border-radius: 6px;
  box-shadow: 0 0 5px #00f72d, 0 0 10px #00f72d inset;
}

#bgGifSelect {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid #00f72d;
  border-radius: 8px;
  background-color: #101010;
  color: #00f72d;
  font-family: "Courier New", Courier, monospace;
  cursor: pointer;
  box-shadow: 0 0 10px #00f72d;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300f72d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

#bgGifSelect:focus {
  outline: none;
  box-shadow: 0 0 15px #00f72d;
}

#bgGifSelect option {
  background-color: #101010;
  color: #00f72d;
  padding: 10px;
}

#saveMessage {
  text-align: center;
  margin-top: 15px;
  font-family: "Courier New", Courier, monospace;
  display: none;
}

