.coupon-page .redemption-feed {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  padding: 22px 24px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.coupon-page .stats-panel {
  grid-row: 3;
}
.coupon-page .rating-panel {
  grid-row: 4;
}
.activity-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.activity-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b7c0cf;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}
.activity-eyebrow > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.activity-paused .activity-eyebrow > span {
  background: #8c96a5;
}
.coupon-page .activity-heading h2 {
  margin: 5px 0 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.activity-toggle {
  display: inline-flex;
  min-height: 44px;
  min-width: 76px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #434c5c;
  border-radius: 5px;
  color: #e2e7ee;
  font-size: 11px;
  font-weight: 600;
}
.activity-toggle:hover {
  background: #252e3d;
  border-color: #8d98a9;
}
.activity-toggle:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}
.activity-coupon {
  margin: 13px 0 6px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: #b7c0cf;
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.activity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.activity-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 66px;
  padding: 12px 0;
}
.activity-row + .activity-row {
  border-top: 1px solid #2b3240;
}
.activity-flag {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #ffffff14;
}
.activity-copy p {
  margin: 0;
  color: #c5ccd7;
  font-size: 12px;
  line-height: 1.5;
}
.activity-copy strong {
  color: #f4f6fa;
  font-weight: 600;
}
.activity-copy .activity-redemption {
  margin-top: 3px;
  font-size: 11px;
}
.activity-code {
  display: inline-flex;
  align-items: baseline;
  padding: 1px 5px;
  border-radius: 3px;
  background: #0e141d;
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.activity-code-mask {
  display: inline-block;
  filter: blur(2.5px);
  user-select: none;
}
.activity-copy > span {
  display: block;
  margin-top: 3px;
  color: #a5afbe;
  font-size: 10px;
  line-height: 1.5;
}
.activity-time {
  color: #a5afbe;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.activity-row-new {
  animation: activity-enter 300ms ease-out;
}
@keyframes activity-enter {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 500px) {
  .coupon-page .redemption-feed {
    padding: 20px 16px 6px;
  }
  .activity-row {
    gap: 10px;
  }
  .activity-copy p {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .activity-row-new {
    animation: none;
  }
}
