
    :root {
      --a: #00d4ff;
      --ag: rgba(0, 212, 255, 0.7);
      --ad: rgba(0, 212, 255, 0.1);
      --ab: rgba(0, 212, 255, 0.35);
      --bg0: #02040f;
      --bg1: #080d1f;
      --bg2: #09101f;
      --brd: rgba(96, 165, 250, 0.1);
      --brda: rgba(96, 165, 250, 0.28);
      --txt: #f0f4ff;
      --txm: #7a9bbf;
      --txd: #3d5878;
      --ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Syne', sans-serif;
      background: var(--bg0);
      color: var(--txt);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      cursor: pointer;
      font-family: inherit;
      border: none;
      background: none;
    }

    ::-webkit-scrollbar {
      width: 2px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg0);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--a);
      border-radius: 2px;
    }

    ::selection {
      background: var(--a);
      color: #fff;
    }

    /*  AMBIENT BG  */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: radial-gradient(ellipse 90% 50% at 50% 0%, var(--ad) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 80%, var(--ad) 0%, transparent 50%);
      background-size: 100% 100%, 100% 100%;
      z-index: 0;
      pointer-events: none;
      transition: background-image 0.5s;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: linear-gradient(var(--grid-line, rgba(0, 212, 255, 0.015)) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line, rgba(0, 212, 255, 0.015)) 1px, transparent 1px);
      background-size: 55px 55px;
      z-index: 0;
      pointer-events: none;
    }

    /*  PARTICLES  */
    #pCanvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /*  PRELOADER  */
    #preloader {
      position: fixed;
      inset: 0;
      background: #000;
      z-index: 99999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: opacity 0.8s ease, visibility 0.8s;
    }

    #preloader.out {
      opacity: 0;
      visibility: hidden;
    }

    .pl-badge {
      font-family: 'Syne', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 7px;
      color: var(--ag);
      margin-bottom: 24px;
      text-transform: uppercase;
      animation: plBlink 1.2s step-end infinite;
    }

    @keyframes plBlink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.2
      }
    }

    .pl-logo {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.6rem, 8vw, 2.8rem);
      font-weight: 800;
      letter-spacing: 2px;
      color: #fff;
      text-transform: uppercase;
      display: flex;
      align-items: baseline;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2px;
      max-width: 92vw;
      text-align: center;
    }

    .pl-logo .r {
      color: var(--a);
      text-shadow: 0 0 30px var(--a), 0 0 60px var(--ad);
    }

    .pl-track {
      width: 240px;
      height: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 32px;
      overflow: hidden;
    }

    .pl-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, transparent, var(--a), #fff, var(--a));
      background-size: 200% auto;
      animation: plFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, plShine 0.6s linear infinite;
      box-shadow: 0 0 15px var(--a);
    }

    @keyframes plFill {
      to {
        width: 100%
      }
    }

    @keyframes plShine {
      to {
        background-position: 200% center
      }
    }

    .pl-pct {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 3px;
      color: var(--a);
      margin-top: 16px;
    }

    /*  MUSIC NOTIFICATION (Premium iOS-style)  */
    #musicNotif {
      position: fixed;
      bottom: 84px;
      left: 12px;
      right: 12px;
      z-index: 8000;
      pointer-events: none;
      transform: translateY(calc(100% + 30px)) scale(0.92);
      opacity: 0;
      transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
      will-change: transform, opacity;
    }

    #musicNotif.show {
      transform: translateY(0) scale(1);
      opacity: 1;
      pointer-events: all;
    }

    #musicNotif.hide {
      transform: translateY(calc(100% + 30px)) scale(0.94);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.4s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.35s ease;
    }

    .music-notif-inner {
      background: rgba(18, 18, 22, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 22px;
      padding: 13px 14px 13px 13px;
      display: flex;
      align-items: center;
      gap: 11px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 0.5px rgba(255, 255, 255, 0.07), 0 0 30px var(--ad);
      position: relative;
      overflow: hidden;
      touch-action: pan-y;
      backdrop-filter: blur(40px) saturate(1.8);
      -webkit-backdrop-filter: blur(40px) saturate(1.8);
    }

    /* top shimmer line */
    .music-notif-inner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.15) 60%, transparent 95%);
    }

    /* subtle color glow behind album art area */
    .music-notif-inner::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 80px;
      background: linear-gradient(90deg, var(--ad), transparent);
      pointer-events: none;
      border-radius: 22px 0 0 22px;
    }

    /*  ALBUM ART (profile pic)  */
    .mn-album {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .mn-album img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* vinyl spin ring on album */
    .mn-album::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 13px;
      border: 2px solid transparent;
      background: linear-gradient(135deg, var(--ab), transparent, var(--ab)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      animation: albumGlow 2s linear infinite;
    }

    @keyframes albumGlow {
      0% {
        opacity: 0.4
      }

      50% {
        opacity: 1
      }

      100% {
        opacity: 0.4
      }
    }

    /*  TEXT AREA  */
    .mn-text {
      flex: 1;
      min-width: 0;
      position: relative;
      z-index: 2;
    }

    .mn-app-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.48rem;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.35);
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .mn-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mn-marquee-wrap {
      overflow: hidden;
      width: 100%;
    }

    .mn-sub {
      font-family: 'Syne', sans-serif;
      font-size: 0.52rem;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.45);
      white-space: nowrap;
      display: inline-block;
    }

    .mn-sub.scrolling {
      animation: marquee 8s linear infinite;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      40% {
        transform: translateX(-60px)
      }

      60% {
        transform: translateX(-60px)
      }

      100% {
        transform: translateX(0)
      }
    }

    /*  CONTROLS  */
    .mn-actions {
      display: flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    .mn-close-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
    }

    .mn-close-btn:active {
      transform: scale(0.85);
      background: rgba(255, 255, 255, 0.16);
    }

    /*  PILL HANDLE  */
    .mn-swipe-hint {
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 34px;
      height: 3px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 3px;
    }

    /*  WRAPPER  */
    .wrap {
      width: 100%;
      max-width: 430px;
      margin: 0 auto;
      padding: 16px 14px 100px;
      position: relative;
      z-index: 2;
    }

    /*  HEADER  */
    .top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding: 0 2px;
    }

    .logo-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--ad);
      border: 1px solid var(--brda);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--a);
      font-size: 18px;
      box-shadow: 0 0 15px var(--ad);
    }

    .logo-text {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 5px;
      color: #fff;
      position: relative;
    }

    .logo-text em {
      color: var(--a);
      text-shadow: 0 0 15px var(--a);
      font-style: normal;
    }

    /*  LOGO NAME ANIMATION  */
    .logo-text .logo-char {
      display: inline-block;
      animation: logoFloat 3s ease-in-out infinite;
      transition: color 0.3s, text-shadow 0.3s;
    }

    .logo-text .logo-char:nth-child(1) {
      animation-delay: 0s;
    }

    .logo-text .logo-char:nth-child(2) {
      animation-delay: 0.1s;
    }

    .logo-text .logo-char:nth-child(3) {
      animation-delay: 0.2s;
    }

    .logo-text .logo-char:nth-child(4) {
      animation-delay: 0.3s;
    }

    .logo-text .logo-char:nth-child(5) {
      animation-delay: 0.4s;
    }

    .logo-text .logo-char:nth-child(6) {
      animation-delay: 0.5s;
    }

    .logo-text .logo-char:nth-child(7) {
      animation-delay: 0.6s;
    }

    .logo-text .logo-char:nth-child(8) {
      animation-delay: 0.7s;
    }

    @keyframes logoFloat {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      40% {
        transform: translateY(-3px) scale(1.08);
      }

      70% {
        transform: translateY(1px) scale(0.97);
      }
    }

    .logo-text::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1.5px;
      background: linear-gradient(90deg, transparent, var(--a), transparent);
      animation: logoline 2.5s ease-in-out infinite;
    }

    @keyframes logoline {

      0%,
      100% {
        opacity: 0.3;
        transform: scaleX(0.5);
      }

      50% {
        opacity: 1;
        transform: scaleX(1);
      }
    }

    /*  CARDS  */
    .card {
      background: var(--bg1);
      border: 1px solid var(--brd);
      border-radius: 14px;
      padding: 22px 18px;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ab), transparent);
    }

    /*  HERO  */
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--a);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 var(--ab)
      }

      50% {
        box-shadow: 0 0 0 5px transparent
      }
    }

    .eyebrow-text {
      font-family: 'Syne', sans-serif;
      font-size: 0.6rem;
      color: var(--a);
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    .hero-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .hero-title span {
      color: var(--a);
      text-shadow: 0 0 20px var(--ad);
    }

    .hero-sub {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      color: var(--txm);
      margin-bottom: 20px;
      line-height: 1.65;
      font-weight: 500;
    }

    /*  INPUT  */
    .input-wrap {
      position: relative;
      margin-bottom: 12px;
    }

    .url-input {
      width: 100%;
      padding: 13px 16px 13px 44px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--txt);
      font-size: 0.9rem;
      font-family: 'Syne', sans-serif;
      outline: none;
      transition: border-color .25s, box-shadow .25s;
    }

    .url-input::placeholder {
      color: var(--txd);
    }

    .url-input:focus {
      border-color: var(--a);
      box-shadow: 0 0 0 3px var(--ad);
    }

    .input-left-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--a);
      font-size: 17px;
      pointer-events: none;
    }

    .paste-btn {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--ad);
      color: var(--a);
      border: 1px solid var(--brda);
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 0.6rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      display: flex;
      align-items: center;
      gap: 4px;
      letter-spacing: 1px;
      transition: background .2s, border-color .2s;
    }

    .paste-btn:hover {
      background: var(--ad);
      border-color: var(--a);
    }

    .paste-btn:active {
      transform: translateY(-50%) scale(0.95);
    }

    /*  EDIT/COPY BLOCK BUTTONS (separated, non-overlapping)  */
    .paste-btn-block {
      flex: 1;
      background: rgba(255, 255, 255, 0.04);
      color: var(--txt);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 10px 8px;
      font-size: 0.68rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      letter-spacing: 1px;
      transition: background .2s, border-color .2s, color .2s;
    }

    .paste-btn-block:hover {
      background: var(--ad);
      border-color: var(--a);
      color: var(--a);
    }

    .paste-btn-block:active {
      transform: scale(0.96);
    }

    /*  BUTTON  */
    .dl-btn {
      width: 100%;
      padding: 13px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--txt);
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      letter-spacing: 1px;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      backdrop-filter: blur(10px);
    }

    .dl-btn:hover {
      background: var(--ad);
      border-color: var(--a);
      color: var(--a);
      box-shadow: 0 4px 20px var(--ab), inset 0 0 10px var(--ad);
      transform: translateY(-2px);
    }

    .dl-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      border-color: rgba(255, 255, 255, 0.05);
      box-shadow: none;
      color: var(--txd);
      background: rgba(255, 255, 255, 0.02);
    }

    .dl-btn:not(:disabled):active {
      transform: scale(0.97) translateY(0);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /*  STATUS  */
    .status-box {
      display: none;
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-family: 'Syne', sans-serif;
    }

    .status-box.loading {
      background: rgba(255, 255, 255, 0.03);
      color: var(--txm);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .status-box.error {
      background: rgba(255, 0, 51, 0.06);
      color: #ff6680;
      border: 1px solid rgba(255, 0, 51, 0.2);
    }

    .spinner {
      width: 15px;
      height: 15px;
      border: 2px solid var(--ad);
      border-top-color: var(--a);
      border-radius: 50%;
      animation: spin .7s linear infinite;
      flex-shrink: 0;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    /*  RESULT  */
    /*  FAQ ACCORDION  */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      background: var(--bg1);
      border: 1px solid var(--brd);
      border-radius: 10px;
      overflow: hidden;
      transition: 0.3s;
    }

    .faq-item.open {
      border-color: var(--brda);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      cursor: pointer;
      gap: 10px;
    }

    .faq-q-txt {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--txt);
      line-height: 1.3;
    }

    .faq-arr {
      font-size: 14px;
      color: var(--txd);
      transition: 0.3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-arr {
      transform: rotate(180deg);
      color: var(--a);
    }

    .faq-a {
      display: none;
      padding: 0 16px 14px;
      font-family: 'Syne', sans-serif;
      font-size: 0.88rem;
      color: var(--txm);
      line-height: 1.6;
      font-weight: 500;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    /*  BOTTOM NAV  */
    .bnav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(3, 4, 7, 0.97);
      border-top: 1px solid var(--brd);
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0 14px;
      z-index: 200;
      backdrop-filter: blur(24px);
    }

    .bnav-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      padding: 0 16px;
      transition: 0.2s;
    }

    .bnav-btn:active {
      transform: scale(0.9);
    }

    .bnav-icon {
      font-size: 20px;
      color: var(--txd);
      transition: 0.2s;
    }

    .bnav-lbl {
      font-family: 'Syne', sans-serif;
      font-size: 0.5rem;
      letter-spacing: 2px;
      color: var(--txd);
      transition: 0.2s;
    }

    .bnav-btn.active .bnav-icon,
    .bnav-btn.active .bnav-lbl {
      color: var(--a);
    }

    .bnav-btn.active .bnav-icon {
      text-shadow: 0 0 12px var(--a);
    }

    /*  SECTIONS (for bottom nav tabs)  */
    .tab-section {
      display: none;
    }

    .tab-section.active {
      display: block;
    }

    /*  S-DIVIDER  */
    .s-div {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ab), transparent);
      margin: 4px 0 14px;
      position: relative;
    }

    .s-div::before {
      content: '◆';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--a);
      font-size: 0.4rem;
      background: var(--bg0);
      padding: 0 12px;
    }

    /*  FOOTER  */
    .footer {
      text-align: center;
      font-family: 'Syne', sans-serif;
      font-size: 0.55rem;
      color: var(--txd);
      margin-top: 18px;
      padding-bottom: 10px;
      letter-spacing: 3px;
    }

    .footer span {
      color: var(--a);
    }

    /*  TOAST  */
    #toastBox {
      position: fixed;
      bottom: 72px;
      left: 12px;
      right: 12px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
    }

    .toast {
      background: rgba(7, 8, 15, 0.98);
      border: 1px solid var(--brd);
      border-left: 3px solid var(--a);
      border-radius: 8px;
      padding: 12px 16px;
      font-family: 'Syne', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 1px;
      color: var(--txt);
      display: flex;
      align-items: center;
      gap: 10px;
      transform: translateY(80px);
      opacity: 0;
      transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    .toast.err {
      border-left-color: #ff4466;
      color: #ff8899;
    }

    /* pill handle top */
    /* To hide the checkbox */
    #checkboxInput {
      display: none;
    }

    .toggleSwitch {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 48px;
      height: 24px;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 40px;
      cursor: pointer;
      transition-duration: .3s;
    }

    .toggleSwitch::after {
      content: "";
      position: absolute;
      height: 20px;
      width: 20px;
      left: 1px;
      background: conic-gradient(rgba(26, 26, 26, 0.555), #fff, rgba(26, 26, 26, 0.555), #fff, rgba(26, 26, 26, 0.555));
      border-radius: 50%;
      transition-duration: .3s;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    #checkboxInput:checked+.toggleSwitch::after {
      transform: translateX(24px);
      transition-duration: .3s;
    }

    /* Switch background change */
    #checkboxInput:checked+.toggleSwitch {
      background-color: var(--a);
      border-color: var(--a);
      box-shadow: 0 0 12px var(--ab);
      transition-duration: .3s;
    }
    .wait-loader {
      width: 40px;
      height: 40px;
      margin: 0 auto 15px auto;
      position: relative;
    }
    .wait-loader::before {
      content: "";
      box-sizing: border-box;
      position: absolute;
      top: 0; left: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border-top: 2px solid #FFFFFF;
      border-right: 2px solid transparent;
      animation: spinner8217 0.8s linear infinite;
    }
    @keyframes spinner8217 {
      to { transform: rotate(360deg); }
    }
  

    /*  FOOTER SOCIAL + COPYRIGHT (Araf Studio style)  */
    .fm-footer-extra {
      background: var(--bg1);
      border-top: 1px solid var(--brd);
      border-radius: 14px;
      padding: 22px 18px;
      margin-top: 4px;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
    }

    .fm-footer-extra::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--a), transparent);
      box-shadow: 0 0 15px var(--a);
      opacity: .35;
    }

    .fm-fe-heading {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--txm);
      margin-bottom: 12px;
      text-align: center;
    }

    .fm-fe-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .fm-fe-icons a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--brd);
      color: #fff;
      transition: all 0.25s var(--ease);
    }

    .fm-fe-icons a svg {
      width: 17px;
      height: 17px;
    }

    .fm-fe-icons a:hover {
      background: var(--a);
      color: var(--bg0);
      border-color: var(--a);
      box-shadow: 0 0 16px var(--a);
      transform: translateY(-2px);
    }

    .fm-fe-rule {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--brda), transparent);
      margin: 4px 0 16px;
    }

    .fm-fe-copy {
      text-align: center;
      font-family: 'Syne', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 1.5px;
      color: var(--txd);
      line-height: 1.9;
    }

    .fm-fe-copy strong {
      color: var(--a);
      font-weight: 700;
    }
