
/* Niestandardowy arkusz stylów Premium 2026 */
body {
  background-color: #090d16;
  color: #f8fafc;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* Szklane karty (Glassmorphism) */
.glass-panel {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #32373C40;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px 0 #D36E0720;
}

/* Animacje wejścia */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-in"] {
  transform: scale(0.95);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #32373C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
