.header {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* 
   * HEADER MODIFIER FOR SECONDARY PAGES
   * 
   * This modifier class creates a compact version of the header
   * for secondary pages like FAQ, rules, etc.
   * 
   * HOW TO USE:
   * 1. Add the class "header--page" to the header element
   * 2. Example: <header class="header header--page">
   * 
   * WHAT IT DOES:
   * - Reduces the header height while maintaining responsiveness
   * - Scales down the logo and adjusts padding
   * - Makes content more compact for non-homepage pages
   * 
   * See it in action in faq.html as an example
   */
}
@media (max-width: 768px) {
  .header {
    height: 80vh;
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .header {
    height: 70vh;
    min-height: 450px;
  }
}
.header--page {
  height: 450px;
  min-height: 450px;
}
@media (max-width: 768px) {
  .header--page {
    height: 400px;
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .header--page {
    height: 350px;
    min-height: 350px;
  }
}
.header--page .header__content {
  padding: 60px 0;
}
.header--page .header__logo {
  max-width: 400px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .header--page .header__logo {
    max-width: 350px;
  }
}
@media (max-width: 480px) {
  .header--page .header__logo {
    max-width: 250px;
  }
}
.header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.6);
  z-index: -1;
}
.header__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, #171717 20%, rgba(23, 23, 23, 0.9) 40%, rgba(23, 23, 23, 0.7) 60%, rgba(23, 23, 23, 0.4) 80%, transparent 100%);
  z-index: 0;
}
.header__logo {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 90%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 500px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    max-width: 400px;
    margin-bottom: 20px;
  }
}
.header__server-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__server-button {
  position: relative;
  background-color: #FDC800;
  color: #171717;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgb(176.5, 139.5256916996, 0);
  transition: all 0.3s ease;
}
.header__server-button:hover {
  background-color: rgb(255, 206.5039525692, 23.5);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(176.5, 139.5256916996, 0);
}
.header__server-button:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgb(176.5, 139.5256916996, 0);
}
@media (max-width: 480px) {
  .header__server-button {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.header__player-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #4CAF50;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}
.header__player-count::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #8BC34A;
  border-radius: 50%;
  margin-right: 5px;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.header__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: bounce 3s ease-in-out infinite;
}
.header__scroll-indicator i {
  color: white;
  font-size: 36px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}
.header__scroll-indicator:hover i {
  color: #FDC800;
}
@media (max-width: 768px) {
  .header__scroll-indicator {
    bottom: 20px;
  }
  .header__scroll-indicator i {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .header__scroll-indicator {
    bottom: 15px;
  }
  .header__scroll-indicator i {
    font-size: 28px;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-8px) translateX(-50%);
  }
}

.footer {
  background-color: #0a0a0b;
  color: white;
  padding: 40px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center bottom, rgba(253, 200, 0, 0.15) 0%, rgba(253, 200, 0, 0.1) 20%, rgba(253, 200, 0, 0.05) 40%, transparent 70%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer::after {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 480px) {
  .footer::after {
    width: 450px;
    height: 450px;
  }
}
.footer__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px 40px 40px;
  gap: 60px;
}
@media (max-width: 1024px) {
  .footer__container {
    padding: 0 30px 30px 30px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    padding: 0 20px 30px 20px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}
@media (max-width: 768px) {
  .footer__logo {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.footer__logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  position: relative;
}
@media (max-width: 480px) {
  .footer__logo-img {
    width: 80px;
    height: 80px;
  }
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__copyright p {
  margin: 0;
  font-size: 16px;
}
.footer__copyright .footer__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer__copyright .footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.footer__copyright .footer__description .highlight {
  color: var(--footer-highlight-color);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer__copyright .footer__description .highlight:hover {
  text-decoration: underline;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .footer__copyright {
    width: 100%;
    text-align: center;
  }
  .footer__copyright .footer__title {
    margin-bottom: 3px;
  }
}
.footer__nav-columns {
  display: flex;
  gap: 60px;
  flex: 2;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .footer__nav-columns {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__nav-columns {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
  }
}
.footer__nav-column {
  min-width: 140px;
  text-align: left;
}
@media (max-width: 768px) {
  .footer__nav-column {
    min-width: calc(50% - 20px);
    flex: 0 1 calc(50% - 20px);
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer__nav-column {
    min-width: 100%;
    flex: 0 1 100%;
  }
}
.footer__nav-column h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.footer__nav-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--footer-separator-color);
}
@media (max-width: 768px) {
  .footer__nav-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer__nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-column ul li {
  margin-bottom: 12px;
}
.footer__nav-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer__nav-column ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__social-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__social-container h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.footer__social-container h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--footer-separator-color);
}
@media (max-width: 768px) {
  .footer__social-container h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .footer__social-container {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.footer__social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 180px;
}
@media (max-width: 768px) {
  .footer__social {
    justify-content: center;
    max-width: none;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .footer__social {
    gap: 10px;
  }
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
}
.footer__social-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.footer__social-icon i {
  font-size: 2rem;
}
.footer__social-icon:hover {
  opacity: 0.8;
  transform: translateY(-5px);
  color: var(--footer-social-hover-color);
}
.footer__bottom {
  width: 100%;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  padding: 20px 0 20px 0;
  margin-top: 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 45px;
}
.footer__bottom-main {
  margin-bottom: 5px;
}
.footer__bottom-disclaimer {
  font-size: 14px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
  opacity: 0.9;
  display: inline-block;
}
.footer__bottom a {
  color: var(--footer-link-color);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer__bottom a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer__bottom {
    font-size: 13px;
    padding: 15px 20px 15px 20px;
  }
  .footer__bottom-disclaimer {
    font-size: 13px;
    padding: 5px 10px;
    margin-bottom: 4px;
  }
}
@media (max-width: 480px) {
  .footer__bottom {
    font-size: 12px;
    padding: 12px 10px 12px 10px;
  }
  .footer__bottom-disclaimer {
    font-size: 12px;
    padding: 4px 8px;
    margin-bottom: 4px;
  }
}

.discord {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.discord::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171717;
  z-index: -2;
}
.discord::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0b;
  clip-path: polygon(0% 60%, 100% 40%, 100% 100%, 0% 100%);
  z-index: -1;
}
.discord__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .discord__container {
    padding: 0 15px;
  }
}
.discord__inner {
  background-color: #171717;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 2px solid var(--discord-border-color);
  position: relative;
  overflow: hidden;
}
.discord__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .discord__inner {
    padding: 25px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .discord__inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .discord__inner {
    padding: 15px;
    gap: 20px;
  }
}
.discord__image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.discord__image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .discord__image {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .discord__image {
    max-width: 200px;
  }
}
.discord__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .discord__content {
    align-items: center;
  }
}
.discord__title {
  font-size: 28px;
  margin: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .discord__title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .discord__title {
    font-size: 20px;
    white-space: normal;
  }
}
.discord__title .highlight {
  color: var(--discord-highlight-color);
}
.discord__text {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: #fff;
  margin-bottom: 10px;
}
.discord__button {
  display: inline-block;
  background-color: var(--discord-button-bg);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 0 var(--discord-button-hover);
  border: none;
  position: relative;
  top: 0;
}
@media (max-width: 768px) {
  .discord__button {
    align-self: center;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .discord__button {
    width: calc(100% - 20px);
    text-align: center;
    padding: 12px 15px;
    font-size: 13px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.discord__button:hover {
  background-color: var(--discord-button-hover);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--discord-button-hover);
}
.discord__button:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--discord-button-hover);
}

.blog {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}
.blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171717;
  z-index: -2;
}
.blog__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--blog-title-color);
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .blog__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .blog__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .blog__container {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .blog__container {
    padding: 0 20px;
  }
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.blog__card {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}
.blog__card:hover {
  transform: translateY(-5px);
}
.blog__card:hover .blog__image {
  transform: scale(1.1);
}
.blog__card:hover .blog__overlay {
  opacity: 1;
}
.blog__image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .blog__image-container {
    height: 220px;
  }
}
.blog__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog__read-more {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.blog__tag {
  position: absolute;
  top: -10px;
  right: 15px;
  background-color: var(--blog-tag-bg);
  color: #171717;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.blog__card:hover .blog__tag {
  transform: translateY(-5px);
}
.blog__content {
  padding: 25px 20px;
  text-align: center;
}
.blog__article-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .blog__article-title {
    font-size: 18px;
  }
}
.blog__button-container {
  text-align: center;
  margin-top: 20px;
}
.blog__button {
  display: inline-block;
  background-color: var(--blog-button-bg);
  color: var(--blog-button-text);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 0 var(--blog-button-shadow);
  border: none;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
}
.blog__button:hover {
  background-color: var(--blog-button-hover);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--blog-button-shadow);
}
.blog__button:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--blog-button-shadow);
}
@media (max-width: 480px) {
  .blog__button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(23, 23, 23, 0.8);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #FDC800;
  border-radius: 6px;
  border: 2px solid #171717;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(202, 159.6837944664, 0);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #FDC800 #171717;
}

.join-us {
  position: relative;
  padding: 80px 0;
  background-color: #171717;
  overflow: hidden;
}
.join-us__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .join-us__container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .join-us__container {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 480px) {
  .join-us__container {
    padding: 0 15px;
  }
}
.join-us__content {
  flex: 1;
  max-width: 550px;
}
@media (max-width: 768px) {
  .join-us__content {
    text-align: center;
    max-width: 100%;
  }
}
.join-us__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}
.join-us__title .highlight {
  color: var(--join-us-title-highlight);
}
@media (max-width: 768px) {
  .join-us__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .join-us__title {
    font-size: 24px;
  }
}
.join-us__text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
}
.join-us__button {
  background-color: var(--join-us-button-bg);
  color: var(--join-us-button-text);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--join-us-button-shadow);
  position: relative;
  top: 0;
  transition: all 0.3s ease;
}
.join-us__button:hover {
  background-color: var(--join-us-button-hover);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--join-us-button-shadow);
}
.join-us__button:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--join-us-button-shadow);
}
@media (max-width: 480px) {
  .join-us__button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.join-us__image-container {
  flex: 1;
  position: relative;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .join-us__image-container {
    max-width: 100%;
    width: 100%;
  }
}
.join-us__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.join-us__instructions {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.join-us__instructions h3 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}
.join-us__server-info {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  padding: 15px;
  margin-top: auto;
  margin-bottom: auto;
}
.join-us__server-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.join-us__server-row:last-of-type {
  border-bottom: none;
  margin-bottom: 15px;
}
.join-us__server-label {
  color: #aaa;
  font-size: 14px;
}
.join-us__server-value {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.join-us__play-button {
  width: 100%;
  background-color: #ccc;
  color: #333;
  border: none;
  padding: 8px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.join-us__play-button:hover {
  background-color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background-color: rgba(23, 23, 23, 0.5);
}
.navbar--scrolled {
  background-color: rgba(23, 23, 23, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  .navbar--mobile-closed {
    background-color: transparent !important;
    box-shadow: none !important;
  }
  .navbar--mobile-closed .navbar-toggler {
    background-color: rgba(23, 23, 23, 0.8);
    padding: 10px;
    border-radius: 4px;
  }
}
.navbar .container {
  max-width: 1200px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .navbar .container {
    padding: 0 25px;
  }
}
.navbar.navbar-expand-md {
  background-color: rgba(23, 23, 23, 0.5);
}
.navbar .navbar-collapse {
  background-color: transparent !important;
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse {
    margin: 0 -12px;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 4px;
  }
}
.navbar .nav-item {
  margin: 0 5px;
  background-color: transparent;
}
@media (min-width: 768px) {
  .navbar__buttons-collapse {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar__buttons-collapse {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 8px;
  }
}
.navbar__link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.5rem 0.8rem;
  background-color: transparent;
}
.navbar__link:hover, .navbar__link.active {
  color: #FDC800;
  background-color: transparent;
}
.navbar__button {
  background-color: #FDC800;
  color: #171717;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 rgb(176.5, 139.5256916996, 0);
  transition: all 0.3s ease;
  text-align: center;
  height: 38px;
  line-height: 1;
}
.navbar__button:hover {
  background-color: rgb(255, 206.5039525692, 23.5);
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgb(176.5, 139.5256916996, 0);
  color: #171717;
  text-decoration: none;
}
.navbar__button:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 rgb(176.5, 139.5256916996, 0);
}
.navbar__button--discord {
  background-color: #5865F2;
  color: white;
  box-shadow: 0 2px 0 rgb(18.3083333333, 36.6166666667, 235.1916666667);
}
@media (min-width: 768px) {
  .navbar__button--discord {
    padding: 8px 12px;
  }
  .navbar__button--discord .discord-text {
    display: none;
  }
  .navbar__button--discord i {
    font-size: 18px;
    margin: 0;
  }
}
.navbar__button--discord:hover {
  background-color: rgb(111.6583333333, 122.8166666667, 243.8416666667);
  color: white;
  box-shadow: 0 1px 0 rgb(18.3083333333, 36.6166666667, 235.1916666667);
}
.navbar__button--discord:active {
  box-shadow: 0 0 0 rgb(18.3083333333, 36.6166666667, 235.1916666667);
}
.navbar__button--login {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}
.navbar__button--login:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FDC800;
  border-color: #FDC800;
  transform: translateY(1px);
  box-shadow: none;
}
.navbar__button--login:active {
  transform: translateY(2px);
  box-shadow: none;
}
.navbar__mobile-toggle {
  color: white;
  font-size: 24px;
  border: none;
  background: transparent;
}
.navbar__mobile-toggle:focus {
  box-shadow: none;
}
.navbar__mobile-toggle:hover {
  color: #FDC800;
}
.navbar .navbar-toggler {
  padding: 0.25rem 0.5rem;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar__dropdown {
  background-color: rgba(23, 23, 23, 0.95);
  border: none;
  border-radius: 6px;
  margin-top: 12px;
  padding: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  overflow: hidden;
}
.navbar__dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(23, 23, 23, 0.95);
}
.navbar__dropdown-item {
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.2s ease;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar__dropdown-item:last-child {
  border-bottom: none;
}
.navbar__dropdown-item:hover, .navbar__dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FDC800;
  padding-left: 25px;
  margin: 0;
}
.navbar__dropdown-item:active {
  background-color: rgba(255, 255, 255, 0.15);
}
.navbar__dropdown-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #FDC800;
  opacity: 0;
  transition: opacity 0.2s ease, left 0.2s ease;
}
.navbar__dropdown-item:hover::before {
  opacity: 1;
  left: 12px;
}
.navbar .dropdown-toggle {
  position: relative;
}
.navbar .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  border-top: 0.3em solid;
  transition: transform 0.3s ease;
}
.navbar .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
@media (max-width: 767.98px) {
  .navbar__dropdown {
    background-color: rgba(23, 23, 23, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    margin-top: 5px;
    margin-left: 10px;
    border-radius: 4px;
    overflow: hidden;
  }
  .navbar__dropdown::before {
    display: none;
  }
  .navbar__dropdown-item {
    color: white;
    padding: 10px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
  }
  .navbar__dropdown-item:last-child {
    border-bottom: none;
  }
  .navbar__dropdown-item:hover, .navbar__dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FDC800;
    padding-left: 20px;
    margin: 0;
  }
  .navbar__dropdown-item::before {
    left: 5px;
  }
  .navbar__dropdown-item:hover::before {
    opacity: 1;
    left: 8px;
  }
  .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }
  .navbar .dropdown-toggle[aria-expanded=true] {
    color: #FDC800;
  }
  .navbar .navbar-collapse {
    padding: 15px;
    border-radius: 6px;
  }
}
.navbar__avatar {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  vertical-align: text-bottom;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .navbar__avatar {
    width: 22px;
    height: 22px;
  }
}
.navbar .navbar-toggler {
  padding: 10px;
  transition: background-color 0.3s ease;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.stats {
  position: relative;
  padding: 60px 0;
  background-color: #0a0a0b;
}
.stats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .stats__container {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .stats__container {
    padding: 0 20px;
  }
}
.stats__grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .stats__grid {
    flex-direction: column;
    gap: 20px;
  }
}
.stats__card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--stats-hover-color);
}
@media (max-width: 1024px) {
  .stats__card {
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .stats__card {
    padding: 20px;
  }
}
.stats__icon {
  font-size: 40px;
  color: var(--stats-icon-color);
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .stats__icon {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .stats__icon {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.stats__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stats__number {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: white;
}
@media (max-width: 1024px) {
  .stats__number {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .stats__number {
    font-size: 28px;
  }
}
.stats__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0 0 0;
}
@media (max-width: 480px) {
  .stats__label {
    font-size: 14px;
  }
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #171717;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

h1 {
  color: #171717;
}

.faq {
  padding: 120px 0 80px;
  background-color: #171717;
}
.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq__title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (max-width: 576px) {
  .faq__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.faq__accordion .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.faq__accordion .accordion-button {
  background-color: #2a2a2a;
  color: #ffffff;
  font-weight: 600;
  padding: 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  text-align: left;
}
@media (max-width: 576px) {
  .faq__accordion .accordion-button {
    padding: 15px;
    font-size: 0.95rem;
  }
}
.faq__accordion .accordion-button::after {
  display: none;
}
.faq__accordion .accordion-button .accordion-button-content {
  display: block;
  padding-right: 30px;
  width: 100%;
}
@media (max-width: 576px) {
  .faq__accordion .accordion-button .accordion-button-content {
    padding-right: 25px;
  }
}
.faq__accordion .accordion-button .accordion-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media (max-width: 576px) {
  .faq__accordion .accordion-button .accordion-icon {
    right: 15px;
    font-size: 0.9rem;
  }
}
.faq__accordion .accordion-button:not(.collapsed) {
  background-color: #3a3a3a;
  color: #ffffff;
  border-radius: 8px 8px 0 0;
}
.faq__accordion .accordion-button:not(.collapsed) .accordion-icon {
  transform: translateY(-50%) rotate(180deg);
}
.faq__accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.faq__accordion .accordion-body {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .faq__accordion .accordion-body {
    padding: 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .auth-modal .modal-dialog,
  .forgot-password-modal .modal-dialog {
    margin: 0.5rem;
  }
}
.auth-modal .modal-content,
.forgot-password-modal .modal-content {
  border-radius: 12px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 576px) {
  .auth-modal .modal-content,
  .forgot-password-modal .modal-content {
    border-radius: 8px;
  }
}
.auth-modal .modal-header,
.forgot-password-modal .modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0;
  position: relative;
  flex-direction: column;
}
@media (max-width: 576px) {
  .auth-modal .modal-header,
  .forgot-password-modal .modal-header {
    padding: 1rem 1rem 0;
  }
}
.auth-modal .modal-header .btn-close,
.forgot-password-modal .modal-header .btn-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  filter: invert(1) grayscale(100%) brightness(200%);
  z-index: 10;
  padding: 0.5rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
@media (max-width: 576px) {
  .auth-modal .modal-header .btn-close,
  .forgot-password-modal .modal-header .btn-close {
    right: 1rem;
    top: 1rem;
    padding: 0.4rem;
  }
}
.auth-modal .modal-header .btn-close:hover,
.forgot-password-modal .modal-header .btn-close:hover {
  opacity: 1;
}
.auth-modal .modal-header .modal-title,
.forgot-password-modal .modal-header .modal-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .auth-modal .modal-header .modal-title,
  .forgot-password-modal .modal-header .modal-title {
    font-size: 1.1rem;
  }
}
.auth-modal .modal-header .nav-tabs,
.forgot-password-modal .modal-header .nav-tabs {
  border-bottom: none;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-right: 2rem;
}
@media (max-width: 576px) {
  .auth-modal .modal-header .nav-tabs,
  .forgot-password-modal .modal-header .nav-tabs {
    gap: 1rem;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
  }
}
.auth-modal .modal-header .nav-tabs .nav-link,
.forgot-password-modal .modal-header .nav-tabs .nav-link {
  border: none;
  color: #9ca3af;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
@media (max-width: 576px) {
  .auth-modal .modal-header .nav-tabs .nav-link,
  .forgot-password-modal .modal-header .nav-tabs .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0;
  }
}
.auth-modal .modal-header .nav-tabs .nav-link:hover,
.forgot-password-modal .modal-header .nav-tabs .nav-link:hover {
  color: #ffc107;
}
.auth-modal .modal-header .nav-tabs .nav-link.active,
.forgot-password-modal .modal-header .nav-tabs .nav-link.active {
  color: #ffc107;
  background: none;
}
.auth-modal .modal-header .nav-tabs .nav-link.active:after,
.forgot-password-modal .modal-header .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffc107;
  border-radius: 2px;
}
.auth-modal .modal-body,
.forgot-password-modal .modal-body {
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .auth-modal .modal-body,
  .forgot-password-modal .modal-body {
    padding: 1rem;
  }
}
.auth-modal .form-control,
.forgot-password-modal .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #2d2d2d;
  background: #2d2d2d;
  color: #fff;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .auth-modal .form-control,
  .forgot-password-modal .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }
}
.auth-modal .form-control:focus,
.forgot-password-modal .form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.25);
  background: #363636;
}
.auth-modal .form-control::placeholder,
.forgot-password-modal .form-control::placeholder {
  color: #6c757d;
}
.auth-modal .form-label,
.forgot-password-modal .form-label {
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}
@media (max-width: 576px) {
  .auth-modal .form-label,
  .forgot-password-modal .form-label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
}
.auth-modal .btn-primary,
.forgot-password-modal .btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .auth-modal .btn-primary,
  .forgot-password-modal .btn-primary {
    padding: 0.6rem;
    font-size: 0.95rem;
  }
}
.auth-modal .btn-primary:hover,
.forgot-password-modal .btn-primary:hover {
  background-color: rgb(236.5, 177.375, 0);
  border-color: rgb(236.5, 177.375, 0);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}
.auth-modal .btn-primary:active,
.forgot-password-modal .btn-primary:active {
  transform: translateY(0);
}
.auth-modal .forgot-password,
.forgot-password-modal .forgot-password {
  color: #ffc107;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .auth-modal .forgot-password,
  .forgot-password-modal .forgot-password {
    font-size: 0.9rem;
  }
}
.auth-modal .forgot-password:hover,
.forgot-password-modal .forgot-password:hover {
  color: rgb(255, 205.75, 58);
  text-decoration: underline;
}
.auth-modal .form-check .form-check-input,
.forgot-password-modal .form-check .form-check-input {
  background-color: #2d2d2d;
  border-color: #4a4a4a;
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.2em;
}
.auth-modal .form-check .form-check-input:checked,
.forgot-password-modal .form-check .form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}
.auth-modal .form-check .form-check-input:focus,
.forgot-password-modal .form-check .form-check-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
.auth-modal .form-check .form-check-label,
.forgot-password-modal .form-check .form-check-label {
  color: #9ca3af;
  font-size: 0.95rem;
}
@media (max-width: 576px) {
  .auth-modal .form-check .form-check-label,
  .forgot-password-modal .form-check .form-check-label {
    font-size: 0.9rem;
  }
}
.auth-modal .forgot-password-back,
.forgot-password-modal .forgot-password-back {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.auth-modal .forgot-password-back:hover,
.forgot-password-modal .forgot-password-back:hover {
  color: #ffc107;
  text-decoration: none;
}
@media (max-width: 576px) {
  .auth-modal .forgot-password-back,
  .forgot-password-modal .forgot-password-back {
    font-size: 0.9rem;
  }
}
.auth-modal .text-muted,
.forgot-password-modal .text-muted {
  color: #9ca3af !important;
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .auth-modal .text-muted,
  .forgot-password-modal .text-muted {
    font-size: 0.9rem;
  }
}
.auth-modal.fade .modal-dialog,
.forgot-password-modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease-out;
}
.auth-modal.show .modal-dialog,
.forgot-password-modal.show .modal-dialog {
  transform: scale(1);
}
@media (max-width: 360px) {
  .auth-modal .modal-dialog,
  .forgot-password-modal .modal-dialog {
    margin: 0;
  }
  .auth-modal .modal-content,
  .forgot-password-modal .modal-content {
    border-radius: 0;
    min-height: 100vh;
  }
  .auth-modal .modal-header,
  .forgot-password-modal .modal-header {
    padding-top: 2rem;
  }
}
.card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  color-scheme: dark;
}
.card:hover {
  border-color: rgba(253, 200, 0, 0.3);
}
.card .card-body {
  padding: 2rem;
}
@media (max-width: 768px) {
  .card .card-body {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .card .card-body {
    padding: 1.25rem 1rem;
  }
}
.card .card-title {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .card .card-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .card .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }
}
.card .card-title + p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media (max-width: 576px) {
  .card .card-title + p {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}
.card .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
  margin: 0;
  background-color: transparent !important;
  color-scheme: dark !important;
  -webkit-color-scheme: dark !important;
  color: white !important;
}
@media (max-width: 576px) {
  .card .table {
    border-spacing: 0 0.65rem;
  }
}
.card .table thead tr {
  background-color: transparent !important;
  border: none !important;
}
.card .table thead tr th {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-bottom: none;
  background-color: transparent !important;
}
@media (max-width: 768px) {
  .card .table thead tr th {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .card .table thead tr th {
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .card .table thead tr th:nth-child(3) {
    display: none;
  }
}
.card .table thead tr th:first-child {
  padding-left: 1rem;
  text-align: center;
  width: 60px;
}
@media (max-width: 576px) {
  .card .table thead tr th:first-child {
    padding-left: 0.5rem;
    width: 40px;
  }
}
.card .table thead tr th:last-child {
  text-align: right;
  padding-right: 1.5rem;
}
@media (max-width: 576px) {
  .card .table thead tr th:last-child {
    padding-right: 1.25rem;
  }
}
.card .table tbody {
  color-scheme: dark !important;
  -webkit-color-scheme: dark !important;
}
.card .table tbody tr {
  background-color: #4D4D4D !important;
  background-image: none !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark !important;
  -webkit-color-scheme: dark !important;
  forced-color-adjust: none !important;
  color: white !important;
}
.card .table tbody tr:hover {
  transform: translateX(5px);
  background-color: #5a5a5a !important;
  border-color: rgba(253, 200, 0, 0.3);
}
@media (max-width: 576px) {
  .card .table tbody tr:hover {
    transform: translateY(-2px);
  }
}
.card .table tbody tr.top-voter-1 {
  background-color: #6E6232 !important;
  border: 2px solid rgba(255, 215, 0, 0.7) !important;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3) !important;
  position: static;
}
.card .table tbody tr.top-voter-1:before {
  display: none;
}
.card .table tbody tr.top-voter-1:hover {
  background-color: rgb(127.53125, 113.61875, 57.96875) !important;
  border-color: rgba(255, 215, 0, 0.9) !important;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4) !important;
}
.card .table tbody tr.top-voter-2 {
  background-color: #5B5B5B !important;
  border: 2px solid rgba(192, 192, 192, 0.7) !important;
  box-shadow: 0 0 6px rgba(192, 192, 192, 0.3) !important;
  position: static;
}
.card .table tbody tr.top-voter-2:before {
  display: none;
}
.card .table tbody tr.top-voter-2:hover {
  background-color: rgb(103.75, 103.75, 103.75) !important;
  border-color: rgba(192, 192, 192, 0.9) !important;
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.4) !important;
}
.card .table tbody tr.top-voter-3 {
  background-color: #5F4936 !important;
  border: 2px solid rgba(205, 127, 50, 0.7) !important;
  box-shadow: 0 0 4px rgba(205, 127, 50, 0.3) !important;
  position: static;
}
.card .table tbody tr.top-voter-3:before {
  display: none;
}
.card .table tbody tr.top-voter-3:hover {
  background-color: rgb(111.2583892617, 85.4932885906, 63.2416107383) !important;
  border-color: rgba(205, 127, 50, 0.9) !important;
  box-shadow: 0 0 8px rgba(205, 127, 50, 0.4) !important;
}
.card .table tbody tr:not(.top-voter-1):not(.top-voter-2):not(.top-voter-3) {
  background-color: rgba(50, 50, 50, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.card .table tbody tr:not(.top-voter-1):not(.top-voter-2):not(.top-voter-3):hover {
  background-color: rgba(60, 60, 60, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.1);
}
.card .table tbody tr:not(.top-voter-1):not(.top-voter-2):not(.top-voter-3) td:last-child {
  color: rgba(253, 200, 0, 0.85) !important;
}
.card .table tbody tr td {
  background-color: transparent !important;
  background-image: none !important;
  padding: 1rem 1.5rem;
  border: none;
  vertical-align: middle;
  color: white !important;
  forced-color-adjust: none !important;
}
@media (max-width: 768px) {
  .card .table tbody tr td {
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 576px) {
  .card .table tbody tr td {
    padding: 0.75rem 0.85rem;
  }
}
@media (max-width: 576px) {
  .card .table tbody tr td.rewards-cell {
    display: none;
  }
}
.card .table tbody tr td:first-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7) !important;
  width: 60px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  text-align: center;
  padding-right: 0;
  padding-left: 1rem;
}
@media (max-width: 576px) {
  .card .table tbody tr td:first-child {
    width: 40px;
    font-size: 1rem;
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 0;
  }
}
.card .table tbody tr td:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: white !important;
  padding-left: 0.5rem;
}
@media (max-width: 576px) {
  .card .table tbody tr td:nth-child(2) {
    gap: 0.25rem;
    font-size: 1rem;
    padding: 0.85rem 0.5rem;
    padding-left: 0.25rem;
    justify-content: flex-start;
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}
.card .table tbody tr td:nth-child(2) img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin-right: 0.25rem;
}
@media (max-width: 576px) {
  .card .table tbody tr td:nth-child(2) img {
    display: none;
  }
}
.card .table tbody tr td.rewards-cell {
  text-align: left;
  padding: 0.75rem 1rem;
}
@media (max-width: 576px) {
  .card .table tbody tr td.rewards-cell {
    padding: 0.5rem;
  }
}
.card .table tbody tr td.rewards-cell .rewards-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .card .table tbody tr td.rewards-cell .rewards-badges {
    justify-content: center;
  }
}
.card .table tbody tr td.rewards-cell .rewards-badges .reward-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .card .table tbody tr td.rewards-cell .rewards-badges .reward-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}
.card .table tbody tr td.rewards-cell .rewards-badges .reward-badge .reward-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (max-width: 576px) {
  .card .table tbody tr td.rewards-cell .rewards-badges .reward-badge .reward-icon {
    width: 16px;
    height: 16px;
  }
}
.top-voter-1 .card .table tbody tr td .rewards-badges .reward-badge {
  background-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
.top-voter-2 .card .table tbody tr td .rewards-badges .reward-badge {
  background-color: rgba(192, 192, 192, 0.2);
  box-shadow: 0 0 5px rgba(192, 192, 192, 0.5);
}
.top-voter-3 .card .table tbody tr td .rewards-badges .reward-badge {
  background-color: rgba(205, 127, 50, 0.2);
  box-shadow: 0 0 5px rgba(205, 127, 50, 0.5);
}
.card .table tbody tr td:last-child {
  text-align: right;
  color: #FDC800 !important;
  font-weight: 600;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media (max-width: 576px) {
  .card .table tbody tr td:last-child {
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-right: 1.25rem;
    white-space: nowrap;
  }
}

#voteNameForm .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
@media (max-width: 576px) {
  #voteNameForm .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}
#voteNameForm .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FDC800;
  box-shadow: 0 0 0 0.25rem rgba(253, 200, 0, 0.25);
}
#voteNameForm .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#voteNameForm .btn {
  background-color: #FDC800;
  color: #171717;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgb(176.5, 139.5256916996, 0);
  position: relative;
  top: 0;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  #voteNameForm .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
#voteNameForm .btn:hover {
  background-color: rgb(255, 206.5039525692, 23.5);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(176.5, 139.5256916996, 0);
}
#voteNameForm .btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgb(176.5, 139.5256916996, 0);
}

#vote-card .btn {
  background-color: #FDC800;
  color: #171717;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 rgb(176.5, 139.5256916996, 0);
  transition: all 0.2s ease;
  text-align: center;
  height: 38px;
  line-height: 1;
  min-width: 140px;
  position: relative;
  top: 0;
  margin-bottom: 6px;
}
#vote-card .btn:hover {
  background-color: rgb(255, 206.5039525692, 23.5);
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgb(176.5, 139.5256916996, 0);
  color: #171717;
  text-decoration: none;
}
#vote-card .btn:active {
  transform: translateY(6px);
  box-shadow: none;
  transition: all 0.1s ease;
}
@media (max-width: 768px) {
  #vote-card .btn {
    width: 100%;
    margin-bottom: 0.75rem;
    min-width: unset;
    height: 42px;
    font-size: 14px;
  }
}
#vote-card .btn .vote-timer {
  background-color: rgba(23, 23, 23, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}
@media (max-width: 576px) {
  #vote-card .btn .vote-timer {
    padding: 3px 6px;
    font-size: 0.8rem;
  }
}
#vote-card .btn:not(:last-child) {
  margin-right: 0.5rem;
}
#vote-card .spinner-parent {
  display: none;
}
#vote-card.voting .spinner-parent {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(70, 70, 70, 0.6);
  z-index: 10;
}

#usernameInput {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
#usernameInput:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: #FDC800 !important;
  box-shadow: 0 0 0 0.25rem rgba(253, 200, 0, 0.25) !important;
  outline: none;
}
#usernameInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#usernameLoginForm .navbar__button {
  height: 38px;
}

.top-voter-1 {
  background-color: #6E6232 !important;
  position: static;
  transform: none;
}
.top-voter-1:after {
  display: none;
}
.top-voter-1 td {
  font-weight: bold !important;
  position: static;
}
.top-voter-1 td:first-child {
  color: gold !important;
}
.top-voter-1 td:last-child {
  font-weight: bold !important;
}
.top-voter-1:hover {
  background-color: rgb(127.53125, 113.61875, 57.96875) !important;
}

.top-voter-2 {
  background-color: #5B5B5B !important;
  position: static;
  transform: none;
}
.top-voter-2:after {
  display: none;
}
.top-voter-2 td {
  font-weight: bold !important;
  position: static;
}
.top-voter-2 td:first-child {
  color: silver !important;
}
.top-voter-2 td:last-child {
  font-weight: bold !important;
}
.top-voter-2:hover {
  background-color: rgb(103.75, 103.75, 103.75) !important;
}

.top-voter-3 {
  background-color: #5F4936 !important;
  position: static;
  transform: none;
}
.top-voter-3:after {
  display: none;
}
.top-voter-3 td {
  font-weight: bold !important;
  position: static;
}
.top-voter-3 td:first-child {
  color: #cd7f32 !important;
}
.top-voter-3 td:last-child {
  font-weight: bold !important;
}
.top-voter-3:hover {
  background-color: rgb(111.2583892617, 85.4932885906, 63.2416107383) !important;
}

main h1 {
  color: white;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  main h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.user-vote-count {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .user-vote-count {
    margin-top: 1.25rem;
    font-size: 0.95rem;
  }
}
.user-vote-count strong {
  color: rgba(255, 255, 255, 0.85);
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .rewards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.rewards-grid .reward-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .rewards-grid .reward-item {
    padding: 1.25rem;
  }
}
.rewards-grid .reward-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: #FDC800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .rewards-grid .reward-item:hover {
    transform: translateY(-2px);
  }
}
.rewards-grid .reward-item img {
  width: 52px;
  height: 52px;
  margin-right: 1.25rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 576px) {
  .rewards-grid .reward-item img {
    width: 42px;
    height: 42px;
    margin-right: 1rem;
  }
}
.rewards-grid .reward-item:hover img {
  transform: scale(1.1) rotate(5deg);
}
.rewards-grid .reward-item .reward-info {
  flex: 1;
}
.rewards-grid .reward-item .reward-info .reward-name {
  color: white;
  font-weight: 700;
  margin: 0;
  font-size: 1.25rem;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .rewards-grid .reward-item .reward-info .reward-name {
    font-size: 1.1rem;
  }
}
.rewards-grid .reward-item .reward-info .reward-chance {
  color: #FDC800;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  .rewards-grid .reward-item .reward-info .reward-chance {
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
  }
}

.spinner-parent {
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.spinner-parent .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.25rem;
  border-color: rgba(253, 200, 0, 0.2);
  border-right-color: #FDC800;
}


/*# sourceMappingURL=main.css.map */