
    :root {
      --vosh-bg: #f5f5ff;
      --vosh-surface: #ffffff;
      --vosh-surface-soft: #f9f7ff;
      --vosh-accent: #fe6035;
      --vosh-accent-soft: rgba(254,96,53,0.12);
      --vosh-accent-2: #7c3aed;
      --vosh-text: #111827;
      --vosh-text-muted: #6b7280;
      --vosh-border-subtle: rgba(15,23,42,0.08);
      --vosh-pill: rgba(255,255,255,0.9);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-pill: 999px;
      --shadow-soft: 0 18px 40px rgba(15,23,42,0.12);
      --shadow-subtle: 0 10px 30px rgba(15,23,42,0.10);
    }

    * {
      box-sizing: border-box;
    }

    .vosh70-page {
  background: radial-gradient(circle at top, #eef2ff 0, #f9fafb 40%, #f3f4ff 100%);
  color: var(--vosh-text);
  line-height: 1.6;
}


    .vosh70-page {
      min-height: 100vh;
    }

    .vosh70-shell {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px 80px;
    }

    .vosh70-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      background: linear-gradient(135deg, rgba(254,96,53,0.12), rgba(124,58,237,0.05));
      border: 1px solid rgba(148,163,184,0.4);
      backdrop-filter: blur(10px);
      font-size: 13px;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--vosh-accent);
      margin-bottom: 18px;
    }

    .vosh70-badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--vosh-accent);
      box-shadow: 0 0 0 0 rgba(254,96,53,0.6);
      animation: pulseDot 1.8s infinite;
    }

    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(254,96,53,0.6); }
      100% { box-shadow: 0 0 0 14px rgba(254,96,53,0); }
    }

    /* ---------- HERO ---------- */
    .vosh70-hero {
      padding: 40px 20px 70px;
      position: relative;
      overflow: hidden;
    }

    .vosh70-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .vosh70-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 48px;
      align-items: center;
    }

    .vosh70-hero-left h1 {
      font-size: clamp(2.4rem, 3.4vw + 1rem, 3.6rem);
      line-height: 1.05;
      margin: 0 0 14px;
      color: #020617;
    }

    .vosh70-hero-highlight {
      background: linear-gradient(120deg, #be123c, #ea580c, #facc15);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .vosh70-hero-subtitle {
      color: var(--vosh-text-muted);
      max-width: 460px;
      margin-bottom: 20px;
      line-height: 25px;
    }

    .vosh70-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 2px 24px;
      margin-bottom: 24px;
      color: var(--vosh-text-muted);
    }

    .vosh70-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .vosh70-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--vosh-accent);
    }

    .vosh70-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .vosh70-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space: nowrap;
    }

    .vosh70-btn-primary {
      background: linear-gradient(135deg, #fe6035, #fb923c);
      box-shadow: var(--shadow-soft);
      color: #fff !important;
    }

    .vosh70-btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 50px rgba(148,163,184,0.45);
    }

    .vosh70-btn-ghost {
      background: #ffffff;
      border-color: rgba(148,163,184,0.7);
      color: #111827 !important;
    }

    .vosh70-btn-ghost:hover {
      background: #f9fafb;
      transform: translateY(-1px);
    }

    .vosh70-hero-footnote {
      color: var(--vosh-text-muted);
    }

    .vosh70-hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
      margin-top: 22px;
      max-width: 360px;
    }

    .vosh70-stat-card {
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid var(--vosh-border-subtle);
      background: rgba(255,255,255,0.96);
      box-shadow: 0 10px 25px rgba(148,163,184,0.25);
    }

    .vosh70-stat-label {
      color: var(--vosh-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
      font-size: 11px;
      font-weight: 700;
    }

    .vosh70-stat-value {
      font-weight: 700;
      color: #111827;
      font-size: 22px;
    }

    /* HERO RIGHT SIDE */
    .vosh70-hero-right {
      position: relative;
    }

    .vosh70-orbit-card {
      position: relative;
      border-radius: 28px;
      padding: 20px 20px 24px;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.9), rgba(254,243,199,0.9));
      border: 1px solid rgba(148,163,184,0.6);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      min-height: 270px;
    }

    .vosh70-orbit-card::before {
      content: "70";
      position: absolute;
      font-size: 150px;
      font-weight: 800;
      line-height: 1;
      right: -6px;
      bottom: -36px;
      color: rgba(15,23,42,0.03);
      letter-spacing: -0.08em;
    }

    .vosh70-orbit-tagline {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--vosh-text-muted);
      margin-bottom: 4px;
    }

    .vosh70-orbit-title {
      font-weight: 600;
      margin-bottom: 12px;
      color: #111827;
    }
    
    .vosh70-btn-ghost

    .vosh70-orbit-body {
      color: var(--vosh-text-muted);
      max-width: 320px;
      line-height: 25px;
    }

    .vosh70-orbit-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .vosh70-pill {
      padding: 5px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(148,163,184,0.6);
      color: var(--vosh-text-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .vosh70-mini-carousel {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .vosh70-mini-img {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      background: #e5e7eb;
      border: 1px solid rgba(148,163,184,0.7);
    }

    .vosh70-mini-img img {
      width: 100%;
      height: 135px !important;
      object-fit: cover;
      display: block;
      transform: scale(1.05);
      transition: transform .35s ease, filter .35s ease;
    }

    .vosh70-mini-img:hover img {
      transform: scale(1.1);
      filter: saturate(1.1) brightness(1.05);
    }

    .vosh70-mini-tag {
      position: absolute;
      bottom: 8px;
      left: 8px;
      padding: 3px 8px;
      background: rgba(255,255,255,0.9);
      color: #111827;
      backdrop-filter: blur(8px);
      line-height: 20px;
    }

    /* ---------- GENERIC SECTION ---------- */
    .vosh70-section {
      padding: 40px 20px 10px;
    }

    .vosh70-section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .vosh70-section-title-block h2 {
      font-size: 24px;
      margin: 0 0 4px;
      color: #020617;
    }

    .vosh70-section-kicker {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--vosh-text-muted);
      margin-bottom: 6px;
    }

    .vosh70-section-description {
      color: var(--vosh-text-muted);
      max-width: 520px;
      line-height: 26px;
    }
    
    .vosh70-link-inline {
      font-size: 15px !important;
    }

    .vosh70-tag-outline {
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.7);
      color: var(--vosh-text-muted);
      background: rgba(255,255,255,0.96);
    }

    /* ---------- ABOUT / PILLARS ---------- */
    .vosh70-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 18px;
    }

    .vosh70-card {
      background: var(--vosh-surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--vosh-border-subtle);
      box-shadow: var(--shadow-subtle);
      padding: 16px 18px 18px;
      position: relative;
      overflow: hidden;
    }

    .vosh70-card-pill {
      color: var(--vosh-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 8px;
    }

    .vosh70-card-title {
      font-weight: 600;
      margin-bottom: 6px;
      color: #111827;
    }

    .vosh70-card-body {
      color: var(--vosh-text-muted);
      line-height: 25px;
    }

    .vosh70-card-accent-dot {
      position: absolute;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(254,96,53,0.34), transparent 60%);
      right: -14px;
      top: -14px;
      opacity: 0.9;
    }

    /* ---------- PROGRAM TIMELINE ---------- */
    .vosh70-timeline {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 18px;
    }

    .vosh70-timeline-item {
      position: relative;
      padding-left: 20px;
      border-left: 2px solid rgba(148,163,184,0.5);
    }

    .vosh70-timeline-badge {
      position: absolute;
      left: -8px;
      top: 0;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: var(--vosh-accent);
      box-shadow: 0 0 0 6px var(--vosh-accent-soft);
    }

    .vosh70-timeline-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--vosh-text-muted);
      margin-bottom: 4px;
    }

    .vosh70-timeline-title {
      font-weight: 600;
      margin-bottom: 4px;
      color: #111827;
    }

    .vosh70-timeline-body {
      color: var(--vosh-text-muted);
      margin-bottom: 10px;
      line-height: 24px;
    }

    .vosh70-link-inline {
      color: var(--vosh-accent);
      text-decoration: none;
    }

    .vosh70-link-inline:hover {
      text-decoration: underline;
    }

    /* ---------- SPEAKERS ---------- */
    .vosh70-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 18px;
    }

    .vosh70-speaker-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--vosh-surface-soft);
      border: 1px solid var(--vosh-border-subtle);
      box-shadow: var(--shadow-subtle);
      display: flex;
      flex-direction: column;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .vosh70-speaker-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 50px rgba(148,163,184,0.45);
      border-color: rgba(254,96,53,0.6);
    }

    .vosh70-speaker-photo {
      /*aspect-ratio: 4 / 5;*/
      overflow: hidden;
      background: #e5e7eb;
    }

    .vosh70-speaker-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      transition: transform .35s ease;
    }

    .vosh70-speaker-card:hover .vosh70-speaker-photo img {
      transform: scale(1.08);
    }

    .vosh70-speaker-info {
      padding: 10px 12px 12px;
    }

    .vosh70-speaker-name {
      font-weight: 600;
      margin-bottom: 2px;
      color: #111827;
    }

    .vosh70-speaker-role {
      font-size: 13px;
      color: var(--vosh-text-muted);
      line-height: 18px;
    }

    /* ---------- REGIONS ---------- */
    .vosh70-grid-3-tight {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }

    .vosh70-region-card {
      padding: 12px 13px;
      border-radius: 16px;
      border: 1px solid var(--vosh-border-subtle);
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(148,163,184,0.25);
      position: relative;
      overflow: hidden;
    }

    .vosh70-region-label {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--vosh-text-muted);
      margin-bottom: 4px;
    }

    .vosh70-region-name {
      font-weight: 600;
      margin-bottom: 4px;
      color: #111827;
    }

    .vosh70-region-meta {
      font-size: 15px;
      color: var(--vosh-text-muted);
      margin-bottom: 6px;
      line-height: 21px;
    }

    .vosh70-region-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(124,58,237,0.06);
      color: var(--vosh-accent-2);
      font-weight: 600;
    }

    /* ---------- REGISTRATION CARDS ---------- */
    .vosh70-pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 18px;
    }

    .vosh70-pricing-card {
      border-radius: 22px;
      background: linear-gradient(145deg, #ffffff, #eef2ff);
      border: 1px solid var(--vosh-border-subtle);
      box-shadow: var(--shadow-soft);
      padding: 16px 18px 18px;
      position: relative;
      overflow: hidden;
    }

    .vosh70-pricing-card.featured {
      border-color: rgba(254,96,53,0.7);
      box-shadow: 0 24px 60px rgba(148,163,184,0.35);
      background: linear-gradient(135deg, #fff7ed, #fefce8);
    }

    .vosh70-tier-label {
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--vosh-text-muted);
      margin-bottom: 4px;
    }

    .vosh70-tier-title {
      font-weight: 600;
      margin-bottom: 4px;
      color: #111827;
    }

    .vosh70-tier-note {
      color: var(--vosh-text-muted);
      margin-bottom: 10px;
    }

    .vosh70-tier-list {
      list-style: none;
      padding: 0;
      margin: 0 0 12px;
      font-size: 12px;
      color: var(--vosh-text-muted);
    }

    .vosh70-tier-list li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      margin-bottom: 4px;
    }

    .vosh70-tier-bullet {
      margin-top: 8px;
      width: 5px;
      height: 5px;
      flex-shrink: 0;
      border-radius: 999px;
      background: var(--vosh-accent-2);
    }

    .vosh70-small {
          font-size: 14px;
    color: var(--vosh-text-muted);
    line-height: 18px;
    margin-top: 14px !important;
    }

    /* ---------- REGISTRATION FORM CARD (2-COLUMN) ---------- */
    .vosh70-reg-card {
      margin-top: 40px;
      padding: 24px;
      border-radius: 26px;
      background: #ffffff;
      border: 1px solid rgba(148,163,184,0.6);
      box-shadow: 0 20px 45px rgba(148,163,184,0.25);
    }

    .vosh70-reg-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
      gap: 40px;
      align-items: stretch;
    }

    .vosh70-reg-left {
      border-right: 1px solid rgba(226,232,240,0.85);
      padding-right: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }

    .vosh70-reg-left h2 {
      margin: 0;
      color: #020617;
    }

    .vosh70-reg-left p {
      color: var(--vosh-text-muted);
      margin: 0;
    }

    .vosh70-reg-highlight {
      font-weight: 600;
      color: var(--vosh-accent);
    }

    .vosh70-reg-illustration {
      margin-top: 8px;
      padding: 14px;
      border-radius: 18px;
      background: #f9fafb;
      border: 1px dashed rgba(148,163,184,0.7);
      font-size: 0.8rem;
      color: var(--vosh-text-muted);
    }

    .vosh70-reg-right {
      padding-left: 4px;
      display: flex;
      align-items: center;
    }

    .vosh70-reg-form {
      width: 100%;
    }

    .vosh70-field-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
    }

    .vosh70-field-group {
      margin-bottom: 14px;
    }

    .vosh70-field-group label {
      display: block;
      margin-bottom: 4px;
      font-weight: 500;
      color: #374151;
    }

    .vosh70-input,
    .vosh70-select {
      width: 100%;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.9);
      padding: 10px 14px;
      outline: none;
      background: #ffffff;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }

    .vosh70-input::placeholder {
      color: #9ca3af;
    }

    .vosh70-input:focus,
    .vosh70-select:focus {
      border-color: #0ea5e9;
      box-shadow: 0 0 0 3px rgba(14,165,233,0.22);
      background: #f9fafb;
    }

    .vosh70-reg-help {
      color: var(--vosh-text-muted);
      margin-bottom: 16px;
    }

    .vosh70-reg-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 11px 20px;
      border-radius: 999px;
      border: none;
      background: #00c4ff;
      color: #ffffff;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 16px 40px rgba(56,189,248,0.45);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }

    .vosh70-reg-submit:hover {
      background: #06b6d4;
      transform: translateY(-1px);
      box-shadow: 0 20px 50px rgba(56,189,248,0.55);
    }

    /* ---------- GALLERY STRIP ---------- */
    .vosh70-gallery-strip {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(180px, 1fr);
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 6px;
      scrollbar-width: thin;
    }

    .vosh70-gallery-card {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(148,163,184,0.7);
      background: #e5e7eb;
      min-height: 160px;
    }

    .vosh70-gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      height: 180px !important;
    }

    /* ---------- FAQ ---------- */
    .vosh70-faq {
      max-width: 760px;
    }

    .vosh70-faq-item {
      border-radius: 16px;
      border: 1px solid var(--vosh-border-subtle);
      background: #ffffff;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .vosh70-faq-question {
      padding: 10px 14px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #111827;
    }

    .vosh70-faq-toggle {
      color: var(--vosh-text-muted);
      transition: transform .18s ease;
    }

    .vosh70-faq-answer {
      padding: 0 14px 10px;
      color: var(--vosh-text-muted);
      display: none;
    }

    .vosh70-faq-item.active .vosh70-faq-answer {
      display: block;
    }

    .vosh70-faq-item.active .vosh70-faq-toggle {
      transform: rotate(45deg);
    }

    /* ---------- FINAL CTA ---------- */
    .vosh70-final-cta {
      margin-top: 36px;
      padding: 18px 18px 18px;
      border-radius: 22px;
      border: 1px solid rgba(148,163,184,0.7);
      background: radial-gradient(circle at top left, rgba(254,202,202,0.7), #ffffff);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
      justify-content: space-between;
    }

    .vosh70-final-left {
      max-width: 620px;
    }

    .vosh70-final-left h3 {
      margin: 0 0 4px;
      color: #111827;
    }

    .vosh70-scripture {
      line-height: 25px;
      color: #374151;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 960px) {
      .vosh70-hero-inner {
        grid-template-columns: minmax(0,1fr);
      }
      .vosh70-orbit-card {
        max-width: 420px;
        margin-inline: auto;
      }
      .vosh70-grid-3,
      .vosh70-grid-3-tight,
      .vosh70-pricing-grid,
      .vosh70-timeline {
        grid-template-columns: repeat(2,minmax(0,1fr));
      }
      .vosh70-grid-4 {
        grid-template-columns: repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width: 900px) {
      .vosh70-reg-grid {
        grid-template-columns: minmax(0,1fr);
        gap: 24px;
      }
      .vosh70-reg-left {
        border-right: none;
        border-bottom: 1px solid rgba(226,232,240,0.85);
        padding-right: 0;
        padding-bottom: 18px;
      }
      .vosh70-reg-right {
        padding-left: 0;
      }
    }

    @media (max-width: 720px) {
      .vosh70-shell {
        padding-inline: 16px;
      }
      .vosh70-section {
        padding-inline: 16px;
      }
      .vosh70-section-header {
        align-items: flex-start;
      }
      .vosh70-grid-3,
      .vosh70-grid-3-tight,
      .vosh70-pricing-grid,
      .vosh70-timeline,
      .vosh70-grid-4 {
        grid-template-columns: minmax(0,1fr);
      }
      .vosh70-hero {
        padding-top: 24px;
      }
      .vosh70-cta-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .vosh70-orbit-card::before {
        font-size: 110px;
        right: -10px;
        bottom: -26px;
      }
      .vosh70-field-row {
        grid-template-columns: minmax(0,1fr);
      }
    }
  

/* Registration AJAX message styling */
.vosh70-reg-message {
  margin-top: 10px;
  font-size: 0.85rem;
}

.vosh70-reg-message.vosh70-success {
  color: #047857;
}

.vosh70-reg-message.vosh70-error {
  color: #b91c1c;
}

/* VOSH70 Media Slider Cards */
.vosh70-gallery-strip {
    width: 100%;
    padding: 20px 0;
}

.vosh70-gallery-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.vosh70-media-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.vosh70-media-content {
    padding: 16px;
}

.vosh70-media-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.vosh70-media-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* VOSH70 Lightbox */
.vosh70-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

.vosh70-lightbox-overlay.is-visible {
    display: flex;
}

.vosh70-lightbox-inner {
    position: relative;
    max-width: 960px;
    max-height: 90vh;
    width: 100%;
}

.vosh70-lightbox-inner img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.vosh70-lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffffff;
    border-radius: 50%;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* -----------------------------
   Registration upgrades (Gender + Excel modal)
------------------------------ */
.vosh70-reg-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  cursor:pointer;
  font-weight:700;
}

.vosh70-multi-reg{ margin-top:18px; }
.vosh70-reg-note{ margin-top:10px; font-size:13px; opacity:.8; }

/* Modal */
.vosh70-modal{ position:fixed; inset:0; z-index:99999; display:none; }
.vosh70-modal[aria-hidden="false"]{ display:block; }
.vosh70-modal-backdrop{ position:absolute; inset:0; background:rgba(15,23,42,.55); }
.vosh70-modal-dialog{
  position:relative;
  width:min(520px, calc(100% - 28px));
  margin:70px auto;
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 24px 60px rgba(15,23,42,.25);
}
.vosh70-modal-close{
  position:absolute; top:10px; right:12px;
  width:36px; height:36px; border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff; cursor:pointer;
  font-size:20px; line-height:1;
}
.vosh70-modal-actions{ display:flex; justify-content:flex-end; gap:10px; margin-top:12px; }
.vosh70-modal-status{ margin-top:12px; font-weight:700; }
.vosh70-modal-status.vosh70-success{ color:#0f766e; }
.vosh70-modal-status.vosh70-error{ color:#b91c1c; }

/* Test bit */
/* Registration layout split */
.vosh70-reg-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

/* Keep form clean */
.vosh70-reg-form {
  display: block;
}

/* Excel side rail */
.vosh70-reg-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Excel button styling */
.vosh70-excel-btn {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px dashed #d0d7e2;
  background: #f9fbff;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.vosh70-excel-btn span {
  font-weight: 400;
  font-size: 13px;
  color: #64748b;
}

.vosh70-excel-btn:hover {
  background: #eef4ff;
  border-color: #3b82f6;
}

/* Helper text */
.vosh70-excel-help {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}

/* Responsive fix */
@media (max-width: 900px) {
  .vosh70-reg-layout {
    grid-template-columns: 1fr;
  }

  .vosh70-reg-side {
    margin-top: 16px;
  }
}
