.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('/static/bg-main.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.animate-fade {
  animation: fadeIn 1s ease-out forwards;
}

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

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

.portal-link {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 1rem;
  line-height: 1;
  background: none;
  padding: 0;
}

.portal-link:hover span {
  filter: brightness(0.7);
  transition: filter 0.15s;
}
