/* Umumiy sahifa sozlamalari */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a; /* qora fon */
  color: #ffffff; /* oq matn */
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Sarlavha */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00eaff; /* Delo Air'ga mos yengil neon ko‘k */
}

p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
}

/* H2 va bo‘lim sarlavhalari */
h2 {
  color: #00eaff;
  margin-bottom: 15px;
}

/* Havolalar ro‘yxati */
ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

li {
  margin: 5px 0;
}

/* Havola dizayni */
a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 18px;
  border: 1px solid #00eaff;
  border-radius: 25px;
  transition: all 0.3s ease;
}

/* Hover effekti */
a:hover {
  background-color: #00eaff;
  color: #0a0a0a;
  transform: scale(1.05);
  box-shadow: 0 0 10px #00eaff;
}

/* Mobilga moslashtirish */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}
