/* ===== essential.css ===== */
:root {
  --card-shadow-color: rgba(0, 0, 0, 0.2);
  --primary-color: #007bff !important;
  --primary-text-color: #007bff;
  --primary-color-hover: #0069d9 !important;
  --disabled-bg-color: #888888;
  --text-color: black;
  --selection-bg-color: black;
  --selection-text-color: white;
  --table-border: #ccc;

  --card-bg-color: #ffffff99;
  --border-color: #7aa5d0;
  --body-bg: #f8f9fa;
  --card-bg-hover: #e2e6ea;
  --main-text-color: #212529;
  --secondary-text-color: #6c757d;
  --navbar-center-color: #007bffca !important;
  --glass-bg: #ffffffad;
  --sidebar-btn-sec-color: #006bff;
  --navbar-end: #006bffca;
  --navbar-light: #009bffca;

  --gw-border: #000000;
  /* Proile.html */
  --avtar-border: #ffffff;

  --arrow-bg: transparent;
  --arrow-color: #23272e;
}

.darkmode {
  --card-shadow-color: rgba(0, 0, 0, 0.2);
  --primary-color: #007bff !important;
  --primary-text-color: #007bff;
  --primary-color-hover: #3a9dff !important;
  --navbar-center-color: #262525ca !important;
  --disabled-bg-color: #2f2f2f;
  --text-color: #ffffff;
  --selection-bg-color: #000000;
  --selection-text-color: #ffffff;
  --table-border: #888888;

  --card-bg-color: #1e1e2e70;
  --border-color: #2a435b;
  --body-bg: #121212;
  --card-bg-hover: #369bff1c;
  --main-text-color: #e1e1e1;
  --secondary-text-color: #a8a8a8;

  --glass-bg: #2d2d2dad;
  --sidebar-btn-sec-color: #111;
  --navbar-light: #353535ca;
  --navbar-end: #111111ca;
  --gw-border: #ffffff;
  /* profile.html */
  --avtar-border: #1e1e2e;

  --arrow-bg: #23272e;
  --arrow-color: #ffd700;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px !important;
  background: #e4e6e9 !important;
  border: 2px solid #000 !important;
  box-shadow: 0 -2px 0 2px #58585a inset !important;
  width: 8px !important;
}

::-webkit-scrollbar-track {
  background: #545456 !important;
}

@font-face {
  font-family: "minecraft";
  src: url("fonts/minecraft_font.ttf") format("tff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MinecraftTen";
  src: url("https://craftersmc.opendevsflow.xyz/src/font.woff2") format("woff2");
}

@font-face {
  font-family: "MyFont";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/pixel.woff2") format("woff2");
  /* src: url('../fonts/minecraft-pro.otf.woff2') format('truetype'); */
  /* src: url('../fonts/MinecraftSeven.woff') format('truetype'); */
  /*     src: url('../fonts/PixelifySans-Medium.ttf') format('truetype'); */
}

@font-face {
  font-family: "monocraftregular";
  src: url("../../fonts/monocraft-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "monocraftregular", monospace !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background-color: #242424 !important;
  color: #ddd !important;
  font-family: "monocraftregular", monospace !important;
}

html {
  overflow-x: hidden !important;
}

.material-icons {
  font-family: "Material Icons" !important;
}

#scrollToTopBtn:hover {
  background-color: #0056b3;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--body-bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader div {
  width: 18px;
  height: 18px;
  background-color: var(--body-bg);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

#loader div:nth-child(1) {
  animation-delay: -0.32s;
}

#loader div:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.hidden {
  display: none;
}

.right,
.left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 10px;
  width: 50px;
  height: 50px;
}

.right .material-icons,
.left .material-icons {
  color: #242424;
  font-size: 2rem;
  cursor: pointer;
}

.right .material-icons:hover,
.left .material-icons:hover {
  border: 2px solid #fff !important;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset !important;
  background: #218306 !important;
  color: #fff !important;
}

span.no_selection {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.navbar {
  background: #c6c6c6;
  color: #3c3c3c;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100000000;
  box-sizing: border-box;
  height: 60px;
  flex-wrap: nowrap;
  animation: slideDown 0.5s ease-out forwards;
  box-shadow: 2px 2px 0 0 #c6c6c6 inset, -1px -1px 0px 3px #777 inset;
  backdrop-filter: blur(6px);
}

.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100000000;
}

@keyframes slideDown {
  0% {
    top: -60px;
  }

  100% {
    top: 0;
  }
}

.menu-icon,
.material-icons {
  font-size: 2rem;
  padding: 5px;
  cursor: pointer;
}

.navbar .material-icons {
  color: #3c3c3c;
}

.navbar a img {
  /* height: 67px; */
  margin-top: 1px;
  margin-left: 25px;
  max-width: calc(100% - 11px);
  object-fit: contain;
  animation: logoPopIn 1.5s ease-out;
}

.navbar a img:hover {
  transform: scale(1.05);
}

.main-name {
  font-size: 2rem;
  color: #3c3c3c;
  font-family: "MinecraftTen" !important;
}

@keyframes logoPopIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: -270px;
  width: 270px;
  height: 100%;
  backdrop-filter: blur(6px);
  box-shadow: 3px 0 12px var(--card-shadow-color);
  padding-top: 0px;
  transition: left 0.4s ease-in-out;
  z-index: 10000000000000000000000000000000000000;
  /* that's a lot of z-index mate */
  border-right: 2px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: #000000ad;
  color: #fff;
}

.sidebar.openSbar {
  left: 0;
}

.sidebar img {
  width: 114px;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  display: block;
}

.sidebar-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.sidebar a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #3c3c3c !important;
  font-size: 1.2rem;
  transition: 0.1s;
  background: #c6c6c6;
  margin: 10px 15px 0 15px;
  text-align: center;
  font-weight: bold;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  border: 2px solid #2a2a2a;
}

.sidebar a:last-child {
  margin-bottom: 10px;
}

.sidebar a:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.sidebar-close {
  position: absolute;
  top: 3px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  transition: 0.5s;
}

.sidebar-close:hover {
  transform: rotate(90deg);
  color: #ff4444;
  text-shadow: 0 0 40px #fff;
}

.sidebar-top-top {
  display: flex;
  flex-direction: row;
}

.sidebar-top-bottom-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 12px 0 12px;
  height: fit-content;
}

.nasty {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

/* .navbar {
  margin-top: 44px;
} */
/* 
@media (max-width: 600px) {
  .navbar {
    margin-top: 56px;
  }
} */

body.no-scroll {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
}

#sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000000000;
  display: none;
}

.sidebar.open ~ #sidebar-overlay {
  display: block;
}

a.button {
  display: inline-block;
  padding: 10px;
  margin: 5px;
  background-color: var(--guides-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
}

footer {
  bottom: 0;
  width: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background: radial-gradient(ellipse at bottom, rgba(99, 80, 255, 0.3), transparent 70%); */
  border-top: 1px solid #333;
  padding: 40px 0 10px 0;
  gap: 10px;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  width: 100%;
}

.background {
  background-position-x: center !important;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: -webkit-fill-available;
  /* background: #222; */
  background: transparent;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}

#footer {
  width: 100%;
  background: url("../../Backgrounds/dirt.webp");
  background-color: #3c3535;
  background-blend-mode: multiply;
  background-size: 100px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: -webkit-fill-available;
  justify-content: space-around;
  gap: 15px;
}

footer h1 {
  font-size: 2rem;
  text-align: center;
  margin: 0;
  color: #fff !important;
}

footer ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 5px;
  margin: 0;
}

footer p {
  margin-left: 2px;
  margin-right: 2px;
}

.links a {
  text-decoration: none;
  padding: 10px;
  color: #d0d1d4 !important;
  line-height: 0 !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.links a:hover {
  color: #29a108 !important;
}

.pages {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.links h2 {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #fff !important;
}

.pages h3 {
  margin-bottom: 12px;
}

.brand img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 10px;
}

.adsbygoogle {
  width: calc(100% - 10px) !important;
  margin: 3rem 0 1rem 0;
  /* border: 2px solid #605b5b; */
  height: auto;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column !important;
    align-items: center;
  }

  .brand img {
    width: 80px;
    height: 80px;
  }

  /*.brand h1 {
        font-size: 1.2em;
    }*/

  .brand {
    margin: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: -webkit-fill-available;
    justify-content: space-around;
    gap: 4rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  footer p {
    font-size: 12px;
    margin-bottom: 50px;
  }
}

@media (max-width: 520px) {
  .main-name {
    display: none;
  }
}

.footer ul li {
  margin: 2px 0 !important;
  padding: 0 !important;
}

.ui {
  width: 16px;
  filter: contrast(0);
}

.ui-l {
  width: 16px;
}
.footer a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
}

.footer a:hover {
  color: limegreen;
}

.footer ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.footer ul li {
  margin: 0;
  padding: 0;
}

.footer a.dev-link {
  color: white;
  font-weight: bold;
  background: none;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
}

.footer a.dev-link:hover {
  background: linear-gradient(270deg, red, orange, limegreen, deepskyblue);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: devGradientHover 3s ease infinite;
}

@keyframes devGradientHover {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#float {
  display: flex;
  background: #161a1c !important;
  z-index: 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
  position: fixed;
  left: calc(100% - 4rem);
  top: calc(100% - 8rem);
  border: none;
  padding: 3px;
  border-radius: 0px;
  color: white;
}

#homeBtn,
#ai,
#scrollToTopBtn {
  background: #222;
  border-radius: 0px;
  display: none;
  width: 46px;
}

#homeBtn:hover,
#ai:hover,
#scrollToTopBtn:hover {
  background: #58585a !important;
}

#sweepBtn {
  transform: rotate(180deg);
  background: #58585a !important;
  border-radius: 0px !important;
  transform: rotate(180deg);
  transition: transform 0.3s !important;
  box-shadow: -1px -1px 0px 3px #777 inset, 2px 2px 0 0 #c6c6c6 inset;
}

.sidebar-login-btn {
  color: #3c3c3c !important;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
  border: 2px solid #2a2a2a !important;
  background: #c6c6c6 !important;
  border-radius: 0 !important;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 auto 10px auto;
  display: block;
}

.btn {
  background: #c6c6c6;
  color: #3c3c3c !important;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 15px 10px 15px;
  transition: all 0.1s;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
}

.btn:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
  transition: all 0.1s;
}

.btn.active {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

/* ===== home.css ===== */
/* :root {
    --body-bg: #f8f9fa;
    --container-bg: #ffffff;
    --primary-color: #222;
    --secondary-color: #fff;
    --primary-bg: #f9f9f9;
    --primary-blue: #007bff;
    --secondary-blue: #0056b3;
    --primary-dark: #48494b;
    --primary-color-hover: #0069d9;
    --primary-text-color: #212529;
    --secondary-text-color: #6c757d;
    --border-color: #e9ecef;
    --card-hover: #e2e6ea;
}

.darkmode {
    --primary-color: #fff;
    --body-bg: #121212;
    --container-bg: #1e1e1e;
    --secondary-color: #fff;
    --primary-bg: rgb(30, 30, 46);
    --primary-blue: rgb(17, 17, 17);
    --secondary-blue: #0056b3;
    --primary-dark: #fff;
    --primary-color-hover: #3a9dff;
    --primary-text-color: #e1e1e1;
    --secondary-text-color: #a8a8a8;
    --border-color: #333333;
    --card-hover: #3a3a3a;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "monocraftregular", monospace !important;
}

body {
  background: var(--body-bg);
  color: var(--main-text-color);
  overflow-x: hidden;
  padding-bottom: calc(10px + 3rem);
}

/* .bg-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    background: url("../Backgrounds/welcome_skyline.webm");
} */

.hero-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 0;
}

.main-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  width: 100%;
}

.hero {
  flex: 1;
  direction: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  height: calc(100vh - 56px);
  z-index: 3;
  animation: fadeIn 1.5s ease-out;
}

.background {
  background: url("../../Backgrounds/IMG_4504.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@keyframes fadeIn {
  0% {
    scale: 1.1;
    opacity: 0.3;
  }

  100% {
    scale: 1;
    opacity: 1;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-top: 12rem;
  margin-bottom: 20px;
}

.hero p {
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.startButton {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgb(0, 123, 255);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 9999;
}

.startButton:hover {
  background: rgb(0, 123, 255);
  box-shadow: 0 0 30px 5px rgba(0, 123, 2255, 0.815);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.startButton:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

.startButton::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.startButton:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

.cta-btn {
  background: #c6c6c6;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 24px;
  padding: 10px 20px 15px 20px;
  transition: all 0.1s;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
}

.cta-btn:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.bottom-nav {
  background: var(--card-bg-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 20;
}

.bottom-nav a {
  text-decoration: none;
  color: var(--main-text-color);
  font-size: 0.8rem;
  text-align: center;
}

.bottom-nav a:hover {
  color: var(--primary-color-hover);
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.bottom-nav .nav-item span {
  font-size: 1.5rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-radius: 20px;
  width: 100%;
  height: fit-content;
  margin: auto;
  background-color: transparent;
}

.card {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  margin: 8px 8px;
  padding: 25px;
  min-height: 14rem;
  flex: 1 1 calc(20% - 10px);
  max-width: 30vw;
  min-width: 26vw;
  .card:hover {
    transform: scale(1.05);
    border: 2px solid var(--border-color);
    box-shadow: 0 0 10px 0 var(--border-color);
  }
  background-color: var(--card-bg-color);
  transition: transform 0.3s;
}

.card.development::before {
  background: #000000e3;
  z-index: 10;
  content: "Under Development\A(Coming Soon)";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  white-space: pre;
  text-align: center;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}

@media (max-width: 425px) {
  .card {
    min-width: -webkit-fill-available;
  }
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.534),
    rgba(0, 0, 0, 0.796)
  );
}

.card-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  z-index: 2;
  text-align: left;
  padding: 10px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.card p {
  font-size: 14px;
  margin: 5px 0;
  opacity: 0.9;
}

.card button {
  background: #c6c6c6;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 15px 10px 15px;
  transition: all 0.1s;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.card button:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.card button svg {
  fill: #3c3c3c;
}

.card button:hover svg {
  fill: #fff;
}

footer {
  margin-bottom: 60px !important;
}

@media (max-width: 768px) {
  body {
    align-items: flex-start;
    height: auto;
    padding-bottom: calc(15px + 5rem);
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 400px;
    margin: 4px;
  }

  .card:hover {
    transform: none;
  }

  .main-container {
    flex-direction: column;
    align-items: center;
  }

  #notice-board {
    margin: 10px 0 !important;
  }
  .notice-board {
    max-width: 30rem !important;
  }
}

footer {
  padding: 40px 0 25px 0 !important;
}

.notice-board {
  max-width: 18rem;
  background: #00000070;
  box-shadow: 0 2px 12px #0002;
  border: 3px solid #c6c6c6;
  display: flex;
  flex-direction: column;
  width: 90%;
  align-items: center;
  margin-top: 2rem;
}

.notice-board h2 {
  margin: 0;
  padding: 0;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  background-color: #c6c6c6;
  color: #3c3c3c;
  width: 100%;
  justify-content: center;
  box-shadow: 2px 2px 0 0 #c6c6c6 inset, -1px -1px 0px 3px #777 inset;
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }

  .notice-board {
    margin-right: 2rem;
  }

  footer {
    margin-bottom: 0 !important;
  }
}

/* ====== about.css ====== */

.about {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--body-bg);
  color: var(--main-text-color);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  margin-top: 5rem;
  border-radius: 15px;
}

.about-background {
  background: url("../../Backgrounds/IMG_4504.webp");
  background-color: #716363;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-header {
  padding: 40px;
}

.about-section {
  background: #00000099;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.about-h1,
.about-h2 {
  color: var(--primary-text-color);
}

.about-ul {
  list-style-type: none;
  padding: 0;
}

.about-ul li {
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}

.about-team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.about-member {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  width: 220px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.advisor {
  background: #0080ff38;
  border: 2px solid #0080ff;
}

.writer {
  background: #001fff38;
  border: 2px solid #001fff;
}

.coder {
  background: #ff000038;
  border: 2px solid #f00;
}
.data {
  background: #21b59538;
  border: 2px solid #21b595;
}

.designer {
  background: #ff00f838;
  border: 2px solid #ff00f8;
}

.helper {
  background: #ffd30d38;
  border: 2px solid #ffd30d;
}

.about-member a {
  text-decoration: none;
  color: white;
}

.about-member h3 {
  margin: 10px 0 5px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.about-member p {
  font-size: 14px;
}

.about-link {
  color: #8be9fd;
  text-decoration: none;
}

.about-link:hover {
  text-decoration: underline;
}

.about-pfp {
  width: 100px;
  height: 100px;
  border-radius: 150px;
}

.about-tech-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 20px;
}

/* ====== End of home.css ====== */
/* ====== timer.css ====== */

/* :root {
    --color-primary: #007bff;
    --title-primary: #007bff;
    --color-primary-hover: #0056b3;
    --color-text-dark: #333;
    --color-border: #666;
    --color-white: white;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-background: #f9f9f9;
}

.dark-mode {
    --color-primary: #007bff;
    --title-primary: white;
    --color-primary-hover: #0056b3;
    --color-text-dark: #eee;
    --color-border: #777;
    --color-white: white;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-background: #333;
}
 */
button.nav-btn {
  color: white;
  border: none;
  background-color: var(--primary-text-color);
  padding: 10px 15px;
  border-radius: 5px;
}

.card-h3 {
  color: #242424;
  margin-bottom: 5px;
  text-align: center;
  font-family: "monocraftregular", monospace !important;
  background: #c6c6c6;
  padding: 10px;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}

.timer-container {
  width: 90%;
  margin-top: 10rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-family: "monocraftregular", monospace !important;
  background: #11111196;
  border: 2px solid #111;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.813) !important;
  border: 2px solid #c6c6c6;
  text-align: center;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

.progress {
  height: 30px;
  margin-bottom: 20px;
  margin: 0 10px;
  border-radius: none;
}

.progress-bar {
  transition: width 1s ease;
  background: linear-gradient(
    90deg,
    rgba(0, 150, 0, 1) 25%,
    rgba(0, 150, 0, 0.5) 50%,
    rgba(0, 150, 0, 1) 75%
  );
  background-size: 200% 100%;
  animation: progress-bar-stripes 3s linear infinite;
  border-radius: none;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: 0 0;
  }
}

.timer {
  font-size: 2rem;
  font-weight: bold;
  color: #c6c6c6;
}

.timer-divider {
  margin: 30px 0;
  border-top: 1px solid var(--border-color);
}

.row {
  margin-top: 20px;
}

.timer-interest-list {
  margin-top: 20px;
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
  background-color: transparent;
}

.timer-interest-item {
  padding: 5px 0;
  border-bottom: 1px solid var(--boder-color);
}

#nextInterestBtn {
  font-style: italic;
  background-color: var(--primary-text-color);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 100%;
  font-size: 1.1rem;
}

#nextInterestBtn:hover {
  background-color: var(--primary-color-hover);
}

.timer-collapsible {
  background: #c6c6c6;
  align-items: center;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.1s;
  text-transform: capitalize;
  cursor: pointer;
  /* Add cursor pointer */
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
  padding: 10px 20px;
}

.timer-collapsible:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.timer-content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: transparent;
  margin-top: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.timer-event-container {
  margin-bottom: 20px;
}

.timer-interest-list-container {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 10px;
  background-color: transparent;
  margin-top: 10px;
}

.timer-interest-list-container p {
  padding-bottom: 5px;
  padding-top: 5px;
  border-bottom: var(--border-color) 1px solid;
}

.timer-table {
  background-color: transparent;
}

.timer-event-list-container {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 10px;
  background-color: transparent;
  margin-top: 10px;
}

.timer-event-list-container div {
  padding-bottom: 5px;
  padding-top: 5px;
  border-bottom: var(--border-color) 1px solid;
}

.bank-background {
  background: url("../../Backgrounds/image8298.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cake-background {
  background: url("../../Backgrounds/Event_New_Year_Celebration.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.zoo-background {
  background: url("../../Backgrounds/imag38606-003424.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.zoo-pet-background {
  background: url("../../Backgrounds/imag38606-003424.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* ====== End of timer.css ====== */
/* ====== SkillCalculator.css ====== */
.skill-calc-container {
  position: relative;
  width: 95%;
  max-width: 600px;
  overflow: hidden;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  margin: 5rem auto;
  border: 2px solid #777;
}

.skill-calc-inner-container {
  margin: 1rem;
  width: auto;
  justify-content: center;
  align-items: center;
}

.skill-calc-container h3 {
  text-align: center;
  padding: 10px;
  background-color: #c6c6c6 !important;
  color: #242424;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 2px #777 inset !important;
  width: 100%;
}

.skill-calc-grp-main {
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.skill-calc-grp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skill-calc-input {
  display: flex;
  font-family: "monocraftregular", monospace !important;
  width: 90%;
  max-width: 600px;
  padding: 5px 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  display: block;
  border: 2px solid #1a1a1b;
  font-size: 16px;
  color: #fff;
  outline: none;
  background-color: #313233;
  box-shadow: 0 4px 0 0 #242425 inset;
}
#currentExp {
  margin-top: 20px;
  margin-bottom: 20px;
}

.skill-calc-result {
  margin: 10px auto;
}

.skill-calc-background {
  background: url("../../Backgrounds/1.webp");
  background-color: #5e5454;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ====== End of SkillCalculator.css ====== */
/* ====== pet-exp-calc.css ====== */
.pet-exp-calc-container {
  position: relative;
  width: 95%;
  max-width: 600px;
  overflow: hidden;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  margin: 5rem auto;
  border: 2px solid #777;
  background-color: #00000070;
}

.pet-exp-calc-inner-container {
  margin: 1rem;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.pet-exp-calc-container h3 {
  text-align: center;
  padding: 10px;
  background-color: #c6c6c6 !important;
  color: #242424;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 2px #777 inset !important;
  width: 100%;
}

.pet-exp-calc-grp-main {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.pet-exp-calc-grp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .pet-exp-calc-grp-main {
    flex-direction: column;
    justify-content: centre;
    align-items: space-around;
  }
}

input[type="range"] {
  width: 100%;
  margin: 10px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 14px;
  border-radius: 0;
  border: 2px solid #222;
  background: linear-gradient(
    to right,
    #6c8c3c 0%,
    #6c8c3c var(--percent, 0%),
    #ccc var(--percent, 0%),
    #ccc 100%
  );
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #222;
  border-radius: 0;
  cursor: pointer;
  margin-top: -5px;
  background: #fff;
  position: relative;
  z-index: 2;
  border-bottom: #5c5c5d 4px solid;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #e0e0e0;
}

input[type="number"] {
  display: flex;
  font-family: "monocraftregular", monospace !important;
  width: 90%;
  max-width: 600px;
  padding: 5px 10px;
  margin: 15px auto;
  display: block;
  border: 2px solid #1a1a1b;
  font-size: 16px;
  color: #fff;
  outline: none;
  background-color: #313233;
  box-shadow: 0 4px 0 0 #242425 inset;
}

input[type="range"]::-moz-range-track {
  height: 14px;
  border-radius: 0;
  border: 2px solid #222;
  background: #ccc;
}

input[type="range"]::-moz-range-progress {
  background-color: #6c8c3c;
  height: 14px;
  border-radius: 0;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid #222;
  border-radius: 0;
  cursor: pointer;
  background: #fff;
}

input[type="range"]::-ms-fill-lower {
  background: #6c8c3c;
}

input[type="range"]::-ms-fill-upper {
  background: #ccc;
}

.pet-exp-calc-background {
  background: url("../../Backgrounds/3.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ====== End of pet-exp-calc.css ====== */
/* ====== categories.css ====== */
/* Main Styles */
/* @font-face {
    font-family: 'MinecraftTen';
    src: url('https://craftersmc.opendevsflow.xyz/src/font.woff2') format('woff2');
}

@font-face {
    font-family: 'MyFont';
    font-style: bold;
    font-weight: 400;
    src: url('../fonts/MinecraftRegular-Bmg3.otf') format('opentype');
} */

/* :root {
    --card-bg-color: #ffffff;
    --border-color: #7aa5d0;
    --body-bg: #f8f9fa;
    --card-bg-hover: #e2e6ea;
    --main-text-color: #212529;
    --secondary-text-color: #6c757d;
    --primary-color: #007BFF;
}

.darkmode {
    --card-bg-color: #1e1e1e;
    --border-color: #2a435b;
    --body-bg: #121212;
    --card-bg-hover: #369bff1c;
    --main-text-color: #e1e1e1;
    --secondary-text-color: #a8a8a8;
    --primary-color: #007BFF;
} */

/* body {
    font-family: 'MyFont';
    background-color: var(--body-bg);
    color: var(--main-text-color);
    margin: 0;
    padding: 20px;
} */

.category-item-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category-item-card {
  width: 90%;
  max-width: 362px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-family: "MyFont";
  background: #11111196;
  border: 2px solid #111;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.813) !important;
  border: 2px solid #c6c6c6;
}

/* 
.item-card:hover {
    background: var(--card-bg-hover);
} */

.category-item-card img {
  max-width: 100px;
  width: 100px;
  height: auto;
  display: block;
  margin-left: auto;
  border-radius: 4px;
  float: right;
}

.category-price-with-coin {
  font-family: "MyFont";
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.category-coin {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
}

.category-main-data {
  display: flex;
  flex-direction: row-reverse;
  width: auto;
  margin: 20px;
  align-items: center;
}

.category-item-card h2 {
  color: #242424;
  margin-bottom: 5px;
  text-align: center;
  font-family: "MyFont";
  background: #c6c6c6;
  padding: 10px;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}

.category-item-card p {
  margin: 10px;
  font-family: "MyFont";
}

.category-item-card .description {
  font-family: "MyFont";
  font-size: 14px;
  margin-bottom: 10px;
}

.category-item-card strong {
  font-family: "MyFont";
  font-weight: bold;
}

.category-rarity-display {
  margin-left: 0;
  float: left;
  margin-bottom: 10px;
}

.category-rarity-display img.rarity {
  height: 24px;
  width: auto;
  max-width: none;
  margin-right: 5px;
}
.stable {
  color: green;
}
.underpaid {
  color: red;
}
.overpaid {
  color: yellow;
}

/* ====== End of categories.css ====== */
/* ====== leaderboards.css ====== */
.slay-lb-background {
  background: url("../../Backgrounds/IMG_4500.webp");
  background-color: #5e5454;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.col-lb-background {
  background: url("../../Backgrounds/IMG_4500.webp");
  background-color: #5e5454;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.custom-navbar {
  background: #c6c6c6;
  color: #3c3c3c;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000000;
  box-sizing: border-box;
  height: 60px;
  flex-wrap: nowrap;
  animation: slideDown 0.5s ease-out forwards;
  box-shadow: 2px 2px 0 0 #c6c6c6 inset, -1px -1px 0px 3px #777 inset;
  backdrop-filter: blur(6px);
}

.custom-navbar a img {
  height: 67px;
  margin-left: 25px;
  max-width: calc(100% - 10px);
  object-fit: contain;
  animation: logoPopIn 1.5s ease-out;
}

.custom-navbar .material-icons {
  color: #fff;
}

.custom-navbar .material-icons:first-child {
  margin-left: 0;
  left: 0;
}

.custom-navbar a img:hover {
  transform: scale(1.05);
}

.custom-navbar .right,
.custom-navbar .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 10px;
  width: 50px;
  height: 50px;
}

.custom-navbar .right .material-icons,
.custom-navbar .left .material-icons {
  color: #242424;
  font-size: 2rem;
  cursor: pointer;
}

.custom-navbar .right .material-icons:hover,
.custom-navbar .left .material-icons:hover {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  color: #242424 !important;
}

.custom-navbar span.no_selection {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.lb-h3 {
  margin-bottom: 8px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  background-color: #c6c6c6;
  color: #3c3c3c;
  width: 100%;
  justify-content: center;
  box-shadow: 2px 2px 0 0 #c6c6c6 inset, -1px -1px 0px 3px #777 inset;
  padding: 10px;
}

.lb-container {
  max-width: 900px;
  margin: 5rem auto;
  background: #00000070;
  align-items: center;
  display: flex;
  flex-direction: column;
  border: 2px solid #c6c6c6;
}

.lb-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.lb-tab {
  border: 2px solid #fff;
  background-color: #8b8b8b;
  color: white;
  padding: 2px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.lb-tab.active {
  background-color: #c3c1c4;
}

.lb-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  justify-items: center;
  padding-bottom: 64px;
}

.lb-collection-item {
  height: 80px;
  width: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 8px;
}

.lb-collection-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  background-color: #8b8b8b;
  z-index: -1;
  padding: 4px;
}

.lb-collection-item p {
  color: white;
}

.lb-collection-item img {
  width: 60px;
}

.lb-collection-item:hover,
.lb-collection-item.active {
  z-index: 0;
  box-shadow: 4px 0 10px var(--primary-color), -4px 0 10px rgb(12, 0, 255);
}

.lb-leaderboard {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-table {
  width: 90%;
  border-collapse: collapse;
  overflow: hidden;
  margin: 40px 20px 20px 20px;
}

.lb-table th,
.lb-table td {
  padding: 12px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.lb-table th {
  background: var(--primary-color);
  color: white;
}

.lb-table tbody tr:nth-child(1) {
  background: #ffd700;
  color: black;
}

.lb-table tbody tr:nth-child(2) {
  background: #c0c0c0;
  color: black;
}

.lb-table tbody tr:nth-child(3) {
  background: #cd7f32;
  color: white;
}

@media (max-width: 600px) {
  .lb-tab {
    padding: 8px 15px;
  }
}

.sidelid {
  margin-top: 60px;
  width: 250px;
  height: 100vh;
  background-color: #00000090;
  padding: 20px 20px 60px 20px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 10000000000000000000000000000000000000;
}

.sidelid h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.sidelid a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px;
  transition: 0.2s;
  font-size: 18px;
  width: 45px;
}

/*.sidelid a:hover {
  background-image: linear-gradient(135deg, rgb(166, 0, 255), rgb(0, 0, 255));
}*/

/* Main Content */
.lb-content {
  margin-left: 250px;
  /* Push content to the right */
  flex: 1;
}

/* Open button (for small screens) */
.openbtn {
  display: none;
}

.openbtn:hover {
  cursor: pointer;
}

#mobileGuide {
  display: none;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidelid {
    width: 0;
    padding: 20px 20px 60px 20px;
    left: -250px;
    margin-top: 0px;
  }

  .sidelid.openlid {
    width: 250px;
    padding: 20px 20px 60px 20px;
    left: 0;
  }

  .closebtn {
    display: block;
  }

  .content {
    margin-left: 0;
  }

  .openbtn {
    display: block;
  }

  #mobileGuide {
    display: block;
  }

  .button-tip {
    display: block !important;
  }

  .button-wrapper {
    display: inline-block !important;
  }
}

.button-wrapper {
  position: relative;
  display: none;
}

.button-tip {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 180%;
  left: 128%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  animation: colorChange 1.2s infinite alternate;
  display: none;
}

@keyframes colorChange {
  0% {
    color: #363636;
  }

  25% {
    color: white;
  }

  50% {
    color: #363636;
  }

  75% {
    color: white;
  }

  100% {
    color: #363636;
  }
}

.button-tip::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 5px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid var(--primary-color);
  transform: rotate(-45deg);
}

details {
  width: 300px;
  max-width: 600px;
  border: 1px solid #ccc;
  padding: 10px;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  max-height: 100px;
  transition: max-height 0.9s ease;
  color: var(--text-color);
  font-size: clamp(14px, 2vw, 18px);
}

details[open] {
  max-height: 500px;
  background: #fff;
  border-color: #999;
  background-color: rgba(255, 255, 255, 0.2);
}

summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  text-align: center;
}

summary::-webkit-details-marker {
  display: none;
}

.lb-message {
  margin-top: 10px;
  color: var(--text-color);
}

@media (min-width: 1024px) {
  details {
    width: 100%;
    max-width: none;
  }
}

/* ====== End of leaderboards.css ====== */
/* ====== slayers-lb.css ====== */

.slay-lb-h3 {
  margin-bottom: 8px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  background-color: #c6c6c6;
  color: #3c3c3c;
  width: 100%;
  justify-content: center;
  box-shadow: 2px 2px 0 0 #c6c6c6 inset, -1px -1px 0px 3px #777 inset;
  padding: 10px;
}

.slay-lb-container {
  max-width: 900px;
  margin: 5rem auto;
  background: #00000070;
  align-items: center;
  display: flex;
  flex-direction: column;
  border: 2px solid #c6c6c6;
}

.slay-lb-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.slay-lb-tab {
  border: 2px solid #fff;
  background-color: #8b8b8b;
  color: white;
  padding: 2px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.slay-lb-tab.active {
  background-color: #c3c1c4;
}

.slay-lb-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  justify-items: center;
  padding-bottom: 64px;
}

.slay-lb-collection-item {
  height: 80px;
  width: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 8px;
}

.slay-lb-collection-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  background-color: #8b8b8b;
  z-index: -1;
  padding: 4px;
}

.slay-lb-collection-item p {
  color: white;
}

.slay-lb-collection-item img {
  width: 40px;
}

.slay-lb-collection-item:hover,
.slay-lb-collection-item.active {
  z-index: 0;
  box-shadow: 4px 0 10px var(--primary-color), -4px 0 10px rgb(12, 0, 255);
}

.slay-lb-leaderboard {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slay-lb-table {
  width: 90%;
  border-collapse: collapse;
  overflow: hidden;
  margin: 40px 20px 20px 20px;
}

.slay-lb-table th,
.slay-lb-table td {
  padding: 12px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.slay-lb-table th {
  background: var(--primary-color);
  color: white;
}

.slay-lb-table tbody tr:nth-child(1) {
  background: #ffd700;
  color: black;
}

.slay-lb-table tbody tr:nth-child(2) {
  background: #c0c0c0;
  color: black;
}

.slay-lb-table tbody tr:nth-child(3) {
  background: #cd7f32;
  color: white;
}

@media (max-width: 600px) {
  .slay-lb-tab {
    padding: 8px 15px;
  }
}

/* ====== End of slayers-lb.css ====== */
/* ====== bug-hunter.css ====== */
.bug-background {
  background: url("../../Backgrounds/IMG_4502.webp");
  background-color: #5e5454;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bug-hunters-container {
  padding: 2rem;
  max-width: 1000px;
  margin: 10vh auto;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}

.bug-h1 {
  color: #4a90e2;
  text-align: center;
  margin-bottom: 2rem;
}

.bug-intro-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.bug-hunters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bug-hunter-card {
  background-color: #282828;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bug-hunter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: #4a90e2;
}

.bug-hunter-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #4a90e2;
}

.bug-top-hunter-avatar {
  width: 120px;
  height: 120px;
}

.bug-hunter-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #fff;
  word-break: break-word;
  max-width: 100%;
}

.bug-hunter-ign {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.bug-hunter-bugs {
  font-size: 1.1rem;
  color: #4a90e2;
  margin-bottom: 1rem;
}

.bug-hunter-rank {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.bug-rank-1 {
  background-color: gold;
  color: #000;
}

.bug-rank-2 {
  background-color: silver;
  color: #000;
}

.bug-rank-3 {
  background-color: #cd7f32; /* bronze */
  color: #000;
}

.bug-rank-other {
  background-color: #4a90e2;
  color: #fff;
}

.bug-top-hunters {
  margin-bottom: 3rem;
}

.bug-top-hunters .bug-hunters-grid {
  grid-template-columns: repeat(3, 1fr);
}

.bug-top-hunters .bug-hunter-card {
  padding: 2rem;
}

.bug-trophy-container {
  position: relative;
  margin-bottom: 1rem;
}

.bug-trophy-icon {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  z-index: 2;
}

.bug-gold {
  color: gold;
}

.bug-silver {
  color: silver;
}

.bug-bronze {
  color: #cd7f32;
}

.bug-loading {
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .bug-hunters-container {
    padding: 1.5rem;
  }

  .bug-hunters-grid {
    grid-template-columns: 1fr;
  }

  .bug-top-hunters .bug-hunters-grid {
    grid-template-columns: 1fr;
  }
}

.bug-mat-icons {
  vertical-align: middle;
}
/* ====== End of bug-hunter.css ====== */
/* ====== event-log.css ====== */
.event-log-background {
  background: url("../../Backgrounds/mines.webp");
  background-color: #302b2b;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.event-log-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 20px 20px 20px;
  max-width: 100%;
  margin: 10rem auto;
}

.event-log-card {
  position: relative;
  width: calc(100% / 3 - 20px);
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  background-color: #fff;
  cursor: pointer;
}

.event-log-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.event-log-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.8)
  );
}

.event-log-card.development::before {
  background: #000000e3;
  z-index: 10;
  content: "Under Development\A(Coming Soon)";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  white-space: pre;
  text-align: center;
}

.event-log-card-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  z-index: 2;
  text-align: left;
  padding: 10px;
}

.event-log-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.event-log-card p {
  font-size: 14px;
  margin: 5px 0;
}

.event-log-card button {
  background: #c6c6c6;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 15px 10px 15px;
  transition: all 0.1s;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.event-log-card button:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

@media (max-width: 768px) {
  .event-log-card-container {
    flex-direction: column;
    align-items: center;
  }

  .event-log-card {
    width: 90%;
    max-width: 400px;
  }
}
/* ====== End of event-log.css ====== */
/* ====== form.css ====== */
.form-background {
  background: url("../../Backgrounds/IMG_4498.webp");
  background-color: #716363;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.form-card-container {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem auto;
  flex-direction: column;
}

#applicationForm {
  margin-top: 75px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 90%;
  background: #00000099;
  padding-top: 0px;
  max-width: 800px;
  border: 2px solid #c6c6c6;
}

.form-h3 {
  font-family: "MyFont";
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  background: transparent;
  padding: 8px;
  color: #242424;
  background-color: #c6c6c6;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}

.form-form-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.form-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-form input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
  color: var(--main-text-color);
  background: transparent;
}

.form-form textarea {
  box-sizing: border-box;
  font-size: 14px;
  width: 100%;
  height: 70px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  color: var(--main-text-color);
  background: transparent;
}

.form-form input[type="radio"] {
  font-size: 1px;
  margin: 0px;
  padding: 0px;
  color: var(--main-text-color);
  background: transparent;
}

.form-panel {
  position: sticky;
  top: 50%;
  left: 50%;
  transform: translate(-25%, -50%) scale(1);
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999999;
  width: 300px;
  display: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: lime;
  border: 1px solid lime;
}

.form-panel.show {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.form-form textarea {
  resize: vertical;
}

.form-form button {
  background: #c6c6c6;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 15px 10px 15px;
  transition: all 0.1s;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  border: 2px solid #2a2a2a;
  width: 100%;
  text-align: center;
}

.form-form button:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.form-success-message,
.form-error-message {
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
}

.form-success-message {
  background-color: #d4edda;
  color: #155724;
}

.form-error-message {
  background-color: #f8d7da;
  color: #721c24;
}

.form-top-faq {
  font-weight: bold;
  color: red;
  margin-left: 200px;

  font-size: 3rem;
}
.form-faq-question {
  color: yellow;
  font-size: 2rem;
}
.form-faq-answer {
  color: green;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .form-container {
    margin: 20px;
    padding: 15px;
  }
}

.form-card-content {
  width: 100%;
  padding: 12px;
}

/* FAQ Dropdown Styles */
.form-faq-section {
  margin: 2em auto;
  max-width: 95%;
}

.form-faq-dropdown {
  margin-bottom: 1em;
  border: 1px solid #ccc;
  background: #222;
}

.form-faq-question {
  width: 100%;
  text-align: left;
  background: #333;
  color: #fff;
  border: none;
  outline: none;
  padding: 1em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}

.form-faq-question.active,
.form-faq-question:hover {
  background: #444;
}

.form-faq-answer {
  background: #222;
  color: #ccc;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  padding: 0 1em;
}

.form-faq-answer p {
  margin: 1em 0;
  font-size: 18px;
}

/* ====== End of form.css ====== */
/* ====== gw-details.css ====== */
.gw-detail-background {
  background: url("../../Backgrounds/IMG_4498.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gw-detail-status-active {
  color: var#37fd12;
}

.gw-detail-status-scheduled {
  color: var#ffd700;
}

.gw-detail-status-ended {
  color: var#dc3545;
}

.gw-detail-giveaway-details-container {
  max-width: 1100px;
  width: 100%;
  margin: 10rem auto 0 auto;
}

.gw-detail-giveaway-details-card {
  position: relative;
  background: #00000070;
  border: 2px solid #c6c6c6;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeIn 0.7s;
}

.gw-detail-giveaway-details-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gw-detail-giveaway-title {
  font-size: 1.3rem;
  color: #242424;
  margin-bottom: 5px;
  text-align: center;
  font-family: "MyFont";
  background: #c6c6c6;
  padding: 10px;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}

.gw-detail-giveaway-reward {
  text-align: center;
  font-weight: 600;
  color: var#ffd700;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gw-detail-giveaway-sponsor {
  text-align: center;
  font-size: 1em;
  color: var#ffd700;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gw-detail-active-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffd700;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.gw-detail-active-sponsor::before {
  content: "👑";
  font-size: 1.1em;
}

.gw-detail-giveaway-banner {
  width: 100%;
  border-radius: 10px 10px 0 0;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
}

.gw-detail-giveaway-description {
  margin-bottom: 0.5em;
  opacity: 0.95;
  text-align: center;
}

.gw-detail-giveaway-meta {
  font-size: 0.98em;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  margin: 1rem 0;
  padding-left: 2rem;
}

.gw-detail-giveaway-meta span {
  font-weight: 600;
}

.gw-detail-giveaway-slots {
  text-align: center;
  margin-bottom: 0.5em;
}

.gw-detail-alert,
.gw-detail-alert-success,
.gw-detail-alert-info {
  padding: 12px 18px;
  border-radius: 8px;
  margin: 18px 0 10px 0;
  font-size: 1.05em;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border-left: 5px solid #005489;
  background: #e3f2fd;
  color: #1565c0;
  transition: background 0.3s, color 0.3s;
  margin-left: 2rem;
  margin-right: 2rem;
}

.gw-detail-alert-success {
  background: linear-gradient(90deg, #e6ffed 60%, #b2f7cc 100%);
  color: #137333;
  border-left: 5px solid #4caf50;
}

.gw-detail-alert-info {
  background: #e3f2fd;
  color: #1565c0;
  border-left: 5px solid;
}

.gw-detail-participants-list {
  margin-top: 2.2em;
  border-top: 1px solid #ccc;
  padding-top: 1.2em;
  background: transparent;
  padding-left: 2rem;
  padding-right: 2rem;
}

.gw-detail-participants-list h3 {
  margin: 0 0 0.7em 0;
  font-size: 1.1em;
  letter-spacing: 1px;
}

.gw-detail-participants-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.gw-detail-participants-list li {
  border: 1px solid #ccc;
  padding: 5px 12px;
  font-size: 0.98em;
  margin-bottom: 0.3em;
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gw-detail-special-section {
  margin-top: 1.5em;
  padding: 10px;
  background: rgba(100, 100, 100, 0.1);
  border-radius: 10px;
  border-top: 1px dashed #ccc;
}

.gw-detail-special-section h3 {
  color: #aaa;
  font-style: italic;
}

.gw-detail-role-tag {
  font-size: 0.7em;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
}

.gw-detail-dev-tag {
  background: linear-gradient(90deg, #ff3333, #cc0000);
}

.gw-detail-sp-tag {
  background: linear-gradient(90deg, #ff9900, #ff6600);
}

.gw-detail-form-group {
  margin: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.gw-detail-form-group label {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.2em;
}

.gw-detail-form-input {
  padding: 10px;
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  background: var(--main-bg);
  color: var(--main-text);
  font-size: 1em;
  transition: border 0.2s, background 0.3s;
  outline: none;
}

.gw-detail-form-input:focus {
  border-color: #005489;
  background: #fff;
}

.gw-detail-btn-submit {
  padding: 10px;
  cursor: pointer;
  font-size: 1.08em;
  font-weight: 600;
  margin-top: 0.5em;
  background: #c6c6c6;
  color: #3c3c3c;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
  transition: background 0.2s;
  margin-left: 2rem;
  margin-right: 2rem;
}

.gw-detail-btn-submit:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.gw-detail-a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.gw-detail-a:hover {
  text-decoration: underline;
  color: #1765c1;
}

@media (max-width: 768px) {
  .gw-detail-giveaway-details-card {
    padding: 1.2rem;
  }
}
/* ====== End of gw-details.css ====== */
/* ====== gw-rule.css ====== */
.gw-rules-background {
  background: url("../../Backgrounds/IMG_4498.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gw-rules-container {
  max-width: 800px;
  margin: 5rem auto;
  background: #f5f7fa3c;
  color: #1c1c1c;
  border: 1px solid #ccc;
  padding: 2rem;
  backdrop-filter: blur(8.1px);
  -webkit-backdrop-filter: blur(8.1px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.gw-rules-container h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: #1c1c1c;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.gw-rules-container ol {
  padding-left: 1.5rem;
  font-size: 1.05rem;
}

.gw-rules-container ol li {
  margin-bottom: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .gw-rules-container {
    padding: 1.5rem;
    margin: 3rem 1rem;
  }

  .gw-rules-container h1 {
    font-size: 1.7rem;
  }
}
/* ====== End of gw-rule.css ====== */
/* ====== gw.css ====== */
.gw-background {
  background: url("../../Backgrounds/IMG_4498.webp") #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.giveaways-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 10rem auto;
}

.gw-container p {
  color: #fff;
  padding: 5px 20px 10px;
  font-size: 1rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.current-gw {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.giveaway-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.giveaway-card {
  position: relative;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  width: 300px;
  font-family: MyFont;
  background: #11111196;
  border: 2px solid #111;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.813) !important;
  border: 2px solid #c6c6c6;
}

.giveaway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: var(--card-radius);
  z-index: -1;
}

.status-scheduled {
  color: var(--status-scheduled);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.status-active {
  color: var(--status-active);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.status-ended {
  color: var(--status-ended);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 20px;
}

.giveaway-card.active .status-badge {
  background-color: var(--status-active);
}

.giveaway-card.scheduled .status-badge {
  background-color: var(--status-scheduled);
  color: #000;
}

.giveaway-card.ended .status-badge {
  background-color: var(--status-ended);
}

.giveaway-title {
  font-size: 1.3rem;
  color: #242424;
  margin-bottom: 5px;
  text-align: center;
  font-family: MyFont;
  background: #c6c6c6;
  padding: 10px;
  box-shadow: 2px 2px 0 0 #fff inset, -1px -1px 0 3px #777 inset !important;
}

.giveaway-reward {
  text-align: center;
  font-size: 1.1rem;
  margin: 0.8rem 0;
  font-weight: 600;
  color: var(--reward);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-left: 20px;
}

.giveaway-date {
  text-align: left;
  font-size: 0.9rem;
  opacity: 1;
  margin-bottom: 1.2rem;
  margin-left: 20px;
}

.giveaway-actions {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-left: 20px;
}

.giveaway-card .btn {
  padding: 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  border: none;
  background-color: var(--primary);
  color: var(--primary-color);
  transition: background 0.3s ease;
  margin-top: 0.5rem;
  margin-left: 20px;
}

.giveaway-card .btn:hover {
  background-color: var(--navbar-light);
  cursor: pointer;
}

.btn-participate:hover .btn-view:hover {
  cursor: pointer;
}

.giveaway-card .btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.winner-badge {
  padding: 0.75rem;
  margin: 1rem 0 0.5rem;
  background: rgba(255, 255, 0, 0.2);
  border-radius: 10px;
  text-align: center;
  color: var(--reward);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 20px;
  margin-right: 20px;
}

.btn-participate {
  width: 95%;
  font-size: 13px;
  padding: 0.5rem;
  color: #3c3c3c;
  margin: 5px auto;
  border: 2px solid;
}

.btn-view {
  width: 95%;
  font-size: 13px;
  padding: 0.5rem;
  cursor: pointer;
  background: #c6c6c6;
  color: #3c3c3c;
  box-shadow: 2px 2px 0 0 #fff inset, -1px -1px 0 3px #777 inset;
  border: 2px solid #2a2a2a;
  margin: 5px auto;
}

.btn-view:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

@media (max-width: 768px) {
  .giveaway-grid {
    gap: 18px;
  }

  .current-gw {
    margin-top: 2rem;
  }
}

.login-prompt {
  text-align: center;
  background: #00000070;
  border: 2px solid var(--card-border);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  max-width: 400px;
  margin: 2rem auto;
}

.login-message {
  font-size: 1.2rem;
  color: var(--main-text);
  margin-bottom: 1.5rem;
}

.btn-discord-login {
  padding: 0.8rem 1.5rem;
  background: #c6c6c6;
  color: #3c3c3c;
  box-shadow: 2px 2px 0 0 #fff inset, -1px -1px 0 3px #777 inset;
  border: 2px solid #2a2a2a;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-discord-login:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.section-header {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(20, 216, 20);
  text-align: center;
  margin: 2rem 0 1rem;
  width: 100%;
  padding-bottom: 0.5rem;
  display: block;
}

.sec-header {
  font-size: 2rem;
  font-weight: bold;
  color: red;
  text-align: center;
  margin: 2rem 0 1rem;
  width: 100%;
  padding-bottom: 0.5rem;
  display: block;
}

.giveaway-status {
  margin-left: 20px;
}
/* ====== End of gw.css ====== */
/* ====== item.css ====== */
.item-container {
  background-color: #11111196;
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: 100%;
  border: 2px solid #c6c6c6;
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.item-nature-pill {
  display: inline-block;
  background: var(--pill-bg);
  color: var(--text);
  font-weight: 600;
  padding: 6px 14px;
  font-size: 0.95rem;
  margin: 10px 0;
}

.item-stability {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.STABLE {
  font-family: "MyFont";
  color: limegreen;
  background-color: rgba(0, 255, 0, 0.2);
  border: 1px solid rgb(0, 255, 0);
}

.OVERPAID {
  font-family: "MyFont";
  color: goldenrod;
  background-color: rgba(255, 255, 0, 0.3);
  border: 1px solid rgb(255, 255, 0);
}

.UNDERPAID {
  font-family: "MyFont";
  color: red;
  background-color: rgba(255, 0, 0, 0.3);
  border: 1px solid rgb(255, 0, 0);
}

.item-container img {
  max-width: 35%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 4px;
}

.item-price-img img {
  max-width: 1rem;
}

#rarityDropdown img {
  max-width: 100%;
}

.item-container h1 {
  font-family: "MyFont";
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  background: transparent;
  padding: 8px;
  color: #242424;
  background-color: #c6c6c6;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}

.item-card {
  width: inherit;
}

.item-price {
  font-weight: bold;
  font-family: "MyFont";
  font-size: 1.2em;
  color: orange;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.item-price-img {
  display: flex;
  width: max-content;
  align-items: center;
  width: 15%;
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-family: MyFont, sans-serif;
}

.item-price-container img {
  max-width: 20%;
  margin: 0;
}

.item-price-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  gap: 24px;
}

.item-pet-price-container {
  margin-top: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  gap: 24px;
  margin: 20px 0;
}

.item-demand-main {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.item-price-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.item-price-img {
  display: flex;
  width: max-content;
  align-items: center;
  width: 30%;
}

.item-strong {
  font-family: "MyFont";
  color: orange;
}

.item-container p {
  font-family: "MyFont";
  font-size: 1.2em;
  margin: 0;
  color: var(--secondary-text-color);
  width: 100%;
}

.item-price img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0% !important;
}

.item-rarity-display {
  padding: 5px;
  font-family: "MyFont";
  font-size: 1.2em;
  border-radius: 5px;
  display: inline-block;
  color: white;
  align-items: center;
  justify-content: center;
}

.item-attribute-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

img.item-rarity {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin: 0% !important;
}

.item-rarity-display img {
  max-width: 100%;
}

.item-attribute-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 0px !important;
  font-weight: bold;
  min-width: 100px;
  justify-content: center;
  font-family: "MyFont";
  font-size: 1.2em;
  color: #a6a6a6 !important;
}

.item-yes {
  background-color: green;
  color: white;
}

.item-no {
  background-color: red;
  color: white;
}

.item-attribute-box img {
  width: 16px;
  height: 16px;
  margin: 0% !important;
  vertical-align: middle;
  margin-right: 8px;
}

.item-back {
  color: #222;
  background: var(--primary-color);
  padding: 10px 20px;
  margin: 10px auto 0 auto;
  display: block;
  width: fit-content;
  text-decoration: none;
  transition: 0.1s;
}

.item-back:hover {
  background: var(--primary-color-hover);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
}

@media (max-width: 698px) {
  .item-price,
  .item-pet-price-container {
    flex-direction: column;
  }

  .item-stability {
    flex-direction: column;
  }
}

.item-attribute-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.item-attribute-box {
  width: 156px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #333;
  color: white;
  font-weight: bold;
  text-align: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0 5px;
  font-family: revert;
}

.item-attribute-box img {
  width: 20px;
  height: 20px;
}

.item-attribute-box.item-yes {
  background-color: #2ecc7138;
  color: var(--main-text-color);
  border: 1px solid #2ecc71;
}

.item-attribute-box.item-no {
  background-color: #e74c3c38;
  color: var(--main-text-color);
  border: 1px solid #e74c3c;
}

.item-nav-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 10px auto;
}
/* ====== End of item.css ====== */
/* ====== guide.css ====== */
.journey-guides-background {
  background: url("../../Backgrounds/lobby.webp");
  background-color: #302b2b;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* ====== End of guide.css ====== */
/* ====== leaderboard.css ====== */
.leaderboard-interface-background {
  background: url("../../Backgrounds/mines.webp");
  background-color: #302b2b;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* ====== End of leaderboard.css ====== */
/* ====== login.css ====== */
.login-background {
  background: url("../../Backgrounds/IMG_4500.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.login-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: #11111196;
  border: 2px solid #111;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.813) !important;
  border: 2px solid #c6c6c6;
  max-width: 600px;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.login-h3 {
  color: #242424;
  margin-bottom: 5px;
  text-align: center;
  font-family: "MyFont";
  background: #c6c6c6;
  padding: 10px;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
  width: 100%;
}

.login-h4 {
  margin-bottom: 5px;
  text-align: center;
  font-family: "MyFont";
  padding: 10px;
  width: 100%;
  font-size: 1.2rem;
}

.login-button-container {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.login-discord-login-button,
#cookie-allow-btn,
#proceed-login {
  padding: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c6c6c6;
  color: #3c3c3c;
  transition: all 0.1s;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  border: 2px solid #2a2a2a;
}

#cookie-allow-btn {
  display: unset !important;
  padding: 10px !important;
}

.login-discord-login-button:hover,
#cookie-allow-btn:hover,
.login-discord-login-button:hover path,
#proceed-login:hover {
  fill: #fff;
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.login-discord-login-button path {
  fill: #3c3c3c;
  transition: all 0.1s;
}

.login-discord-login-button svg {
  height: 24px;
  margin-right: 10px;
}

.login-message {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

.login-hr {
  border: 0;
  height: 1px;
  background: #333;
  margin: 20px 0;
  width: 80%;
}

.login-other-options {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
}

.login-other-options a {
  color: #007bff;
}

#login-status {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #66bb6a;
  display: none;
}

#username-display {
  margin-top: 10px;
  font-size: 16px;
  color: white;
  display: none;
}

.login-logout-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.login-logout-button:hover {
  background-color: #c82333;
}

.login-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px auto;
  display: none;
}

/* Modal styles */
.login-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.login-modal-content {
  background: #1c1c1c;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1000;
  max-width: 500px;
  margin: 100px auto;
  border: 2px solid #c6c6c6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-modal-content ol {
  padding-left: 20px;
  margin: 20px;
}

.login-modal-content button {
  width: 90%;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

#close-modal {
  background: #333;
  color: #fff;
}

/* #proceed-login {
            background-color: #5865f2;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 10px;
            text-align: center;
            text-decoration: none;
            display: block;
        } */

#login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: auto;
}
/* ====== End of login.css ====== */
/* ====== market.css ====== */
#searchBox {
  display: flex;
  font-family: "MyFont";
  width: 90%;
  max-width: 600px;
  padding: 15px 20px;
  margin: 15px auto;
  display: block;
  border: 2px solid #1a1a1b;
  font-size: 16px;
  color: #fff;
  outline: none;
  background-color: #313233;
  box-shadow: 0 4px 0 0 #242425 inset;
}

#searchBox:focus {
  color: #ffffff;
}

.market-boxy-box {
  display: flex;
  align-self: center;
  align-items: center;
  justify-self: center;
  justify-content: center;
  flex-direction: column;
}

/* Results Container */
#results {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  top: 10%;
}

/* Item Cards */
.market-result {
  background-color: #48494a;
  position: -webkit-sticky;
  position: sticky;
  top: 10%;
  font-family: "MyFont";
  width: 800%;
  max-width: 350px;
  border: 2px solid #19191a;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 -4px 0 0 #303132 inset;
}

.market-result:hover {
  transform: translateY(-5px);
  border-color: #2ccb1d;
}

.market-result img {
  height: auto;
  object-fit: contain;
  float: left;
}

.market-result .market-info {
  font-family: "MyFont";
  padding: 15px;
  width: inherit;
}

.market-result .market-info b {
  font-family: "MyFont";
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.market-result-div-info {
  font-family: "MyFont";
  font-size: 14px;
  color: #d0d1d4;
  margin-bottom: 00px;
  display: flex;
  align-items: center;
}

.market-result img.market-coin {
  width: 14px;
  height: 14px;
  float: none;
  margin-left: 5px;
}

/* Category Section */
.market-category-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.market-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
}

.market-category-item {
  flex-wrap: wrap;
  flex-grow: 1;
  flex-basis: 450px;
  justify-content: space-around;
  display: flex;
  background: #c6c6c6;
  display: flex;
  align-items: center;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.1s;
  text-transform: capitalize;
  cursor: pointer;
  /* Add cursor pointer */
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset;
  justify-content: space-between;
  border: 2px solid #2a2a2a;
}

.market-category-item:hover {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset;
  background: #218306;
  color: #fff !important;
}

.market-description {
  font-family: "MyFont";
  font-size: 16px;
  color: #d0d1d4;
  margin-top: 5px;
  text-align: center;
}

.market-category-item img {
  max-width: 80%;
  max-height: 80%;
  height: 72px;
  width: 72px;
  object-fit: contain;
  margin-left: 4px;
}

.market-category-item img.market-bz {
  image-rendering: pixelated;
}

.market-title {
  font-size: 3rem;
  font-family: "MinecraftTen";
  margin-top: 10rem;
  text-align: center;
  color: var(--primary-text-color);
}

.market-subtitle {
  font-size: 20px;
  font-family: "MyFont";
  margin-bottom: 10%;
  text-align: center;
  color: var(--primary-text-color);
}

.market-search-icon {
  display: block;
}

.market-categories {
  font-size: 30px;
  font-family: "MinecraftTen";
  margin-bottom: 10%;
  text-align: center;
  transition: transform 0.9s;
  color: var(--primary-text-color);
}

.market-categories:hover {
  transform: scale(1.1);
  text-transform: capitalize;
}

.market-category-name {
  margin-right: auto;
  margin-left: auto;
}

.market-category-name p {
  font-size: 23px;
  word-spacing: 2px;
  font-family: "MyFont";
  cursor: pointer;
  text-align: center;
}

@media only screen and (min-width: 700px) {
  .market-category-name {
    font-size: 40px;
  }

  .market-categories {
    font-size: 40px;
  }

  .market-searchBox {
    width: 90%;
    height: 40px;
  }
}

/* Divider Line */
/* BRO YK THAT BORDER-BOTTOM EXISTS FOR A REASON */
.market-divider {
  width: 100%;
  height: 3px;
  background-color: #343536;
  margin: 0px 0px 20px 0px;
  box-shadow: 0px 1px 0 1px #4c4d4e;
}

.market-background {
  background: url("../../Backgrounds/trees.webp");
  background-color: #847474;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.market-result {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.market-result img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  align-items: center;
}

.market-info b {
  display: block;
}

.market-info span {
  font-size: 0.9em;
}

.market-info .market-description {
  font-size: 0.8em;
  margin-top: 5px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#results p {
  padding: 10px;
  text-align: center;
}

.market-info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.market-info-head img {
  width: 65px;
  height: 65px;
}
/* ======= End of market.css ====== */
/* ====== minion-production.css ====== */
.minion-prod-background {
  background: url("../../Backgrounds/2.webp");
  background-color: #5e5454;
  background-blend-mode: multiply;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.minion-prod-input {
  font-family: "MyFont";
  margin: auto;
}

.minion-prod-container {
  justify-content: center;
  align-items: center;
  position: relative;
  width: 95%;
  max-width: 600px;
  margin: 5rem auto;
  border: 2px solid #777;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #00000070;
}

.minion-prod-ibtn {
  background: transparent;
  border: none;
  color: yellow;
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
}

.minion-prod-tit {
  text-align: center;
  padding: 10px;
  background-color: #c6c6c6 !important;
  color: #242424;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 2px #777 inset !important;
  width: 100%;
}

#input2 {
  font-family: "MyFont";
  width: 50%;
  max-width: 600px;
  padding: 10px 10px;
  margin: 0px;
  border: 2px solid #1a1a1b;
  font-size: 16px;
  color: #fff;
  outline: none;
  background-color: #313233;
  box-shadow: 0 4px 0 0 #242425 inset;
}

.minion-prod-optgroup {
  color: #aaa;
}

.minion-prod-option {
  color: #fff;
}

.minion-prod-input input {
  background-color: #222;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "MyFont";
  font-size: 20px;
  box-shadow: inset 2px 2px 0 #444, inset -2px -2px 0 #000;
  text-align: center;
  width: 80px;
  /* Adjust based on your layout */
}

.minion-prod-lable2 {
  margin-top: 30px;
  font-size: 30px;
  justify-content: center;
  align-items: center;
}

#result {
  font-family: "MyFont";
  width: 15%;
  text-align: center;
  margin-bottom: 5px;
  background: transparent;
  padding: 8px;
  color: #242424;
  background-color: #c6c6c6;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}

#resultText {
  margin-bottom: 5px;
  text-align: centre;
}

#second {
  display: none;
  margin-bottom: 5px;
  text-align: centre;
}

#note {
  text-align: centre;
}

#npcPrice {
  display: none;
  margin-bottom: 5px;
  text-align: centre;
}

#exp {
  display: none;
  margin-bottom: 5px;
  text-align: centre;
}

@media (max-width: 480px) {
  #result {
    width: 25%;
  }

  #input2 {
    width: 90%;
  }
}

.minion-prod-fuel-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin: 10px 0;
}

.minion-prod-mc-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #222;
  border: 2px solid #414141;
  padding: 4px 10px 4px 4px;
  font-family: "MyFont";
  color: #fff;
  box-shadow: 0 2px #000, 2px 0px #000, -1px 0px 0px 1px #444, -2px 0px #444;
  margin: 0;
  font-size: 15px;
  transition: border 0.15s;
}

.minion-prod-mc-radio input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  border: 2px solid #888;
  background: #181818;
  outline: none;
  box-shadow: 1px 1px 0 #000;
  position: relative;
  vertical-align: middle;
  transition: border 0.15s;
  display: inline-block;
}

.minion-prod-mc-radio input[type="radio"]:checked {
  border: 2px solid #989898;
  background: #222;
}

.minion-prod-mc-radio input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #989898;
  position: absolute;
  top: 2px;
  left: 2px;
}

.minion-prod-mc-radio input[type="radio"]:focus {
  border: 2px solid #3d3d3d;
}

.minion-prod-mc-radio span {
  font-size: 15px;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  letter-spacing: 0.5px;
  font-family: "Minecraftia", "MyFont", monospace;
}
/* ====== End of minion-production.css ====== */
/* ====== minions.css ====== */
.minion-rarity-dropdown {
  position: relative;
  margin: 20px 0;
  padding: 0px auto;
  display: inline-block;
  font-size: 20px;
}

.minion-rarity-dropdown .minion-selected {
  border-radius: 0px;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
}

.minion-rarity-dropdown .minion-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 5px;
  display: none;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--border-color);
  background: var(--body-bg);
}

.minion-rarity-dropdown .minion-options div {
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  overflow: hidden;
}

.minion-rarity-dropdown .minion-options div:hover {
  scale: 104%;
}

.minion-price-container {
  font-family: "MyFont";
  margin: 20px 0;
  padding: 15px;
  border-radius: 5px;
  width: 100% !important;
}

.minion-price-section {
  font-family: "MyFont";
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 6px;
}

.minion-price-section:last-child {
  border-bottom: none;
  font-family: "MyFont";
}

.minion-making-price {
  display: flex;
  flex-direction: column;
  font-family: "MyFont";
  color: orange;
  font-weight: bold;
}

.minion-selling-price {
  font-family: "MyFont";
  color: orange;
  font-weight: bold;
}

.minion-item-container {
  max-width: 800px;
  margin: 0 auto;
}

.minion-item-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 15px 0;
}

.minion-error-message {
  color: #f44336;
  padding: 20px;
  text-align: center;
}

.minion-right,
.minion-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 10px;
  width: 50px;
  height: 50px;
}

.minion-right .material-icons,
.minion-left .material-icons {
  color: #242424;
  font-size: 2rem;
  cursor: pointer;
}

.minion-right .material-icons:hover,
.minion-left .material-icons:hover {
  border: 2px solid #fff !important;
  box-shadow: 2px 2px 0 0 #2ccb1d inset, -1px -1px 0px 3px #1d681a inset !important;
  background: #218306 !important;
  color: #fff !important;
}

.minion-rarity-arrow {
  background: #c6c6c6 !important;
  border: 2px solid #111 !important;
  width: 36px !important;
  height: 36px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.5em !important;
  box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 2px #777 inset !important;
  border-radius: 0% !important;
}

.minion-nature-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 0px;
  font-weight: bold;
  margin-right: 10px;
  background-color: #22222230;
  font-family: inherit;
}

.minion-nature-pill.STABLE {
  background-color: #2ecc7138;
  border: 1px solid #2ecc71;
  color: #14b959;
}

.minion-nature-pill.UNDERPAID {
  background-color: #e74c3c38;
  border: 1px solid #e74c3c;
  color: #ff2a14;
}

.minion-nature-pill.OVERPAID {
  background-color: #f39c1238;
  border: 1px solid #f39c12;
  color: #e08d07;
}

.minion-stability {
  margin: 15px 0;
}

.minion-demand-box div {
  background-color: #22222230;
  height: 18px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.minion-demand-box div div {
  height: 100%;
  transition: width 0.3s ease;
}

.minion-demand-score {
  display: flex;
  border-radius: 0px !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 4px;
  width: auto;
  height: 22px !important;
  gap: 8px;
}

.minion-rarity-arrow {
  background: var(--arrow-bg);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--arrow-color);
  font-size: 1.5em;
  box-shadow: 0 2px 8px #0002;
}

.minion-rarity-arrow:hover {
  background: #ffd700;
  color: #23272e;
}

.minion-minion-nav-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 10px auto;
}

.minion-item-card {
  background-color: #11111196;
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: 100%;
  border: 2px solid #c6c6c6;
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.minion-item-card h1 {
    font-family: 'MyFont';
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    background: transparent;
    padding: 8px;
    color: #242424;
    background-color: #c6c6c6;
    box-shadow: 2px 2px 0 0 #ffffff inset, -1px -1px 0px 3px #777 inset !important;
}
/* === End of minions.css ====== */