:root {
  --footer-font: 0.95rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg-black {
  background-color: #131413;
}

.profile-container:hover {
  cursor: pointer;
}

.profile-wrapper {
  position: relative;
  padding-top: 2.5px;
}

.profile-dropdown {
  position: absolute;
  right: 20px;
  top: 76px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0; 
  transform: translateY(-8px); 
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s 0.175s;
  z-index: 1;
}

.profile-dropdown.active {
  visibility: visible;
  opacity: 1; 
  transform: translateY(0); 
}

.blur-wrapper {
  position: relative;
  filter: none;
  transition: filter 0.3s ease-in-out;
}

.blur-wrapper.active {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out, z-index 0.3s ease-in-out;
  z-index: -1;
}

.overlay.active {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.container,
.container-fluid {
  z-index: 2;
}

.text-warning {
  color: #ffd900 !important;
}

.footer-content {
  font-size: var(--footer-font);
}

@media (min-width:1366px) {
  :root {
    --footer-font: 1.05rem;
  }
}