/* ═══════════════════════════════════════════════════════
   BRIDGE — Event Landing Page (Faz K)
   Standalone CSS — no base.html dependency
   ═══════════════════════════════════════════════════════ */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #edf0f5;
  color: #1a2332;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ─── HERO HEADER ─── */
.el-hero {
  background: linear-gradient(150deg, #0c1c34 0%, #122848 50%, #0d3248 100%);
  position: relative; overflow: hidden;
}
.el-hero-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.el-hr1 { width: 500px; height: 500px; top: -200px; right: -100px; border: 1px solid rgba(0,212,188,.06); }
.el-hr2 { width: 300px; height: 300px; top: -40px; right: 120px; border: 1px solid rgba(0,212,188,.08); }
.el-hr3 { width: 350px; height: 350px; bottom: -160px; left: -60px; border: 1px solid rgba(255,255,255,.03); }
.el-hr4 { width: 180px; height: 180px; bottom: 40px; left: 35%; border: 1px solid rgba(0,212,188,.05); }
.el-hr5 { width: 100px; height: 100px; top: 20%; left: 15%; border: 1px solid rgba(0,212,188,.07); }
.el-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 30%, rgba(0,212,188,.07) 0%, transparent 55%);
  pointer-events: none;
}

/* Top nav */
.el-topnav {
  position: relative; z-index: 10;
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.el-logo { display: flex; flex-direction: column; }
.el-logo-word { font-size: 18px; font-weight: 900; letter-spacing: 3.5px; color: #fff; line-height: 1; }
.el-logo-word em { color: #00d4bc; font-style: normal; }
.el-logo-sub { font-size: 8px; font-weight: 600; letter-spacing: 3px; color: rgba(255,255,255,.38); text-transform: uppercase; margin-top: 5px; }
.el-nav-links { display: flex; gap: 24px; }
.el-nav-link {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s;
}
.el-nav-link:hover { color: #00d4bc; }

/* Hero content */
.el-hero-inner {
  position: relative; z-index: 10;
  max-width: 780px; margin: 0 auto;
  padding: 40px 48px 64px; text-align: center;
}
.el-hero-badge {
  display: inline-block;
  background: rgba(0,212,188,.12); border: 1px solid rgba(0,212,188,.28);
  color: #00d4bc; padding: 5px 18px; border-radius: 30px;
  font-size: 9px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.el-hero-title {
  font-size: 44px; font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px;
}
.el-hero-meta {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.el-meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  padding: 9px 18px; border-radius: 12px;
}
.el-meta-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.el-meta-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }

/* ─── CONTENT ─── */
.el-content {
  max-width: 780px; margin: -32px auto 0; padding: 0 24px 60px;
  position: relative; z-index: 20;
}

/* Section label */
.el-slbl {
  font-size: 9.5px; font-weight: 800; color: #9faab8;
  letter-spacing: 2.2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.el-slbl::before { content:''; width: 3px; height: 14px; background: #00d4bc; border-radius: 2px; display: block; }

/* ─── MAIN CARD ─── */
.el-main-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 64px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
  margin-bottom: 20px;
}
.el-main-card::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, #00d4bc, #00a88f, #00d4bc);
}
.el-card-body { padding: 40px 44px; }

/* ─── ABOUT SECTION ─── */
.el-event-desc {
  font-size: 15px; color: #3a4a5e; line-height: 1.85;
  margin-bottom: 32px;
}
.el-event-desc p { margin-bottom: 12px; }
.el-event-desc strong { color: #1a2332; }
.el-event-desc ul, .el-event-desc ol { padding-left: 20px; margin-bottom: 12px; }
.el-event-desc li { margin-bottom: 4px; }

/* Detail pills */
.el-detail-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.el-dpill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #f5f7fa; border: 1px solid #eef1f7;
  padding: 8px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 600; color: #3a4a5e;
}
.el-dpill-icon { font-size: 13px; opacity: .7; }

.el-section-divider {
  border: none; height: 1px; background: #eef1f7;
  margin: 0 0 32px;
}

/* ─── AUDIENCE ─── */
.el-audience-section { margin-bottom: 32px; }
.el-audience-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 4px;
}
.el-audience-card {
  background: linear-gradient(135deg, #f5f7fa, #fafbfd);
  border: 1px solid #eef1f7;
  border-radius: 16px;
  padding: 20px 22px;
  transition: border-color .2s, transform .15s;
}
.el-audience-card:hover {
  border-color: rgba(0,212,188,.35);
  transform: translateY(-2px);
}
.el-ac-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 12px;
  background: rgba(0,212,188,.12);
}
.el-ac-title {
  font-size: 13px; font-weight: 700; color: #1a2332; margin-bottom: 6px;
}
.el-ac-desc {
  font-size: 12px; color: #6b7a8d; line-height: 1.6;
}

/* ─── RESOURCES ─── */
.el-resources-section { margin-bottom: 32px; }
.el-resources-grid {
  display: flex; flex-direction: column; gap: 12px;
}
.el-resource-card {
  display: flex; align-items: center; gap: 18px;
  background: #fff;
  border: 1.5px solid #eef1f7;
  border-radius: 16px;
  padding: 18px 22px;
  cursor: pointer;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.el-resource-card:hover {
  border-color: rgba(0,212,188,.4);
  box-shadow: 0 4px 20px rgba(0,168,143,.1);
  transform: translateY(-1px);
}
.el-rc-thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.el-rc-thumb.blog  { background: linear-gradient(135deg, #0c1c34, #122848); }
.el-rc-thumb.video { background: linear-gradient(135deg, #3b1459, #5a2d82); }
.el-rc-thumb.link  { background: linear-gradient(135deg, #00695e, #00a88f); }
.el-rc-body { flex: 1; min-width: 0; }
.el-rc-type {
  font-size: 9px; font-weight: 700; color: #9faab8;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px;
}
.el-rc-title-text {
  font-size: 14px; font-weight: 700; color: #1a2332; line-height: 1.4;
  margin-bottom: 4px;
}
.el-rc-excerpt {
  font-size: 12px; color: #6b7a8d; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.el-rc-arrow {
  flex-shrink: 0; width: 28px; height: 28px;
  background: #f5f7fa; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #9faab8; font-size: 14px;
  transition: background .2s, color .2s;
}
.el-resource-card:hover .el-rc-arrow {
  background: #00d4bc; color: #fff;
}

/* ─── POLL ─── */
.el-poll-section { margin-bottom: 32px; }
.el-poll-card {
  background: linear-gradient(135deg, #f0f7f6, #f5f9fc);
  border: 1.5px solid rgba(0,212,188,.2);
  border-radius: 20px;
  padding: 28px 30px;
}
.el-poll-question {
  font-size: 16px; font-weight: 800; color: #1a2332;
  margin-bottom: 18px; line-height: 1.4;
}
.el-poll-options {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.el-poll-option {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.el-poll-option:hover {
  border-color: #00d4bc;
  background: rgba(0,212,188,.04);
}
.el-poll-option.selected {
  border-color: #00d4bc;
  background: rgba(0,212,188,.06);
}
.el-po-radio {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid #d0d5de; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.el-poll-option:hover .el-po-radio,
.el-poll-option.selected .el-po-radio {
  border-color: #00d4bc;
}
.el-poll-option.selected .el-po-radio::after {
  content: ''; width: 10px; height: 10px;
  background: #00d4bc; border-radius: 50%;
}
.el-po-text {
  font-size: 14px; font-weight: 600; color: #1a2332;
}
.el-poll-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00a88f, #00d4bc);
  border: none; border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(0,168,143,.25);
  transition: transform .15s, box-shadow .2s;
}
.el-poll-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,168,143,.35);
}
.el-poll-note {
  font-size: 11px; color: #9faab8; margin-top: 12px;
}

/* ─── CTA SECTION ─── */
.el-cta-section {
  text-align: center; padding-top: 8px;
}
.el-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 52px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  color: #fff; letter-spacing: .3px;
  background: linear-gradient(135deg, #00a88f, #00d4bc);
  border: none; border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,168,143,.3);
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.el-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,168,143,.4);
}
.el-cta-sub {
  font-size: 12px; color: #9faab8; margin-top: 14px;
}

/* ─── PULL QUOTE ─── */
.el-pull-quote {
  position: relative;
  background: linear-gradient(150deg, #0c1c34, #122848);
  border-radius: 20px;
  padding: 32px 36px 28px;
  margin-bottom: 32px;
  overflow: hidden;
}
.el-pull-quote::before {
  content: '\201C';
  position: absolute; top: 14px; left: 24px;
  font-size: 72px; font-weight: 900; color: rgba(0,212,188,.15);
  line-height: 1;
}
.el-pq-text {
  position: relative;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.82);
  line-height: 1.75; font-style: italic;
  margin-bottom: 14px;
}
.el-pq-author {
  position: relative;
  font-size: 12px; font-weight: 700; color: #00d4bc;
}

/* ─── INFO CARD ─── */
.el-info-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: 26px 32px; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 18px;
}
.el-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, #0c1c34, #122848);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.el-info-title { font-size: 14px; font-weight: 800; color: #1a2332; margin-bottom: 7px; }
.el-info-text { font-size: 13px; color: #6b7a8d; line-height: 1.7; }
.el-info-text strong { color: #1a2332; font-weight: 700; }

/* ─── SITE LINK (footer) ─── */
.el-site-link {
  font-size: 12px; font-weight: 600; color: #00a88f;
  text-decoration: none;
}
.el-site-link:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
.el-footer { text-align: center; padding: 32px 24px; }
.el-ft-text { font-size: 10px; color: #9faab8; }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .el-topnav { padding: 20px 20px; }
  .el-hero-inner { padding: 24px 20px 48px; }
  .el-hero-title { font-size: 30px; }
  .el-card-body { padding: 28px 24px; }
  .el-audience-grid { grid-template-columns: 1fr; }
  .el-info-card { flex-direction: column; }
}

/* ─── REGISTRATION FORM (Embedded in landing) ─── */
.el-reg-section {
  margin-bottom: 8px;
}
.el-reg-form {
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 20px;
  padding: 32px 34px 28px;
  margin-top: 4px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.el-reg-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 3px;
  background: linear-gradient(90deg, #00d4bc, #00a88f);
  border-radius: 0 0 3px 3px;
}
.el-reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.el-reg-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 6px;
  letter-spacing: .2px;
}
.el-reg-field input,
.el-reg-field select {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #1a2332;
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.el-reg-field input:focus,
.el-reg-field select:focus {
  border-color: #00d4bc;
  box-shadow: 0 0 0 3px rgba(0,212,188,.12);
}
.el-reg-field input::placeholder {
  color: #b0b8c8;
}
.el-reg-field select {
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239faab8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.el-req { color: #00d4bc; margin-left: 2px; }

/* Inline poll */
.el-reg-poll {
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.el-reg-poll-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
  line-height: 1.4;
}
.el-reg-poll-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.el-reg-poll-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid #eef1f7;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #3a4a5e;
  transition: border-color .15s, background .15s;
}
.el-reg-poll-option:hover {
  border-color: rgba(0,212,188,.4);
  background: rgba(0,212,188,.03);
}
.el-reg-poll-option input[type="radio"] {
  margin: 0;
  accent-color: #00d4bc;
  cursor: pointer;
}
.el-reg-poll-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: #1a2332;
}

/* KVKK */
.el-reg-kvkk {
  margin-bottom: 18px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 10px;
}
.el-reg-kvkk label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.55;
}
.el-reg-kvkk input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  accent-color: #00d4bc;
  cursor: pointer;
}
.el-reg-kvkk a {
  color: #00a88f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit */
.el-reg-submit {
  display: block;
  width: 100%;
  padding: 15px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  background: linear-gradient(135deg, #00a88f, #00d4bc);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,168,143,.25);
  transition: transform .15s, box-shadow .2s;
  margin-bottom: 10px;
}
.el-reg-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,168,143,.35);
}

/* Resend button */
.el-resend-btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #3a4a5e;
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s;
}
.el-resend-btn:hover { border-color: #00d4bc; color: #00a88f; }

/* Verification-sent block (after form submit) */
.el-verify-block {
  background: linear-gradient(135deg, rgba(0,212,188,.05), rgba(0,168,143,.04));
  border: 1.5px solid rgba(0,212,188,.2);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.el-verify-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: rgba(0,212,188,.12);
  color: #00a88f;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
}
.el-verify-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 14px;
}
.el-verify-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.el-verify-text strong { color: #1a2332; font-weight: 700; }
.el-verify-resend {
  margin-top: 22px;
  display: flex; gap: 12px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.el-verify-resend-btn {
  display: inline-block;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #3a4a5e;
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.el-verify-resend-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f5f7fa;
}
.el-verify-resend-btn:not(:disabled):hover {
  border-color: #00d4bc;
  color: #00a88f;
}

/* Flash messages */
.el-flash {
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.el-flash-warning { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.el-flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.el-flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.el-flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* Responsive */
@media (max-width: 640px) {
  .el-reg-form { padding: 20px 18px; }
  .el-reg-row { grid-template-columns: 1fr; }
}

/* ─── CALENDAR ADD BUTTONS ─── */
.el-cal-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: -12px 0 32px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f0f7f6, #f5f9fc);
  border: 1px solid rgba(0,212,188,.15);
  border-radius: 12px;
}
.el-cal-label {
  font-size: 11px; font-weight: 700; color: #3a4a5e;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-right: 4px;
}
.el-cal-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid #e6eaf2;
  border-radius: 8px;
  font-family: inherit; font-size: 12px; font-weight: 600;
  color: #3a4a5e;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.el-cal-btn:hover {
  border-color: #00d4bc;
  color: #00a88f;
  background: rgba(0,212,188,.04);
}
.el-cal-btn span { font-size: 14px; }

/* ─── FEATURED VIDEO (Embedded YouTube) ─── */
.el-video-section {
  margin-bottom: 32px;
}
.el-video-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.el-video-frame {
  width: 100%;
  max-width: 380px;          /* dikey video: dar tutulur */
  aspect-ratio: 9 / 16;      /* dikey (Shorts) default */
  border-radius: 20px;
  overflow: hidden;
  background: #0c1c34;
  box-shadow: 0 12px 48px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.04);
  position: relative;
}
.el-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Fallback: if browser doesn't support aspect-ratio */
@supports not (aspect-ratio: 9 / 16) {
  .el-video-frame {
    height: 0;
    padding-bottom: 177.77%;  /* 16/9 = 177.77% for vertical */
  }
  .el-video-frame iframe {
    position: absolute;
    top: 0; left: 0;
  }
}
@media (max-width: 480px) {
  .el-video-frame { max-width: 100%; }
}

/* ─── OPENING LETTER (Emotional hook at top of page) ─── */
.el-letter-section {
  margin-bottom: 32px;
}
.el-letter-card {
  position: relative;
  background: #fdf8ed;
  /* Subtle paper texture via gradients */
  background-image:
    radial-gradient(ellipse at top right, rgba(180,130,80,.04), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(12,28,52,.03), transparent 60%);
  border: 1px solid #efe6d0;
  border-radius: 20px;
  padding: 44px 48px 40px;
  box-shadow:
    0 1px 3px rgba(0,0,0,.03),
    0 8px 28px rgba(180,130,80,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
  /* Slight paper-edge feel: top-left ribbon highlight */
  overflow: hidden;
}
.el-letter-card::before {
  /* Accent corner ribbon */
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #00d4bc 0%, #00d4bc 50%, transparent 50%);
  opacity: .12;
}
.el-letter-stamp {
  position: absolute;
  top: 20px; right: 24px;
  width: 42px; height: 42px;
  background: #fff;
  border: 1.5px dashed #d4c4a0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  opacity: .7;
}
.el-letter-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a7f4e;
  background: rgba(180,130,80,.08);
  border: 1px solid rgba(180,130,80,.15);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.el-letter-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #2a2418;
  margin-bottom: 24px;
  letter-spacing: -.2px;
}
.el-letter-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16.5px;
  line-height: 1.85;
  color: #3a3020;
}
.el-letter-body p {
  margin-bottom: 16px;
}
.el-letter-body p:last-child {
  margin-bottom: 0;
}
.el-letter-body strong {
  color: #1a1408;
  font-weight: 700;
}
.el-letter-body em {
  font-style: italic;
  color: #5a4a2e;
}
.el-letter-sig-wrap {
  margin-top: 32px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.el-letter-sig-line {
  width: 80px;
  height: 1px;
  background: #c9b88f;
  margin-bottom: 10px;
}
.el-letter-sig {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: #00a88f;
  letter-spacing: .2px;
}
@media (max-width: 640px) {
  .el-letter-card { padding: 32px 26px 28px; }
  .el-letter-title { font-size: 22px; }
  .el-letter-body { font-size: 15.5px; }
  .el-letter-stamp { display: none; }
}

/* ─── SHARE SECTION (social media share buttons) ─── */
.el-share-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.el-share-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #9faab8;
  text-transform: uppercase;
}
.el-share-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.el-share-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e6eaf2;
  color: #6b7a8d;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  cursor: pointer;
}
.el-share-ic:hover {
  transform: translateY(-2px);
}
/* Brand-colored hover states */
.el-share-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.el-share-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}
.el-share-x:hover {
  background: #0F1419;
  border-color: #0F1419;
  color: #fff;
}
.el-share-email:hover {
  background: #EA4335;
  border-color: #EA4335;
  color: #fff;
}
.el-share-native:hover {
  background: #00d4bc;
  border-color: #00d4bc;
  color: #fff;
}
.el-share-copy:hover {
  background: #0c1c34;
  border-color: #0c1c34;
  color: #fff;
}
.el-share-copy.copied {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

/* ─── LETTER SCROLL HINT (subtle "more below" cue) ─── */
.el-letter-scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  color: #c9b88f;
  transition: opacity .4s ease, transform .4s ease;
  animation: elHintBounce 2.4s ease-in-out infinite;
  pointer-events: none;
}
.el-letter-scroll-hint.el-hint-hidden {
  opacity: 0;
  transform: translateY(-4px);
}
@keyframes elHintBounce {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50%      { transform: translateY(5px); opacity: .75; }
}
/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .el-letter-scroll-hint {
    animation: none;
    opacity: .5;
  }
}

/* ─── STATUS BANNER (archived / past events) ─── */
.el-status-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1.5px solid;
}
.el-banner-past {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-color: #fbbf24;
  color: #78350f;
}
.el-banner-archived {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-color: #9ca3af;
  color: #374151;
}
.el-banner-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.el-banner-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.el-banner-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: .9;
}
