:root {
  --bg: #0b0f1a;
  --fg: #e5e7eb;
  --muted: #9ca3af;
  --accent: #ffffff; /* Hangout w białym dla lepszej czytelności */
}

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

body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--fg);
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* LOGO */
.top-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.logo {
  height: 320px;
}

/* HERO */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 1;
  color: var(--fg);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--accent);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.lead {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1.4rem;
}

/* STORE BADGES */
.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.store-buttons a {
  display: inline-flex;
}

.store-badge {
  width: 220px; /* obie ikony identyczne */
  height: 65px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}

.store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.8rem;
}

.footer p {
  margin: 5px 0;
}

.footer p:first-child {
  margin-bottom: 12px; /* większy odstęp między email a copyright */
}

.footer a {
  color: var(--fg);
  text-decoration: underline;
}
