
    /* საბაზისო რესეტი და ფონტების გაწერა */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
    }
    html, body {
      width: 100%;
      height: 100%;
      background: transparent !important;
      background-color: transparent !important;
    }
    body {
      background: transparent !important;
      background-color: transparent !important;
      height: 100vh;
      overflow: hidden;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    
    /* მენიუს მთავარი კონტეინერი (Luxury Slate / Enhanced Glassmorphism) */
    .blox-luxury-menu {
      width: 360px; /* BLOX-ის არსებული პროპორცია შენარჩუნებულია */
      background:
        radial-gradient(circle at 18% 0%, rgba(255,255,255,0.055), transparent 34%),
        linear-gradient(180deg, rgba(33, 31, 49, 0.965), rgba(27, 25, 40, 0.955) 42%, rgba(22, 20, 33, 0.965)); /* BLOX-ის საფირმო ფერი შენარჩუნებულია */
      backdrop-filter: blur(28px) saturate(118%);
      -webkit-backdrop-filter: blur(28px) saturate(118%);
      border-right: 1px solid rgba(255, 255, 255, 0.055);
      height: 100vh;
      padding: 48px 32px 38px;
      display: flex;
      flex-direction: column;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      transform: translateX(0);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .blox-luxury-menu::before {
      content: '';
      position: absolute;
      inset: 16px 12px 16px 14px;
      border: 1px solid rgba(255,255,255,0.035);
      border-left-color: rgba(255,255,255,0.07);
      border-radius: 26px;
      pointer-events: none;
      opacity: 0.9;
    }
    .blox-luxury-menu::after {
      content: none;
      display: none;
    }
    body.menu-closed .blox-luxury-menu {
      transform: translateX(calc(-100% - 2px));
    }
    /* მენიუს toggle ღილაკი */
    .blox-menu-toggle {
      position: fixed;
      top: 28px;
      left: 382px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
        rgba(27, 25, 40, 0.80);
      backdrop-filter: blur(20px) saturate(115%);
      -webkit-backdrop-filter: blur(20px) saturate(115%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        inset 0 0 0 1px rgba(255,255,255,0.025);
      cursor: pointer;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    }
    .blox-menu-toggle:hover {
      transform: scale(1.045);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
        rgba(27, 25, 40, 0.93);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12);
    }
    body.menu-closed .blox-menu-toggle {
      left: 24px;
    }
    .blox-menu-toggle span {
      position: absolute;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #ffffff;
      left: 50%;
      top: 50%;
      transform-origin: center;
      transition: transform 0.35s ease, opacity 0.25s ease;
    }
    .blox-menu-toggle span:nth-child(1) {
      transform: translate(-50%, -8px);
    }
    .blox-menu-toggle span:nth-child(2) {
      transform: translate(-50%, -50%);
    }
    .blox-menu-toggle span:nth-child(3) {
      transform: translate(-50%, 6px);
    }
    body:not(.menu-closed) .blox-menu-toggle span:nth-child(1) {
      transform: translate(-50%, -50%) rotate(45deg);
    }
    body:not(.menu-closed) .blox-menu-toggle span:nth-child(2) {
      opacity: 0;
      transform: translate(-50%, -50%) scaleX(0);
    }
    body:not(.menu-closed) .blox-menu-toggle span:nth-child(3) {
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    @media (max-width: 640px) {
      .blox-luxury-menu {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        padding: calc(26px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom));
        border-right: none;
        border-radius: 0;
        box-shadow:
          0 0 0 1px rgba(255,255,255,0.035),
          inset 0 1px 0 rgba(255,255,255,0.045);
      }
      .blox-luxury-menu::before {
        inset: 12px;
        border-radius: 24px;
      }
      .blox-luxury-menu::after {
        display: none;
      }
      body.menu-closed .blox-luxury-menu {
        transform: translateX(calc(-100vw - 2px));
      }
      .blox-menu-toggle {
        top: calc(16px + env(safe-area-inset-top));
        left: auto;
        right: 18px;
        width: 48px;
        height: 48px;
      }
      body.menu-closed .blox-menu-toggle {
        left: 16px;
        right: auto;
      }
      .blox-menu-header {
        margin-bottom: 10px;
        padding: 4px 62px 18px 2px;
      }
      .blox-menu-header::after {
        top: 62px;
      }
      .blox-menu-header h2 {
        font-size: 22px;
        letter-spacing: 3.8px;
      }
      .blox-menu-header h2 span {
        font-size: 9px;
        letter-spacing: 4.6px;
      }
      .blox-lang-switcher {
        margin-top: 28px;
        gap: 3px;
        padding: 3px;
      }
      .blox-lang-btn {
        width: 36px;
        height: 24px;
        font-size: 8px;
      }
      .blox-accordion {
        padding-right: 4px;
        margin-top: -24px;
      }
      .accordion-title {
        padding: 15px 8px 15px 2px;
        font-size: 9px;
        letter-spacing: 1.55px;
      }
      .accordion-title:hover,
      .accordion-title.active {
        padding-left: 5px;
        letter-spacing: 1.65px;
      }
      .accordion-content {
        padding-left: 18px;
      }
      .accordion-content.open {
        margin-bottom: 8px;
      }
      .category-label {
        font-size: 8px;
        letter-spacing: 1.8px;
        margin-bottom: 10px;
      }
      .pano-list {
        gap: 3px;
      }
      .pano-link {
        width: calc(100% - 2px);
        min-height: 44px;
        padding: 12px 12px 12px 38px;
        font-size: 12px;
        border-radius: 14px;
      }
      .pano-link:hover,
      .pano-link.active-node {
        transform: translateX(3px);
      }
    }
    /* ჰედერი / ლოგოს სექცია */
    .blox-menu-header {
      margin-bottom: 12px;
      padding: 4px 4px 18px;
      position: relative;
    }
    /* ხაზი დაბრუნებულია ლოგოს ძირში / ენის ღილაკების ზემოთ */
    .blox-menu-header::after {
      content: '';
      position: absolute;
      top: 70px;
      bottom: auto;
      left: 4px;
      width: 88px;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.45), rgba(255,255,255,0.16), rgba(255,255,255,0.02));
      filter: blur(0.2px);
      transition: width 0.5s ease, opacity 0.5s ease;
    }
    .blox-luxury-menu:hover .blox-menu-header::after {
      width: 72px;
    }
    .blox-menu-header h2 {
      color: #ffffff;
      font-size: 25px;
      font-weight: 700;
      letter-spacing: 4.6px;
      text-transform: uppercase;
      margin: 0;
      line-height: 1;
      text-shadow: 0 10px 28px rgba(0,0,0,0.34);
    }
    .blox-menu-header h2 span {
      font-weight: 300;
      font-size: 12px;
      display: block;
      letter-spacing: 6px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 8px;
    }
    /* Language switcher */
    .blox-lang-switcher {
      margin-top: 48px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.085);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 12px 28px rgba(0,0,0,0.14);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .blox-lang-btn {
      width: 42px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.035);
      color: rgba(255,255,255,0.58);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      cursor: pointer;
      transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    }
    .blox-lang-btn:hover {
      color: #ffffff;
      transform: translateY(-1px);
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.16);
    }
    .blox-lang-btn.active {
      color: #1b1928;
      background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(230,230,234,0.88));
      border-color: rgba(255,255,255,0.42);
      box-shadow: 0 10px 24px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.75);
    }
    /* აკორდეონის კონტეინერი სქროლით */
    .blox-accordion {
      flex: 1;
      overflow-y: auto;
      padding: 2px 8px 4px 2px;
      position: relative;
      z-index: 1;
      margin-top: -6px;
    }
    .blox-accordion::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 4px;
      width: 88px;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.45), rgba(255,255,255,0.16), rgba(255,255,255,0.02));
      filter: blur(0.2px);
      pointer-events: none;
      opacity: 0.95;
    }
    
    /* ელეგანტური თხელი Scrollbar */
    .blox-accordion::-webkit-scrollbar {
      width: 2px;
    }
    .blox-accordion::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
    }
    .blox-accordion::-webkit-scrollbar-track {
      background: transparent;
    }
    /* აკორდეონის თითოეული ბლოკი */
    .accordion-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.035);
      margin-bottom: 5px;
      position: relative;
      border-radius: 18px;
    }
    .accordion-item::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255,255,255,0.026), rgba(255,255,255,0.006));
      opacity: 0;
      transition: opacity 0.42s ease;
      pointer-events: none;
    }
    .accordion-item:hover::before {
      opacity: 1;
    }
    .accordion-item:last-child {
      border-bottom: none;
    }
    /* კატეგორიის სათაურის ღილაკი */
    .accordion-title {
      width: 100%;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.68);
      text-align: left;
      padding: 16px 10px 16px 4px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.15px;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1;
      transition: color 0.4s ease, padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 0.4s ease;
    }
    .accordion-title:hover {
      color: #ffffff;
      padding-left: 9px;
      letter-spacing: 2.28px;
    }
    
    .accordion-title-left {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
    }
    .accordion-construction-icon {
      width: 27px;
      height: 27px;
      min-width: 27px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,0.82);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
        rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.105);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 9px 22px rgba(0,0,0,0.16);
      transition:
        transform 0.35s ease,
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }
    .accordion-construction-icon svg {
      width: 16px;
      height: 16px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .accordion-title:hover .accordion-construction-icon,
    .accordion-title.active .accordion-construction-icon {
      color: #ffffff;
      transform: translateX(1px) scale(1.045);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.030)),
        rgba(255,255,255,0.052);
      border-color: rgba(255,255,255,0.18);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.13),
        0 12px 26px rgba(0,0,0,0.20),
        0 0 18px rgba(255,255,255,0.045);
    }
    /* მინიმალისტური ანიმაციური პლუს/მინუს ხატი */
    .accordion-title .icon {
      position: relative;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.025);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
      transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    }
    .accordion-title:hover .icon,
    .accordion-title.active .icon {
      background: rgba(255,255,255,0.042);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.075), 0 8px 18px rgba(0,0,0,0.16);
      transform: scale(1.02);
    }
    .accordion-title .icon::before,
    .accordion-title .icon::after {
      content: '';
      position: absolute;
      background-color: currentColor;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    }
    /* ჰორიზონტალური ხაზი */
    .accordion-title .icon::before {
      width: 11px;
      height: 1px;
    }
    /* ვერტიკალური ხაზი */
    .accordion-title .icon::after {
      width: 1px;
      height: 11px;
    }
    /* აქტიური (გახსნილი) მდგომარეობა */
    .accordion-title.active {
      color: #ffffff;
      padding-left: 9px;
      letter-spacing: 2.28px;
    }
    .accordion-title.active .icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }
    .accordion-title.active .icon::before {
      transform: rotate(180deg);
    }
    /* შიგთავსის კონტეინერის გლუვი გახსნის ანიმაცია */
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
      opacity: 0;
      position: relative;
      margin-left: 4px;
      padding-left: 22px;
    }
    /* Hierarchy rail — აჩვენებს, რომ შიდა ელემენტები მთავარ კატეგორიას ეკუთვნის */
    .accordion-content::before {
      content: '';
      position: absolute;
      left: 5px;
      top: 8px;
      bottom: 12px;
      width: 1px;
      border-radius: 999px;
      background: linear-gradient(to bottom,
        rgba(255,255,255,0.00),
        rgba(255,255,255,0.26) 16%,
        rgba(255,255,255,0.12) 72%,
        rgba(255,255,255,0.00));
      opacity: 0;
      transform: scaleY(0.72);
      transform-origin: top center;
      transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .accordion-content.open {
      opacity: 1;
      margin-bottom: 8px;
    }
    .accordion-content.open::before {
      opacity: 1;
      transform: scaleY(1);
    }
    .category-inner {
      position: relative;
      padding: 2px 0 2px;
    }
    .category-inner::before {
      content: '';
      position: absolute;
      left: -17px;
      top: 23px;
      width: 11px;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.24), rgba(255,255,255,0.02));
    }
    .category-label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 4px 0 13px;
      color: rgba(255,255,255,0.40);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2.55px;
      text-transform: uppercase;
      pointer-events: none;
      user-select: none;
      text-shadow: 0 8px 18px rgba(0,0,0,0.24);
    }
    .category-label::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.42);
      box-shadow: 0 0 12px rgba(255,255,255,0.16);
    }
    .pano-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-left: 4px;
    }
    /* პანორამებზე გადასასვლელი ღილაკები — Light Premium Active Highlight */
    .pano-link {
      display: flex;
      align-items: center;
      width: calc(100% - 6px);
      min-height: 44px;
      background: transparent;
      border: 1px solid transparent;
      color: rgba(255, 255, 255, 0.50);
      text-align: left;
      padding: 12px 14px 12px 38px;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.54px;
      cursor: pointer;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      transition:
        color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        background 0.36s ease,
        letter-spacing 0.36s ease;
      margin-bottom: 0;
      border-radius: 14px;
    }
    /* Very soft glass layer */
    .pano-link::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.048), rgba(255,255,255,0.014) 48%, transparent);
      opacity: 0;
      transform: scaleX(0.92);
      transform-origin: left center;
      transition: opacity 0.34s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: -2;
    }
    /* Small refined dot indicator */
    .pano-link::after {
      content: '';
      position: absolute;
      left: 15px;
      top: 50%;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      transform: translateY(-50%) scale(0.82);
      background: rgba(255,255,255,0.24);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
      transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.34s ease,
        box-shadow 0.34s ease,
        opacity 0.34s ease;
      opacity: 0.62;
      z-index: 1;
    }
    /* Slim active accent line */
    .pano-link .lux-line {
      position: absolute;
      left: 0;
      top: 50%;
      width: 1px;
      height: 0;
      border-radius: 999px;
      transform: translateY(-50%);
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.72), transparent);
      opacity: 0;
      transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease;
      pointer-events: none;
      z-index: 2;
    }
    .pano-link .branch-line {
      position: absolute;
      left: -21px;
      top: 50%;
      width: 16px;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.14), rgba(255,255,255,0.025));
      transform: translateY(-50%);
      pointer-events: none;
      transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease, background 0.34s ease;
      opacity: 0.70;
    }
    .pano-link:hover {
      color: rgba(255,255,255,0.88);
      transform: translateX(4px);
      background: rgba(255, 255, 255, 0.014);
      border-color: rgba(255, 255, 255, 0.045);
      letter-spacing: 0.58px;
    }
    .pano-link:hover::before {
      opacity: 0.72;
      transform: scaleX(1);
    }
    .pano-link:hover::after {
      transform: translateY(-50%) scale(0.96);
      background: rgba(255,255,255,0.62);
      box-shadow:
        0 0 0 3px rgba(255,255,255,0.025),
        0 0 10px rgba(255,255,255,0.16);
      opacity: 0.92;
    }
    .pano-link:hover .lux-line {
      height: 38%;
      opacity: 0.42;
    }
    .pano-link:hover .branch-line {
      width: 20px;
      opacity: 0.86;
      background: linear-gradient(to right, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
    }
    .pano-link.active-node {
      color: #ffffff;
      transform: translateX(4px);
      font-weight: 500;
      letter-spacing: 0.58px;
      background: rgba(255, 255, 255, 0.022);
      border-color: rgba(255,255,255,0.065);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        inset 0 -1px 0 rgba(255,255,255,0.010);
    }
    .pano-link.active-node::before {
      opacity: 0.62;
      transform: scaleX(1);
      background:
        linear-gradient(90deg, rgba(255,255,255,0.070), rgba(255,255,255,0.018) 55%, transparent);
    }
    .pano-link.active-node::after {
      transform: translateY(-50%) scale(1);
      background: rgba(255,255,255,0.82);
      box-shadow:
        0 0 0 3px rgba(255,255,255,0.025),
        0 0 12px rgba(255,255,255,0.20);
      opacity: 1;
    }
    .pano-link.active-node .branch-line {
      width: 20px;
      opacity: 0.86;
      background: linear-gradient(to right, rgba(255,255,255,0.24), rgba(255,255,255,0.045));
    }
    .pano-link.active-node .lux-line {
      height: 48%;
      opacity: 0.58;
      box-shadow: none;
    }
    .accordion-title:focus-visible,
    .pano-link:focus-visible,
    .blox-menu-toggle:focus-visible {
      outline: 1px solid rgba(255,255,255,0.28);
      outline-offset: 3px;
    }
    /* რეალური Pano2VR ტურის კონტეინერი */
    #container {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: transparent !important;
      background-color: transparent !important;
      z-index: 1;
    }
    /* ჩატვირთვის დროს Pano2VR-ის მიერ შექმნილი შავი/მუქი ფონის სრული გაუქმება */
    #container *,
    #container canvas,
    #container div {
      background: transparent !important;
      background-color: transparent !important;
    }
    /* ===== Biltmore/Todua-style Hover Preview for panorama items ===== */
    #bloxHoverPreview {
      position: fixed;
      pointer-events: none;
      z-index: 2147483600;
      box-sizing: border-box;
      width: 228px;
      height: 146px;
      left: 390px;
      top: 72px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(6px) scale(0.97);
      transition: opacity 90ms linear, transform 120ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0ms linear;
    }
    #bloxHoverPreview.show {
      opacity: 1;
      visibility: visible;
      transform: translateX(0) scale(1);
    }
    #bloxHoverPreview::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 8px solid rgba(33,31,49,0.92);
      filter: drop-shadow(-2px 3px 5px rgba(0,0,0,0.28));
      z-index: 10;
    }
    .blox-preview-card {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,0.13), transparent 34%),
        linear-gradient(180deg, rgba(43,41,61,0.96), rgba(22,20,33,0.96));
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow:
        0 22px 58px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,255,255,0.10);
      backdrop-filter: blur(22px) saturate(1.18);
      -webkit-backdrop-filter: blur(22px) saturate(1.18);
    }
    .blox-preview-card::after {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 15px;
      background:
        linear-gradient(120deg, rgba(255,255,255,0.18), transparent 28%, transparent 70%, rgba(255,255,255,0.08)),
        radial-gradient(circle at 20% 0%, rgba(255,255,255,0.10), transparent 34%);
      pointer-events: none;
      z-index: 7;
      opacity: 0.72;
    }
    .blox-preview-img-wrap {
      position: absolute;
      inset: 8px;
      border-radius: 12px;
      overflow: hidden;
      background: rgba(255,255,255,0.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
    }
    .blox-preview-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.06) contrast(1.04);
    }
    .blox-preview-title {
      position: absolute;
      left: 8px;
      right: 8px;
      bottom: 8px;
      min-height: 42px;
      padding: 20px 11px 8px;
      border-radius: 0 0 12px 12px;
      background: linear-gradient(to top, rgba(7,7,12,0.92), rgba(7,7,12,0.34), transparent);
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      display: flex;
      align-items: flex-end;
      z-index: 8;
      text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    }
    @media (max-width: 640px) {
      #bloxHoverPreview {
        display: none !important;
      }
    }
    /* ===== Footer Social Buttons + Location Map Popup + Walkinto Credit ===== */
    .blox-footer {
      position: relative;
      z-index: 2;
      margin-top: 18px;
      padding: 14px 0 0;
      border-top: 1px solid rgba(255,255,255,0.055);
      display: grid;
      gap: 10px;
    }
    .blox-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      flex-wrap: nowrap;
    }
    .blox-social,
    .blox-location-btn {
      width: 38px;
      height: 28px;
      min-width: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: grid;
      place-items: center;
      text-decoration: none;
      color: rgba(255,255,255,0.78);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
        rgba(27,25,40,0.72);
      font-size: 13px;
      font-weight: 800;
      transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
      cursor: pointer;
      line-height: 1;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.018);
    }
    .blox-social:hover,
    .blox-location-btn:hover {
      color: #ffffff;
      transform: translateY(-3px);
      border-color: rgba(255,255,255,0.28);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.032)),
        rgba(38,36,55,0.96);
      box-shadow:
        0 14px 32px rgba(0,0,0,0.22),
        0 0 22px rgba(255,255,255,0.045),
        inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .blox-social svg,
    .blox-location-btn svg {
      width: 17px;
      height: 17px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .blox-footer-note {
      text-align: center;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.40);
    }
    .blox-footer-note a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease, opacity 0.25s ease;
    }
    .blox-footer-note a:hover {
      color: #ffffff;
      opacity: 1;
    }
    .blox-map-popup {
      position: fixed;
      inset: 0;
      z-index: 2147483900;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      background: rgba(7,7,12,0.68);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.32s ease, visibility 0ms linear 0.32s;
    }
    .blox-map-popup.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.32s ease, visibility 0ms linear;
    }
    .blox-map-popup.is-expanded {
      padding: 0;
    }
    .blox-map-window {
      position: relative;
      width: min(1060px, 94vw);
      height: min(690px, 88dvh);
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.16);
      background: #171524;
      overflow: hidden;
      box-shadow: 0 36px 110px rgba(0,0,0,0.58);
      transform: translateY(12px) scale(0.985);
      transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), width 0.32s ease, height 0.32s ease, border-radius 0.32s ease;
    }
    .blox-map-popup.open .blox-map-window { transform: none; }
    .blox-map-popup.is-expanded .blox-map-window {
      width: 100vw;
      height: 100dvh;
      border-radius: 0;
    }
    .blox-map-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 58px;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px 0 22px;
      background: linear-gradient(180deg, rgba(27,25,40,0.96), rgba(22,20,33,0.86));
      border-bottom: 1px solid rgba(255,255,255,0.10);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .blox-map-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .blox-map-title-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.24);
      display: grid;
      place-items: center;
      color: #ffffff;
    }
    .blox-map-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .blox-map-close,
    .blox-map-expand {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.05);
      color: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }
    .blox-map-close { font-size: 21px; line-height: 1; }
    .blox-map-close:hover,
    .blox-map-expand:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.50);
    }
    .blox-map-expand svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .blox-map-expand .restore-icon { display: none; }
    .blox-map-popup.is-expanded .blox-map-expand .expand-icon { display: none; }
    .blox-map-popup.is-expanded .blox-map-expand .restore-icon { display: block; }
    .blox-map-pin-select {
      position: absolute;
      top: 72px;
      right: 18px;
      z-index: 5;
    }
    .blox-map-pin-select.is-loading {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .blox-map-pin-toggle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.30);
      background: rgba(27,25,40,0.82);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 14px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.10);
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }
    .blox-map-pin-toggle:hover,
    .blox-map-pin-select.open .blox-map-pin-toggle {
      transform: translateY(-1px);
      background: rgba(38,36,55,0.96);
      border-color: rgba(255,255,255,0.54);
    }
    .blox-map-pin-toggle svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .blox-map-options {
      position: absolute;
      right: 0;
      top: calc(100% + 9px);
      width: min(330px, calc(100vw - 36px));
      display: grid;
      gap: 3px;
      padding: 8px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.16);
      background: linear-gradient(180deg, rgba(22,20,33,0.98), rgba(33,31,49,0.94));
      box-shadow: 0 22px 54px rgba(0,0,0,0.36);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px) scale(0.985);
      transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.16,1,0.3,1), visibility 0ms linear 0.18s;
    }
    .blox-map-pin-select.open .blox-map-options {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.16,1,0.3,1), visibility 0ms linear;
    }
    .blox-map-option {
      width: 100%;
      min-height: 28px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.045);
      color: rgba(255,255,255,0.76);
      padding: 8px 12px;
      font-size: 10.5px;
      line-height: 1.28;
      font-weight: 720;
      letter-spacing: 0.025em;
      cursor: pointer;
      text-align: left;
      transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
    }
    .blox-map-option:hover {
      transform: translateY(-1px);
      color: #fff;
      background: rgba(255,255,255,0.11);
      border-color: rgba(255,255,255,0.30);
    }
    .blox-map-option.active {
      color: #1b1928;
      background: linear-gradient(135deg, #fff, #eeeeee);
      border-color: rgba(255,255,255,0.74);
      box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }
    .blox-map-window iframe {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 58px;
      width: 100%;
      height: calc(100% - 58px);
      border: 0;
      background: #fff;
      z-index: 1;
    }
    .blox-map-loader {
      position: absolute;
      inset: 58px 0 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 50% 38%, rgba(255,255,255,0.10), transparent 34%), linear-gradient(180deg, #171524, #211f31);
      color: #fff;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.45s ease, visibility 0ms linear 0.45s;
    }
    .blox-map-loader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .blox-map-spinner {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      position: relative;
      display: grid;
      place-items: center;
      color: #fff;
    }
    .blox-map-spinner:before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.16);
      border-top-color: #ffffff;
      animation: bloxMapSpin 0.85s linear infinite;
      box-shadow: 0 0 24px rgba(255,255,255,0.10);
    }
    @keyframes bloxMapSpin { to { transform: rotate(360deg); } }
    .blox-map-loading-text {
      margin-top: 16px;
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.58);
    }
    @media (max-width: 640px) {
      .blox-footer { margin-top: 14px; padding-top: 12px; }
      .blox-social, .blox-location-btn { width: 40px; height: 40px; min-width: 40px; }
      .blox-map-popup { padding: 14px; }
      .blox-map-window { width: 100%; height: min(620px, 88dvh); border-radius: 22px; }
      .blox-map-title { font-size: 8px; letter-spacing: 0.12em; }
      .blox-map-pin-select { top: 70px; right: 14px; }
    }
  
    /* Hover preview caption/text horizontal centering */
    .blox-hover-preview-title,
    .hover-preview-title,
    .blox-preview-title,
    .preview-title,
    .blox-hover-preview-caption,
    .hover-preview-caption,
    .blox-preview-caption,
    .preview-caption,
    .blox-pano-preview-title,
    .pano-hover-preview-title,
    .blox-pano-preview-caption,
    .pano-hover-preview-caption {
      width: 100% !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .blox-hover-preview-title *,
    .hover-preview-title *,
    .blox-preview-title *,
    .preview-title *,
    .blox-hover-preview-caption *,
    .hover-preview-caption *,
    .blox-preview-caption *,
    .preview-caption *,
    .blox-pano-preview-title *,
    .pano-hover-preview-title *,
    .blox-pano-preview-caption *,
    .pano-hover-preview-caption * {
      text-align: center !important;
    }
  
    .blox-footer-note a {
      letter-spacing: 0.16em;
      opacity: 0.82;
    }
    .blox-footer-note a:hover {
      opacity: 1;
      transform: translateY(-1px);
    }
  
    /* Bottom-right fullscreen / exit fullscreen button */
    .blox-fullscreen-toggle {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.16);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
        rgba(27,25,40,0.82);
      color: rgba(255,255,255,0.86);
      backdrop-filter: blur(20px) saturate(115%);
      -webkit-backdrop-filter: blur(20px) saturate(115%);
      box-shadow:
        0 12px 32px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.10),
        inset 0 0 0 1px rgba(255,255,255,0.025);
      cursor: pointer;
      z-index: 10001;
      display: grid;
      place-items: center;
      transition:
        transform 0.32s ease,
        background 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        color 0.32s ease;
    }
    .blox-fullscreen-toggle:hover {
      transform: translateY(-2px) scale(1.045);
      color: #ffffff;
      border-color: rgba(255,255,255,0.30);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.032)),
        rgba(38,36,55,0.96);
      box-shadow:
        0 16px 38px rgba(0,0,0,0.32),
        0 0 18px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.13);
    }
    .blox-fullscreen-toggle svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .blox-fullscreen-toggle .exit-fullscreen-icon {
      display: none;
    }
    .blox-fullscreen-toggle.is-fullscreen .enter-fullscreen-icon {
      display: none;
    }
    .blox-fullscreen-toggle.is-fullscreen .exit-fullscreen-icon {
      display: block;
    }
    @media (max-width: 640px) {
      .blox-fullscreen-toggle {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: 42px;
        height: 42px;
      }
      .blox-fullscreen-toggle svg {
        width: 16px;
        height: 16px;
      }
    }
  
    /* Mobile UI refinements */
    @media (max-width: 640px) {
      /* Fullscreen button should not cover opened menu */
      body:not(.menu-closed) .blox-fullscreen-toggle {
        right: 13px;
        bottom: calc(13px + env(safe-area-inset-bottom));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px) scale(0.92);
      }
      body.menu-closed .blox-fullscreen-toggle {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
      /* Slightly smaller language buttons */
      .blox-lang-switcher {
        margin-top: 24px !important;
        padding: 2px !important;
        gap: 2px !important;
      }
      .blox-lang-btn {
        width: 32px !important;
        height: 22px !important;
        font-size: 7px !important;
        letter-spacing: 0.10em !important;
        border-radius: 999px !important;
      }
    }
  
    /* Mobile language buttons spacing refinement */
    @media (max-width: 640px) {
      .blox-lang-switcher {
        margin-top: 32px !important;
      }
    }
    /* Bottom-right Location button beside fullscreen */
    .blox-screen-location-toggle {
      position: fixed;
      right: 78px;
      bottom: 22px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.16);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
        rgba(27,25,40,0.82);
      color: rgba(255,255,255,0.86);
      backdrop-filter: blur(20px) saturate(115%);
      -webkit-backdrop-filter: blur(20px) saturate(115%);
      box-shadow:
        0 12px 32px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.10),
        inset 0 0 0 1px rgba(255,255,255,0.025);
      cursor: pointer;
      z-index: 10001;
      display: grid;
      place-items: center;
      transition:
        transform 0.32s ease,
        background 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        color 0.32s ease;
    }
    .blox-screen-location-toggle:hover {
      transform: translateY(-2px) scale(1.045);
      color: #ffffff;
      border-color: rgba(255,255,255,0.30);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.032)),
        rgba(38,36,55,0.96);
      box-shadow:
        0 16px 38px rgba(0,0,0,0.32),
        0 0 18px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.13);
    }
    .blox-screen-location-toggle svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    @media (max-width: 640px) {
      .blox-screen-location-toggle {
        right: 66px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: 42px;
        height: 42px;
      }
      .blox-screen-location-toggle svg {
        width: 16px;
        height: 16px;
      }
      body:not(.menu-closed) .blox-screen-location-toggle {
        right: 64px;
        bottom: calc(13px + env(safe-area-inset-bottom));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px) scale(0.92);
      }
      body.menu-closed .blox-screen-location-toggle {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
    }
    .blox-map-window iframe.blox-interactive-map-frame {
      background: #151321;
    }
    /* BLOX Hotspot Hover Tooltip CSS */
    #blox-pano-tooltip {
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      /* Keep tooltip below the menu/toggle layer so it can never cover the navigation UI. */
      /* Auto-size tooltip:
         - width adjusts to text automatically
         - max-width limits very long text and keeps wrapping enabled
         - bottom gap keeps the same visual distance from the hotspot/logo even when text wraps
         Change these values if you want a wider/narrower maximum size or a larger/smaller vertical gap */
      --blox-tooltip-max-width: 260px;
      --blox-tooltip-bottom-gap: 19px;
      --blox-tooltip-horizontal-padding: 10px;
      width: max-content;
      min-width: 0;
      max-width: min(var(--blox-tooltip-max-width), calc(100vw - 24px));
      height: auto;
      padding: 12px var(--blox-tooltip-horizontal-padding);
      border-radius: 12px;
      background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.13), transparent 34%),
                  linear-gradient(180deg, rgba(43,41,61,0.96), rgba(22,20,33,0.96));
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 16px 32px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.10);
      backdrop-filter: blur(22px) saturate(1.18);
      -webkit-backdrop-filter: blur(22px) saturate(1.18);
      color: #ffffff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: none;
      opacity: 0;
      visibility: hidden;
      transform-origin: 50% calc(100% + 6px);
      transform: translateY(8px) scale(0.95);
      /* Hide instantly: no shrink/fade-out animation when .show is removed. */
      transition: opacity 0s linear, transform 0s linear, visibility 0s linear;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: normal;
      overflow-wrap: break-word;
      word-break: normal;
      line-break: auto;
      line-height: 1.35;
      text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    }
    #blox-pano-tooltip.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear;
    }
    #blox-pano-tooltip::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: var(--blox-tooltip-arrow-left, 50%);
      transform: translateX(-50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid rgba(22,20,33,0.96);
    }
    #blox-pano-tooltip.below::after {
      top: -6px;
      bottom: auto;
      border-top: none;
      border-bottom: 6px solid rgba(22,20,33,0.96);
    }
    /* Mobile only: when the BLOX menu is open, tooltip must never sit above or cover the menu. */
    @media (max-width: 640px) {
      body:not(.menu-closed) #blox-pano-tooltip {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
      }
    }
    /* ===== BLOX Start Loading Window — Minimal Premium ===== */
    .blox-start-loader {
      position: fixed;
      inset: 0;
      z-index: 2147483647;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      background:
        radial-gradient(circle at 50% 34%, rgba(255,255,255,0.075), transparent 30%),
        radial-gradient(circle at 18% 0%, rgba(255,255,255,0.045), transparent 34%),
        linear-gradient(180deg, #211f31 0%, #1b1928 48%, #151321 100%);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear 0s;
    }
    .blox-start-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear 0.72s;
    }
    .blox-start-loader::before {
      content: '';
      position: absolute;
      inset: 22px;
      border: 1px solid rgba(255,255,255,0.045);
      border-radius: 30px;
      pointer-events: none;
    }
    .blox-start-loader::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(520px, 72vw);
      height: min(520px, 72vw);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.040), transparent 64%);
      filter: blur(2px);
      pointer-events: none;
    }
    .blox-start-loader-inner {
      position: relative;
      z-index: 1;
      width: min(360px, 86vw);
      min-height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform: translateY(0);
      transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.72s ease;
    }
    .blox-start-loader.is-hidden .blox-start-loader-inner {
      transform: translateY(10px);
      opacity: 0;
    }
    .blox-start-loader-title {
      margin-top: 0;
      color: #ffffff;
      font-size: 24px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-shadow: 0 12px 32px rgba(0,0,0,0.32);
    }
    .blox-start-loader-subtitle {
      margin-top: 10px;
      color: rgba(255,255,255,0.54);
      font-size: 10px;
      line-height: 1.4;
      font-weight: 500;
      letter-spacing: 0.32em;
      text-transform: uppercase;
    }
    .blox-start-loader-progress {
      position: relative;
      width: min(260px, 70vw);
      height: 2px;
      margin-top: 34px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,0.115);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.025), 0 12px 28px rgba(0,0,0,0.18);
    }
    .blox-start-loader-progress span {
      position: absolute;
      left: 0;
      top: 0;
      width: 0%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, rgba(255,255,255,0.72), #ffffff, rgba(255,255,255,0.72));
      box-shadow: 0 0 18px rgba(255,255,255,0.20);
      transition: width 0.28s ease;
    }
    .blox-start-loader-percent {
      margin-top: 13px;
      color: rgba(255,255,255,0.46);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }
    @media (max-width: 640px) {
      .blox-start-loader { padding: 22px; }
      .blox-start-loader::before { inset: 12px; border-radius: 24px; }
      .blox-start-loader-title { font-size: 21px; letter-spacing: 0.19em; }
      .blox-start-loader-subtitle { font-size: 8px; letter-spacing: 0.24em; }
      .blox-start-loader-progress { margin-top: 30px; }
    }
  