/* =========================
   VERSION BLOCKER (FORCED UPDATE)
   ========================== */

    .version-blocker {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.9);
      color: #fff;
      z-index: 11000;
      display: none;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
    }

    .version-blocker.is-open {
      display: flex;
    }

    .version-blocker-inner {
      max-width: 420px;
      width: 100%;
      background: #0B1720;
      border-radius: 20px;
      padding: 18px 18px 16px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    }

    .version-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(43, 178, 168, 0.12);
      margin-bottom: 8px;
    }

    .version-badge i {
      font-size: 14px;
      color: var(--accent);
    }

    .version-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .version-subtitle {
      font-size: 12px;
      color: #CBD5F5;
      margin-bottom: 10px;
    }

    .version-changes {
      font-size: 12px;
      color: #E2E8F0;
      text-align: right;
      direction: rtl;
      margin-bottom: 14px;
      max-height: 150px;
      overflow-y: auto;
    }

    .version-changes ul {
      padding-left: 0;
      padding-right: 18px;
      margin: 0;
      list-style: disc;
    }

    .version-changes li {
      margin-bottom: 4px;
    }

    .version-actions {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .version-update-btn {
      border: none;
      border-radius: 999px;
      background: var(--accent);
      color: #0B1720;
      font-size: 13px;
      font-weight: 600;
      padding: 9px 14px;
      cursor: pointer;
      width: 100%;
    }

    .version-update-btn:active {
      transform: translateY(1px);
    }

    .version-note {
      font-size: 11px;
      color: #94A3B8;
    }
