body {
    background: linear-gradient(135deg, #e8f5e9, #f5f7e8, #fffde7);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    color: #1b5e20;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
  }
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Eid Decorative Elements */
  body::before {
    content: "🌙✨";
    font-size: 200px;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.25;
    color: #ffd700;
    animation: glow 3s ease-in-out infinite;
  }
  body::after {
    content: "🎉⭐";
    font-size: 180px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.25;
    color: #ffd700;
    animation: bounce 2s ease-in-out infinite;
  }
  @keyframes glow {
    0%, 100% { opacity: 0.25; text-shadow: 0 0 20px #ffd700; }
    50% { opacity: 0.5; text-shadow: 0 0 40px #ffd700; }
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
  }

  .container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(27, 94, 32, 0.4);
    border: 4px solid #ffd700;
    position: relative;
    z-index: 2;
  }

  h1 {
    font-family: 'Amiri Quran', serif;
    font-size: 5rem;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 0 0 50px rgba(27, 94, 32, 0.5);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .lead {
    font-size: 2rem;
    color: #1b5e20;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    margin-bottom: 30px;
  }

  .eid-celebration {
    margin: 50px 0;
    padding: 40px;
    background: rgba(232, 245, 233, 0.95);
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    border: 3px dashed #ffd700;
    position: relative;
    overflow: hidden;
  }
  .eid-celebration::before {
    content: "✨";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 80px;
    color: #ffd700;
    animation: sparkle 1.5s infinite;
  }
  @keyframes sparkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
  }

  .eid-icon {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 50% 50%, #ffd700 30%, #fff 50%, transparent 70%);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), inset 0 0 20px rgba(27, 94, 32, 0.5);
    position: relative;
    transition: transform 0.5s ease-in-out;
    animation: rotate 10s linear infinite;
  }
  .eid-icon::before {
    content: "🌙";
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1b5e20;
    text-shadow: 0 0 20px #ffd700;
  }
  .eid-icon:hover {
    transform: scale(1.15) rotate(360deg);
  }
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  #eid-message {
    font-size: 1.8rem;
    color: #1b5e20;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    margin-top: 25px;
    animation: fadeInUp 2s ease-in-out;
  }
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .eid-greeting {
    margin: 50px 0;
    padding: 40px;
    background: rgba(232, 245, 233, 0.95);
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    border: 3px dashed #ffd700;
    position: relative;
  }
  .eid-greeting h2 {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: bounceIn 1.5s ease-in-out;
  }
  #greeting-text {
    font-size: 2.5rem;
    color: #1b5e20;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    font-weight: bold;
  }
  @keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .quran-verse {
    margin: 50px 0;
    padding: 40px;
    background: rgba(232, 245, 233, 0.95);
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    border: 3px dashed #ffd700;
  }
  .quran-verse h2 {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
  .blockquote {
    font-size: 1.8rem;
    color: #1b5e20;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    margin: 25px 0;
  }
  .blockquote-footer {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  }

  .btn-primary {
    background: linear-gradient(45deg, #ffd700, #1b5e20);
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .btn-primary:hover {
    background: linear-gradient(45deg, #1b5e20, #ffd700);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
  }

  /* Fireworks Container */
  #fireworks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }