  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-in;
    z-index: 9999;
  }

  .modal-content {
    background: #fff8e1;
    border: 2px solid #fbc02d;
    border-radius: 12px;
    padding: 20px;
    max-width: 90%;
    width: 500px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', sans-serif;
    animation: slideUp 0.8s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .modal h2 {
    color: #d84315;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .event-date, .event-time, .event-location {
    font-weight: bold;
    margin: 8px 0;
    color: #4e342e;
  }

  .event-details {
    margin: 15px 0;
    font-size: 1rem;
    color: #5d4037;
  }

  .countdown {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #bf360c;
    font-weight: bold;
  }

  .flyer-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f57c00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .flyer-btn:hover {
    background-color: #ef6c00;
  }

  @media (max-width: 480px) {
    .modal-content {
      padding: 15px;
    }

    .modal h2 {
      font-size: 1.3rem;
    }

    .event-details, .event-date, .event-time, .event-location {
      font-size: 0.95rem;
    }

    .countdown {
      font-size: 1rem;
    }
  }
