.csr-view {
  position: relative;
  width: 100%;
  min-height: 70vh;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  color: #ddd;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}
.csr-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.7); transition: background-image .4s ease; }
.csr-ui { position: relative; z-index: 2; display: grid; grid-template-rows: auto 1fr auto; gap: 12px; padding: 16px; }
.csr-top, .csr-bottom { display: flex; align-items: center; justify-content: space-between; }
.csr-btn { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 14px; cursor: pointer; }
.csr-progress { font-weight: 700; }
.csr-slides { width: 100%; overflow: auto; -webkit-overflow-scrolling: touch; }
.csr-slide { display: none; max-width: 900px; margin: 0 auto; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px; }
.csr-slide.active { display: block; }

/* Title: 40px, white, bold, underlined */
.csr-title { margin: 0 0 12px 0; font-size: 2.5rem; font-weight: bold; color: #fff; text-decoration: underline; }

/* Body text: 32px desktop, comfy line-height */
.csr-text { font-size: 2rem; line-height: 1.7; overflow-wrap: anywhere; word-break: break-word; color: #ddd; }
.csr-text p { margin: 0 0 10px 0; }

/* Audio full-width */
.csr-audio { margin-top: 12px; position: relative; z-index: 5; }
.csr-audio audio { width: 100%; max-width: 100%; min-height: 44px; height: auto !important; display: block !important; visibility: visible !important; opacity: 1 !important; }

/* Admin UI (reuse) */
#fort-wrap .csr-row { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 12px; margin-top: 12px; }
#fort-wrap .csr-row-head { display: flex; align-items: center; justify-content: space-between; }
#fort-wrap .csr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#fort-wrap .csr-preview { width: 100%; height: 150px; background: #f8fafc; border: 1px dashed #cbd5e1; display:flex; align-items:center; justify-content:center; border-radius: 8px; overflow: hidden; }
#fort-wrap .csr-preview img { width: 100%; height: 100%; object-fit: cover; }

/* Hide prev on first and next on last via JS (initial state will be set by JS on first render) */

/* Mobile tweaks */
@media (max-width: 600px) {
  .csr-ui { padding: 12px; }
  .csr-slide { padding: 14px; }
  .csr-title { font-size: 1.8rem; }   /* ~29px on mobile */
  .csr-text  { font-size: 1.25rem; }  /* ~20px on mobile */
}

.csr-audio { background: rgba(0,0,0,.25); padding: 8px; border-radius: 8px; }
