@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Vazirmatn', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
}

a {
  color: #00e5ff;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.card {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #00000070;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  max-width: 100%;
  border-radius: 10px;
}

input, textarea, select {
  background-color: #222;
  border: 1px solid #444;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 12px;
  font-size: 16px;
}

button {
  padding: 10px 20px;
  border: none;
  background-color: #00bcd4;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #0097a7;
}

hr {
  border-color: #444;
  margin: 30px 0;
}
