/* إعداد الخط الأساسي */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* إعدادات الرأس */
header {
  display: flex;
  align-items: center;
  padding: 16px;
}

header img {
  height: 48px;
  margin-right: 12px;
}

header h1 {
  font-size: 24px;
  margin: 0;
}

/* الصفحة الرئيسية */
main.landing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.landing h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.landing p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 24px;
}

.landing a.button {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.landing a.button:hover {
  background-color: #0056b3;
}

/* الوضع الليلي التلقائي */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #111;
    color: #eee;
  }

  a.button {
    background-color: #66b0ff;
  }

  a.button:hover {
    background-color: #3a85ca;
  }
}
