body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #f5f5f5;
}

a {
  color: #4fc3f7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero { 
  text-align: center;
  padding: 0px 0px;
}

.hero img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  margin-bottom: 20px;
  /* Add glowing bright effect */
  box-shadow:
    0 0 10px 5px rgba(255, 255, 255, 0.8),
    0 0 20px 10px rgba(255, 255, 255, 0.6),
    0 0 30px 15px rgba(255, 255, 255, 0.4);
  filter: brightness(1.2);
  transition: box-shadow 0.3s ease-in-out;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #fff;
}

.hero p.subtitle {
  font-size: 1em;
  color: #bbb;
}

.palestine-flag {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.palestine-flag div {
  width: 60px;
  height: 10px;
  margin: 0 2px;
}

.black { background: #000; }
.white { background: #fff; }
.green { background: #009639; }
.red-triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #e60000;
  margin-right: 10px;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  color: #e60000;
  border-left: 5px solid #009639;
  padding-left: 10px;
  margin-bottom: 10px;
}

footer {
  background-color: #000000;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #777;
}

/* Add subtle illumination effect on the whole page */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 80%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  mix-blend-mode: screen;
}

/* Animated starry sky background */
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* Planet styles */
.planet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffcc00, #cc9900);
  box-shadow: 0 0 15px 5px rgba(255, 204, 0, 0.7);
  animation: orbit 20s linear infinite;
}

.planet2 {
  background: radial-gradient(circle at 30% 30%, #66ccff, #336699);
  box-shadow: 0 0 20px 7px rgba(102, 204, 255, 0.7);
  animation-duration: 30s;
}

@keyframes orbit {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(100px) translateY(50px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* Additional celestial animations */

/* Falling light beam */
.falling-light {
  position: fixed;
  top: -100px;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  filter: drop-shadow(0 0 6px white);
  animation: fallLight 2s linear forwards;
  pointer-events: none;
  z-index: 10;
}

@keyframes fallLight {
  to {
    top: 100vh;
    opacity: 0;
  }
}

/* Meteor */
.meteor {
  position: fixed;
  top: -20px;
  width: 3px;
  height: 80px;
  background: linear-gradient(45deg, white, rgba(255,255,255,0));
  filter: drop-shadow(0 0 8px white);
  border-radius: 50%;
  animation: meteorFall 1.5s linear forwards;
  pointer-events: none;
  z-index: 10;
}

@keyframes meteorFall {
  to {
    transform: translate(100vw, 100vh);
    opacity: 0;
  }
}

/* Floating spirit (ruh) */
.spirit {
  position: fixed;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.8), rgba(255,255,255,0));
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
  animation: floatSpirit 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
  opacity: 0.7;
}

@keyframes floatSpirit {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-40px) translateX(20px);
    opacity: 1;
  }
}

/* Descending glowing spirits */
.descending-spirit {
  position: fixed;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
  pointer-events: none;
  z-index: 12;
  opacity: 0.8;
  animation-fill-mode: forwards;
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(255,255,255,0));
}

.descending-spirit.small {
  width: 10px;
  height: 10px;
  animation-name: descendSpiritAnim;
}

.descending-spirit.medium {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 15px white);
  animation-name: descendSpiritAnim;
  animation-duration: 6s;
}

.descending-spirit.large {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 20px white);
  animation-name: descendSpiritAnim;
  animation-duration: 8s;
}

@keyframes descendSpiritAnim {
  0% {
    top: -20px;
    opacity: 0.8;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

/* Ascending glowing spirits */
.ascending-spirit {
  position: fixed;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
  pointer-events: none;
  z-index: 12;
  opacity: 0.8;
  animation-fill-mode: forwards;
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(255,255,255,0));
}

.ascending-spirit.small {
  width: 10px;
  height: 10px;
  animation-name: ascendSpiritAnim;
}

.ascending-spirit.medium {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 15px white);
  animation-name: ascendSpiritAnim;
  animation-duration: 6s;
}

.ascending-spirit.large {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 20px white);
  animation-name: ascendSpiritAnim;
  animation-duration: 8s;
}

@keyframes ascendSpiritAnim {
  0% {
    bottom: 0;
    opacity: 0.8;
  }
  100% {
    bottom: 100vh;
    opacity: 0;
  }
}

/* Human-shaped glowing spirit */
.human-spirit {
  position: fixed;
  width: 60px;
  height: 100px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(255,255,255,0));
  filter: drop-shadow(0 0 25px white);
  pointer-events: none;
  z-index: 20;
  opacity: 0.9;
  border-radius: 30% / 50%;
  animation: floatHumanSpirit 10s ease-in-out infinite;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M32 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 24c-8 0-14 6-14 14v10h28V40c0-8-6-14-14-14z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@keyframes floatHumanSpirit {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-30px);
    opacity: 1;
  }
}

/* Large descending glowing spirit */
.large-spirit {
  position: fixed;
  top: -150px;
  left: 50%;
  width: 180px;
  height: 180px;
  max-width: 180px;
  max-height: 180px;
  background: radial-gradient(circle at center, rgba(255,255,255,1), rgba(255,255,255,0));
  border-radius: 50%;
  filter: drop-shadow(0 0 30px white);
  opacity: 0.9;
  transform: translateX(-50%);
  animation: descendSpirit 8s ease-in forwards;
  pointer-events: none;
  z-index: 15;
}

@keyframes descendSpirit {
  0% {
    top: -150px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 80vh;
    opacity: 0;
  }
}

/* Fiery glowing spirit */
.fiery-spirit {
  position: fixed;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at center, rgba(255,165,0,0.9), rgba(255,69,0,0));
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(255,140,0,0.8));
  animation: floatFierySpirit 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
  opacity: 0.8;
}

@keyframes floatFierySpirit {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) translateX(20px);
    opacity: 1;
  }
}

/* Ascending light styles */
.ascending-light {
  position: fixed;
  bottom: 0;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px white);
  pointer-events: none;
  z-index: 12;
  opacity: 0.8;
  animation-fill-mode: forwards;
}

.ascending-light.white {
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(255,255,255,0));
  width: 10px;
  height: 10px;
  animation-name: ascendLight;
}

.ascending-light.white.large {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 15px white);
}

.ascending-light.fiery {
  background: radial-gradient(circle at center, rgba(255,165,0,0.9), rgba(255,69,0,0));
  width: 10px;
  height: 10px;
  filter: drop-shadow(0 0 12px rgba(255,140,0,0.8));
  animation-name: ascendLightFiery;
}

.ascending-light.fiery.large {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 20px rgba(255,140,0,1));
}

@keyframes ascendLight {
  0% {
    bottom: 0;
    opacity: 0.8;
  }
  100% {
    bottom: 100vh;
    opacity: 0;
  }
}

@keyframes ascendLightFiery {
  0% {
    bottom: 0;
    opacity: 0.8;
  }
  100% {
    bottom: 100vh;
    opacity: 0;
  }
}

/* Large ascending light */
.ascending-light.large {
  max-width: 180px !important;
  max-height: 180px !important;
  width: 180px !important;
  height: 180px !important;
  filter: drop-shadow(0 0 30px white) !important;
}

/* Medium size descending spirit */
.descending-spirit.medium {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 15px white);
  animation-name: descendSpiritAnim;
  animation-duration: 6s;
}

/* Medium size ascending spirit */
.ascending-spirit.medium {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 15px white);
  animation-name: ascendSpiritAnim;
  animation-duration: 6s;
}

/* Bright shining overlay effect */
.bright-shining-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  filter: drop-shadow(0 0 50px white);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  animation: brightShiningPulse 5s ease-in-out forwards;
}

@keyframes brightShiningPulse {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
