
/* 🌈 Thamer Studio Global Theme - style.css */
/* خلفية متحركة ناعمة لجميع الصفحات */

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #fff;
  background: linear-gradient(-45deg, #ef4444, #9333ea, #1e3a8a);
  background-size: 400% 400%;
  animation: gradientMove 30s ease infinite;
  overflow-x: hidden;
}

/* عناوين موحدة */
h1, h2, p {
  margin: 0;
  padding: 0;
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* تصميم الحاويات الأساسية */
.container {
  width: min(1000px, 95%);
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* الأزرار العامة (بدون تعديلات إضافية) */
button, .btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

/* تحسين العرض في الجوال */
@media (max-width: 600px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.3rem;}
  p {font-size: 1rem;}
  .container {padding: 15px;}
}
