body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f1f5f9;
}
header {
  background: url("images/background.jpg") center center / cover no-repeat;
  color: #8cb6f4;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  z-index: 0;
}

header > * {
  position: relative;
  z-index: 1;
}

nav {
  background: #020617;
  text-align: center;
  padding: 10px;
}
nav a {
  color: #38bdf8;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 40px;
}

.services-grid,
.iptv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.service-card,
.iptv-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}
.service-card img {
  height: 80px;
  object-fit: contain;
}

.iptv-img {
  max-width: 130px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.prices {
  list-style: none;
  padding: 0;
}

.btn {
  background: #22c55e;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
.back {
  background: #ec5050;
}
.big {
  font-size: 18px;
  padding: 15px 30px;
}

.netflix-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.netflix-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 15px;
  align-items: center;
}
.netflix-item img {
  width: 50px;
}

footer {
  background: #020617;
  color: #fff;
  text-align: center;
  padding: 15px;
}
