@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); /*font-family: 'Inter', sans-serif;*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --main-font: 'Inter', sans-serif;
  --main-color: #C7B782;
  /* alias used by some page styles */
  --primary: var(--main-color);
  --background-color: #0C111E;
  --white-color: #F6EAC1;
  --black-color: #000000;
  --description-color: #C9C2A8;

  --green-color: #4AFF6B;
  --ip-copied-background: rgba(74, 255, 107, 0.17);
  --ip-copied-icon-background: rgba(74, 255, 107, 0.5);

  --copy-ip-button-background: rgba(199, 183, 130, 0.75);
  --how-to-join-button-background: rgba(31, 42, 60, 0.55);
  --stats-background: rgba(31, 42, 60, 0.35);
  --stat-icon-background-2: rgba(199, 183, 130, 0.45);

  --scroll-bar: rgba(210, 208, 208, 0.3);
  --scroll-bar-hover: #C7B782;

  --red-color: #FF7C7C;
  --warning-background: rgba(255, 124, 124, 0.17);
  --warning-icon-background: rgba(255, 124, 124, 0.5);
  --warning-color: #F5C1C1;

  /*Admin-Team rank colors*/
  --default-rank-color: rgba(210, 208, 208, 0.3);
}

body {
  background: var(--background-color);
  font-family: var(--main-font);
}

/*Navbar*/
.navbar {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 150px;
  background: var(--background-color);
  transition: 0.3s ease-in-out;
}

.navbar a {
  text-decoration: none;
}

.navbar .menu-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar .menu-mobile .logo {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.navbar .menu-mobile .logo img {
  max-width: 40px;
  height: auto;
}

.navbar .menu-mobile .logo h3 {
  color: var(--white-color);
  font-weight: 900;
  font-size: 20px;
}

.navbar .links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  transition: 0.3s ease-in-out;
}

.navbar .links .link {
  color: var(--description-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.navbar .links .link.active {
  color: var(--white-color);
}

.navbar .links .link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

.navbar .links .link:not(.active):hover {
  color: var(--white-color);
}

.navbar .menu-mobile .hamburger {
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  transition: 0.5s;
  display: none;
}

.navbar .menu-mobile .hamburger:hover {
  opacity: 0.8;
}

.navbar.active {
  max-height: 1000px;
}

.navbar.active .links {
  opacity: 1;
  z-index: 2;
}

/*Footer*/
#footer {
  padding: 20px 150px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#footer p {
  color: var(--description-color);
  font-size: 17px;
}

#footer p span {
  color: var(--white-color);
}

#footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

#footer .social-links .link {
  color: var(--description-color);
  text-decoration: none;
  font-size: 20px;
  transition: 0.2s;
}

#footer .social-links .link:hover {
  color: var(--white-color);
}

/*Scrollbar*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--stats-background);
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-bar);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-bar-hover);
}

/*Other*/
section:not(#header) .content {
  padding: 90px 150px;
  width: 100%;
}

/*Responsive*/
@media screen and (max-width: 1625px) {
  .navbar {
    padding: 20px 90px;
  }
}

@media screen and (max-width: 819px) {
  .navbar {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 867px) {
  .navbar {
    flex-direction: column;
    gap: 30px;
    max-height: 90px;
  }

  .navbar .menu-mobile {
    width: 100%;
  }

  .navbar .menu-mobile .hamburger {
    display: flex;
  }

  .navbar .links {
    flex-direction: column;
    order: 2;
    width: 100%;
    opacity: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 1625px) {
  section:not(#header) .content {
    padding: 90px;
  }

  #footer {
    padding: 20px 90px;
  }
}

@media screen and (max-width: 819px) {
  section:not(#header) .content {
    padding: 50px 30px;
  }

  #footer {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 564px) {
  #footer {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
/* Site footer (legal) */
.site-footer{
  margin-top: 80px;
  padding: 26px 0;
  background: rgba(13, 20, 36, 0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .footer-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.site-footer .footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration: none;
}
.site-footer .footer-brand img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.site-footer .footer-brand .brand-name{
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(246,241,226,0.95);
  font-size: 16px;
}
.site-footer .footer-brand .brand-tagline{
  color: rgba(246,241,226,0.65);
  font-size: 12px;
  margin-top: 2px;
}
.site-footer .footer-links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.site-footer .footer-links a{
  color: rgba(246,241,226,0.8);
  text-decoration: none;
  font-size: 13px;
}
.site-footer .footer-links a:hover{
  color: rgba(246,241,226,1);
  text-decoration: underline;
}
.site-footer .footer-meta{
  text-align: right;
  color: rgba(246,241,226,0.6);
  font-size: 12px;
  line-height: 1.5;
}
.site-footer .footer-social{
  display:flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.site-footer .footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(17, 26, 44, 0.55);
  color: rgba(246,241,226,0.85);
  text-decoration:none;
}
.site-footer .footer-social a:hover{
  border-color: rgba(255,255,255,0.18);
  background: rgba(17, 26, 44, 0.75);
}
.site-footer .footer-meta a{
  color: rgba(246,241,226,0.8);
  text-decoration:none;
}
.site-footer .footer-meta a:hover{ text-decoration: underline; }

@media (max-width: 900px){
  .site-footer .footer-inner{
    grid-template-columns: 1fr;
  }
  .site-footer .footer-meta{
    text-align:left;
  }
  .site-footer .footer-social{
    justify-content:flex-start;
  }
}
