body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #0b0f17;
  color: #e8eefc;
}

header, footer {
  background: #0f1629;
  padding: 14px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand .name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #e8eefc;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px;
}

.hero {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #24304f;
  background: #121b33;
}

.hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero .content {
  padding: 18px;
}

.card {
  background: #121b33;
  border: 1px solid #24304f;
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0;
}

.button {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: #2b67ff;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  opacity: 0.9;
}

small { opacity: 0.85; }
hr { border: 0; border-top: 1px solid #24304f; }

.list {
  margin: 0;
  padding-left: 18px;
}

.kv p { margin: 6px 0; }
.kv strong { display: inline-block; min-width: 140px; }
