/* ================= ZMIENNE CSS ================= */
:root {
  --blue: #3aa0ff;
  --glass: rgba(255, 255, 255, 0.08);
  --blur: blur(16px);
}

/* ================= RESET & BASE ================= */
* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}