:root {
  --bg: #0d1410;
  --card: #141a15;
  --border: #2e3530;
  --border-hi: #3d4740;
  --accent: #2bc600;
  --accent-soft: rgba(43, 198, 0, 0.12);
  --green: #2bc600;
  --green-glow: rgba(43, 198, 0, 0.12);
  --white: #f2f2f2;
  --muted: #7a8a7c;
  --divider: #222826;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
}

.container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 28px 48px;
}

.header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 20px;
}

.logo {
  flex: none;
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.tagline {
  flex: 1;
  min-width: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card {
  background: var(--green-glow);
  border: 1px solid rgba(43, 198, 0, 0.4);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.event-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.event-when,
.event-location {
  font-size: 14px;
  line-height: 1.5;
}

.event-when {
  color: var(--white);
}

.event-location {
  color: var(--muted);
  margin-top: 6px;
}

.provider-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.provider-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.provider-btn:hover {
  border-color: var(--border-hi);
  background: #171e19;
}

.provider-btn:active {
  background: var(--accent-soft);
  border-color: rgba(43, 198, 0, 0.45);
}

.provider-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f1411;
}

.provider-logo svg {
  display: block;
}

.provider-label {
  flex: 1;
}

.provider-chevron {
  flex: none;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.footer {
  margin-top: 22px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
