<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0a0a0a; color: #e5e5e5; padding: 20px; margin: 0; }
    .container { max-width: 600px; margin: 0 auto; }
    .header { padding: 20px 0; border-bottom: 1px solid #1f1f1f; }
    .logo { font-size: 20px; font-weight: 700; color: #ffffff; }
    .logo span { color: #DC394C; }
    .content { padding: 20px 0; }
    .event-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
    .event-checkin { background: #1e3a5f; color: #93c5fd; }
    .event-ticket { background: #3f1f1f; color: #fca5a5; }
    .event-wiki { background: #1f3f1f; color: #86efac; }
    .event-release { background: #3f3f1f; color: #fde68a; }
    .event-forum { background: #2d1f3f; color: #c4b5fd; }
    .project-name { color: #DC394C; text-decoration: none; }
    .message { margin: 16px 0; line-height: 1.6; }
    .button { display: inline-block; padding: 10px 20px; background: #DC394C; color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: 600; }
    .footer { padding: 20px 0; border-top: 1px solid #1f1f1f; font-size: 12px; color: #6b7280; }
    .unsubscribe { color: #9ca3af; text-decoration: underline; }
  </style>
</head>
<body>
  <div class="container">
    <div class="header">
      <div class="logo">fossil<span>repo</span></div>
    </div>
    <div class="content">
      <span class="event-badge event-{{ event_type }}" style="display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;{% if event_type == 'checkin' %} background: #1e3a5f; color: #93c5fd;{% elif event_type == 'ticket' %} background: #3f1f1f; color: #fca5a5;{% elif event_type == 'wiki' %} background: #1f3f1f; color: #86efac;{% elif event_type == 'release' %} background: #3f3f1f; color: #fde68a;{% elif event_type == 'forum' %} background: #2d1f3f; color: #c4b5fd;{% else %} background: #2a2a2a; color: #d4d4d4;{% endif %}">{{ event_type }}</span>
      <a href="{{ project_url }}" class="project-name" style="color: #DC394C; text-decoration: none;">{{ project_name }}</a>
      <div class="message" style="margin: 16px 0; line-height: 1.6;">{{ message }}</div>
      {% if action_url %}
      <a href="{{ action_url }}" class="button" style="display: inline-block; padding: 10px 20px; background: #DC394C; color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: 600;">View Details</a>
      {% endif %}
    </div>
    <div class="footer" style="padding: 20px 0; border-top: 1px solid #1f1f1f; font-size: 12px; color: #6b7280;">
      <p>You're receiving this because you're watching {{ project_name }}.</p>
      <p><a href="{{ unsubscribe_url }}" class="unsubscribe" style="color: #9ca3af; text-decoration: underline;">Unsubscribe</a> or <a href="{{ preferences_url }}" class="unsubscribe" style="color: #9ca3af; text-decoration: underline;">manage notification preferences</a>.</p>
    </div>
  </div>
</body>
</html>
