* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-optical-sizing: auto;
  background: #05070d url('./assets/jaszczurowa.webp') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Delikatna winieta / przyciemnienie podkreślające głębię */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 100%;
  user-select: none;
}

.slogan {
  font-family: 'Inter', sans-serif;
  font-variation-settings: 'opsz' 32;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(255, 255, 255, 0.15);
  animation: fadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(8px);
}

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

@media (max-width: 768px) {
  .slogan {
    letter-spacing: -0.02em;
  }
}
