body.rv-subscription-cancel { min-height: 100vh; }
.rv-cancel-content { display: grid; gap: 18px; }
.rv-cancel-state {
  padding: 22px;
  border: 1px solid rgba(129,140,248,.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(99,102,241,.08), rgba(255,255,255,.025));
}
.rv-cancel-state.active {
  border-color: rgba(245,158,11,.30);
  background: linear-gradient(145deg, rgba(245,158,11,.08), rgba(255,255,255,.025));
}
.rv-cancel-state.off {
  border-color: rgba(34,197,94,.26);
  background: linear-gradient(145deg, rgba(34,197,94,.07), rgba(255,255,255,.025));
}
.rv-cancel-state h2 { margin: 0 0 8px; }
.rv-cancel-state p { margin: 0; color: var(--rv-muted); line-height: 1.6; }
.rv-cancel-user { margin-top: 7px !important; font-size: .9rem; }
.rv-cancel-details {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin: 18px 0;
}
.rv-cancel-detail {
  padding: 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}
.rv-cancel-detail small { display: block; color: var(--rv-muted); margin-bottom: 4px; }
.rv-cancel-detail strong { display: block; color: var(--rv-text); line-height: 1.35; }
.rv-cancel-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.rv-cancel-button {
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: #b42318;
  color: #fff;
  box-shadow: 0 10px 24px rgba(180,35,24,.20);
}
.rv-cancel-button:hover:not(:disabled) { filter: brightness(1.06); transform: translateY(-1px); }
.rv-cancel-button:disabled { cursor: default; opacity: .62; box-shadow: none; }
.rv-cancel-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(129,140,248,.28);
  border-radius: 12px;
  text-decoration: none;
  color: var(--rv-text);
  font-weight: 800;
  background: rgba(99,102,241,.07);
}
.rv-cancel-note {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}
.rv-cancel-message { margin-top: 12px; min-height: 22px; font-weight: 700; }
.rv-cancel-message.success { color: #4ade80; }
.rv-cancel-message.error { color: #f87171; }
html[data-theme="light"] .rv-cancel-state { background: linear-gradient(145deg, rgba(79,70,229,.06), #fff); }
html[data-theme="light"] .rv-cancel-state.active { background: linear-gradient(145deg, rgba(217,119,6,.065), #fff); }
html[data-theme="light"] .rv-cancel-state.off { background: linear-gradient(145deg, rgba(22,163,74,.055), #fff); }
html[data-theme="light"] .rv-cancel-detail { border-color: rgba(79,70,229,.12); background: rgba(79,70,229,.035); }
@media (max-width: 720px) {
  .rv-cancel-details { grid-template-columns: 1fr; }
  .rv-cancel-actions { align-items: stretch; flex-direction: column; }
  .rv-cancel-button, .rv-cancel-secondary { width: 100%; }
}
