* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1b1b1b, #0e0e0e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #b0b0b0;
}

/* 🔹 ZAWSZE 2 KOLUMNY */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* 🔹 KOBALTOWY AKCENT */
.card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: #191919;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  border-left: 4px solid #2f5bff; /* kobalt */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card i {
  font-size: 2rem;
  min-width: 40px;
  color: #2f5bff;
}

.card .title {
  font-weight: 600;
  font-size: 1.1rem;
}

.card .subtitle {
  display: block;
  font-size: 0.9rem;
  color: #9a9a9a;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
}

.placeholder {
  opacity: 0.6;
  pointer-events: none;
}

/* 📱 MOBILE – 1 KOLUMNA */
@media (max-width: 640px) {
  .links-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}