/* Gcris account / Kick login */
.auth-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 118px;
  z-index: 80;
}

.auth-login-btn {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 42, 47, 0.62);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(16, 10, 11, 0.86);
  text-decoration: none;
  text-transform: uppercase;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.35px;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(255, 42, 47, 0.16);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.auth-login-btn:hover {
  transform: translateY(-1px);
  border-color: #ff2a2f;
  background: rgba(31, 15, 17, 0.96);
  box-shadow: 0 0 30px rgba(255, 42, 47, 0.28);
}
.auth-login-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.auth-account {
  position: relative;
}
.auth-avatar-btn {
  width: 47px;
  height: 47px;
  padding: 2px;
  border-radius: 50%;
  border: 2px solid rgba(83, 252, 24, 0.72);
  background: #101411;
  box-shadow: 0 0 25px rgba(83, 252, 24, 0.24);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.auth-avatar-btn:hover,
.auth-avatar-btn[aria-expanded="true"] {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(83, 252, 24, 0.42);
}
.auth-avatar-btn img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #161a17;
}
.auth-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #53fc18, #176b12);
  font-weight: 900;
}

.auth-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(8, 9, 10, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.16s ease,
    visibility 0.16s ease,
    transform 0.16s ease;
}
.auth-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.auth-menu__user {
  padding: 9px 11px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 5px;
  overflow: hidden;
}
.auth-menu__label {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 3px;
}
.auth-menu__name {
  display: block;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.auth-menu a,
.auth-menu button {
  width: 100%;
  min-height: 39px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.auth-menu a:hover,
.auth-menu button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}
.auth-menu button {
  color: #ff777a;
}
.auth-menu__icon {
  width: 18px;
  text-align: center;
  opacity: 0.9;
}
.auth-loading {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: #53fc18;
  animation: authSpin 0.75s linear infinite;
}
@keyframes authSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .auth-slot {
    min-width: auto;
  }
  .auth-login-btn {
    width: 46px;
    padding: 0;
  }
  .auth-login-btn span {
    display: none;
  }
  .auth-menu {
    position: fixed;
    top: 72px;
    right: 16px;
  }
}


/* Remove the obsolete moving promotional ticker from every public page. */
.ticker,
.ticker-track {
    display: none !important;
}

@media(min-width:761px){body{zoom:.93}}
.navbar nav a,.header-nav a,.main-nav a{font-size:16.25px!important}
