/* Match kickoff reminders */
.match-card-wrap {
  position: relative;
  margin-bottom: 12px;
}

.match-card-wrap .match-card-link {
  display: block;
}

.match-card-wrap .reminder-btn {
  margin-top: 8px;
  width: 100%;
}

.reminder-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-height: 36px;
}

.reminder-btn:hover {
  border-color: var(--line-chalk);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.reminder-btn.active {
  border-color: rgba(254, 240, 138, 0.5);
  background: rgba(254, 240, 138, 0.12);
  color: var(--accent);
}

.reminder-btn-lg {
  width: 100%;
  max-width: 360px;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 12px;
}

.reminder-hero-wrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0 12px;
}

.reminder-kickoff-hint {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}

.reminder-toast {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10000;
  max-width: min(92vw, 360px);
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--secondary);
  border: 1px solid rgba(254, 240, 138, 0.35);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.reminder-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .reminder-btn {
    font-size: 10px;
    min-height: 40px;
  }

  .reminder-btn-lg {
    font-size: 12px;
  }
}
