body {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background-color: #0f1416;
  background-image:
    radial-gradient(120% 120% at 20% 20%, rgba(139, 181, 157, 0.15), rgba(15, 20, 22, 0.9)),
    radial-gradient(100% 100% at 80% 0%, rgba(139, 181, 157, 0.08), rgba(15, 20, 22, 0.95)),
    radial-gradient(140% 120% at 50% 70%, rgba(0, 0, 0, 0.6), rgba(15, 20, 22, 0.95)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.05));
  background-attachment: fixed;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6,
nav, button {
  font-family: 'Montserrat', sans-serif;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* Logo */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.custom-logo,
.custom-logo-fallback {
  height: 56px;
  width: auto;
  border-radius: 8px;
}

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

/* Scrollbar custom */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f1416; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #8bb59d; }

.selection-bg {
  background: #8bb59d;
  color: #000;
}
