body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

/* HEADER */
header {
  background: #020617;
  padding: 20px;
  border-bottom: 1px solid #1e293b;
}

nav a {
  color: #38bdf8;
  margin-right: 15px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  opacity: 0.7;
}

/* LAYOUT */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
}

/* CARDS */
.card {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: 0.2s;
}

.card:hover {
  border-color: #38bdf8;
}

/* HEADINGS */
h1, h2 {
  color: #38bdf8;
}

/* 🔥 ФИКС КАРТИНОК */
img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
}

/* HERO БЛОК */
.hero {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* КНОПКИ / ССЫЛКИ */
a {
  color: #38bdf8;
}

a:hover {
  opacity: 0.8;
}
