body {
  margin: 0;
  font-family: "Tahoma", Arial, sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  text-align: center;
}

/* الهيدر */
header {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 2px;
}

/* المحتوى */
main {
  padding: 30px 15px;
}

main p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* الصورة */
.image-link img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.image-link img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  border-color: #ffd700;
}
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-top: 30px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
}

footer a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f39c12;
}
h1 {
  font-size: 1.5rem;
  color: #f8fbfd;
  text-align: center;
  margin: 20px 0;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin: 15px 0;
  border-bottom: 2px solid #ddd;
  display: inline-block;
  padding-bottom: 5px;
}


hr {
  border: none;
  height: 3px;
  background: linear-gradient(to right, #3498db, #9b59b6);
  border-radius: 2px;
  margin: 40px auto;
  width: 80%;
  opacity: 0.8;
}

/* الفوتر */p {
  font-size: 1.2rem;            /* حجم خط مريح */
  color: #95a8b9;              /* لون أنيق وواضح */
  line-height: 1.9;            /* مسافة بين السطور */
  text-align: right;           /* محاذاة لليمين (عربي) */
  margin: 20px auto;           /* مسافة حول الفقرة */
  max-width: 800px;            /* عرض مناسب للقراءة */
  padding: 15px 20px;          /* مساحة داخلية */
  border-left: 6px solid #3498db; /* شريط جانبي يدي شكل فخم */
  border-radius: 8px;          /* حواف ناعمة */
  box-shadow: 0 3px 10px rgba(0,0,0,0.1); /* ظل خفيف */
  font-weight: 500;            /* الخط سميك شوية */
}
#notifyBtn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* تأثير عند المرور */
#notifyBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* تأثير توهج متدرج داخل الزر */
#notifyBtn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transform: rotate(45deg);
  transition: all 0.5s ease;
  z-index: 0;
}

#notifyBtn:hover::before {
  top: -20%;
  left: -20%;
}

/* النص داخل الزر فوق التأثير */
#notifyBtn span {
  position: relative;
  z-index: 1;
}
.radio {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.radio > input {
  position: absolute;
  appearance: none;
}

.radio > label {
  cursor: pointer;
  font-size: 30px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.radio > label > svg {
  fill: #666;
  transition: fill 0.3s ease;
}

.radio > label::before,
.radio > label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ff9e0b;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  animation: particle-explosion 1s ease-out;
}

.radio > label::before {
  top: -15px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.radio > label::after {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.radio > label:hover::before,
.radio > label:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.5);
}

.radio > label:hover {
  transform: scale(1.2);
  animation: pulse 0.6s infinite alternate;
}

/* Star glow and animation on hover */
.radio > label:hover > svg {
  fill: #ff9e0b;
  filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
  animation: shimmer 1s ease infinite alternate;
}

.radio > input:checked + label > svg {
  fill: #ff9e0b;
  filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
  animation: pulse 0.8s infinite alternate;
}

.radio > input:checked + label ~ label > svg,
.radio > input:checked + label > svg {
  fill: #ff9e0b; /* Highlight the stars */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes particle-explosion {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes shimmer {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 158, 11, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 158, 11, 1));
  }
}

.radio > input:checked + label:hover,
.radio > input:checked + label:hover ~ label {
  fill: #e58e09;
}

.radio > label:hover,
.radio > label:hover ~ label {
  fill: #ff9e0b;
}

.radio input:checked ~ label svg {
  fill: #ffa723;
}