
body {
  font-family: 'Story Script', cursive;
  margin: 0;
  text-align: center;
  background: linear-gradient(135deg, #74b9ff, #a29bfe, #81ecec);
  background-attachment: fixed;
}

/* ترويسة أنيقة */
header {
  background: linear-gradient(90deg, #2d3436, #636e72);
  color: white;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* الصورة */
.my-image {
  width: 220px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.my-image:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255,255,255,0.8);
}

/* الروابط */
.my-link {
  display: inline-block;
  margin: 8px;
  padding: 10px 18px;
  text-decoration: none;
  background: linear-gradient(90deg, #0984e3, #6c5ce7);
  color: white;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.my-link:hover {
  background: linear-gradient(90deg, #6c5ce7, #0984e3);
  transform: scale(1.05);
}

/* تنسيق الجداول */
.tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

table {
  border-collapse: collapse;
  width: 320px;
  background-color: rgba(255,255,255,0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  backdrop-filter: blur(3px);
}

th, td {
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 17px;
  text-align: center;
}

th {
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  color: white;
}

tr:nth-child(even) {
  background-color: #f8f9fa;
}

tr:hover {
  background-color: #dfe6e9;
  transition: 0.3s;
}

/* تذييل الصفحة */
footer {
  margin-top: 40px;
  background: linear-gradient(90deg, #2d3436, #636e72);
  color: white;
  padding: 15px 0;
  font-size: 18px;
  overflow: hidden;
}

/* حركة النص */
footer p {
  display: inline-block;
  white-space: nowrap;
  animation: slide 12s linear infinite;
}
@keyframes slide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}