
    :root {
      --bg-deep: #030812;
      --blue-950: #071426;
      --blue-900: #0b1c35;
      --blue-800: #102744;
      --blue-700: #16395d;
      --blue-500: #2f83ff;
      --cyan: #48d6ff;
      --cyan-soft: rgba(72, 214, 255, 0.18);
      --mint: #2df5c8;
      --gold: #d7b46a;
      --gold-soft: rgba(215, 180, 106, 0.16);
      --paper: #fffaf0;
      --paper-2: #f4eadb;
      --ink: #102033;
      --muted: #687b90;
      --line: rgba(16, 32, 51, 0.13);
      --glass: rgba(6, 18, 34, 0.72);
      --shadow-heavy: 0 40px 120px rgba(0, 0, 0, 0.55);
      --shadow-blue: 0 0 45px rgba(47, 131, 255, 0.35);
    }

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

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-deep);
      color: #eaf3ff;
    }

    button,
    input,
    select {
      font-family: inherit;
    }

    button {
      border: 0;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
      transition: transform 180ms ease, filter 180ms ease;
    }

    button,
    [role="button"],
    select,
    input,
    textarea,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    button:focus,
    [role="button"]:focus,
    select:focus {
      outline: none;
    }

    button:focus:not(:focus-visible),
    [role="button"]:focus:not(:focus-visible),
    select:focus:not(:focus-visible) {
      outline: none;
    }

    button:not(.click-target):focus-visible,
    [role="button"]:focus-visible,
    select:focus-visible {
      outline: none;
      box-shadow:
        0 0 0 1px rgba(164, 229, 255, 0.62),
        0 0 0 6px rgba(72, 214, 255, 0.11);
    }

    button:not(.click-target):active,
    [role="button"]:active {
      filter: brightness(1.06) saturate(1.03);
    }

    #app {
      position: fixed;
      inset: 0;
      overflow: hidden;
      background:
        radial-gradient(900px 520px at 16% 14%, rgba(47, 131, 255, 0.22), transparent 58%),
        radial-gradient(900px 520px at 82% 16%, rgba(45, 245, 200, 0.11), transparent 62%),
        linear-gradient(180deg, #09192e 0%, #030812 100%);
    }

    canvas.webgl {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      outline: none;
      z-index: 1;
    }

    .noise,
    .vignette,
    .scanline {
      pointer-events: none;
      position: fixed;
      inset: 0;
    }

    .noise {
      z-index: 4;
      opacity: 0.06;
      mix-blend-mode: soft-light;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
    }

    .vignette {
      z-index: 5;
      background:
        radial-gradient(circle at 50% 45%, transparent 0%, transparent 48%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
    }

    .globe-screen-blur {
      position: fixed;
      inset: -10vmax;
      z-index: 7;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      backdrop-filter: blur(3.2px);
      -webkit-backdrop-filter: blur(3.2px);
      background:
        radial-gradient(circle at 50% 48%, rgba(5, 12, 24, 0.015) 0%, rgba(5, 12, 24, 0.050) 38%, rgba(2, 6, 14, 0.24) 100%),
        linear-gradient(90deg, rgba(2, 6, 14, 0.30), rgba(2, 6, 14, 0.08) 42%, rgba(2, 6, 14, 0.08) 58%, rgba(2, 6, 14, 0.30));
      -webkit-mask-image: radial-gradient(ellipse 39vmin 50vmin at 50% 50%, transparent 0%, transparent 70%, rgba(0,0,0,0.16) 82%, #000 100%);
      mask-image: radial-gradient(ellipse 39vmin 50vmin at 50% 50%, transparent 0%, transparent 70%, rgba(0,0,0,0.16) 82%, #000 100%);
      transition: opacity 420ms ease, visibility 420ms ease;
    }

    .globe-screen-blur.active {
      opacity: 1;
      visibility: visible;
    }

    .scanline {
      z-index: 6;
      opacity: 0.055;
      background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px,
        transparent 4px
      );
    }

    .loader {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: grid;
      place-items: center;
      background:
        radial-gradient(700px 360px at 50% 30%, rgba(47, 131, 255, 0.16), transparent 70%),
        #020712;
      transition: opacity 550ms ease, visibility 550ms ease;
    }

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.mobile-device-notice {
  display: none;
}

.mobile-device-notice-card {
  display: flex;
  flex-direction: column;
  gap: 16px; /* spacing between elements */
}

.mobile-device-notice-card .mobile-simple-btn {
  width: 100%;
  margin-top: 8px;
  position: static; /* VERY IMPORTANT */
}

body.mobile-simple-mode #app {
  background:
    radial-gradient(760px 420px at 50% 16%, rgba(72, 214, 255, 0.18), transparent 62%),
    linear-gradient(180deg, #071321 0%, #030812 100%) !important;
}

body.mobile-simple-mode canvas.webgl,
body.mobile-simple-mode .noise,
body.mobile-simple-mode .vignette,
body.mobile-simple-mode .scanline,
body.mobile-simple-mode .globe-screen-blur,
body.mobile-simple-mode .hud,
body.mobile-simple-mode .click-layer,
body.mobile-simple-mode .mobile-swipe-arrow,
body.mobile-simple-mode .goodday-trigger,
body.mobile-simple-mode .mobile-warning,
body.mobile-simple-mode .floating-toast,
body.mobile-simple-mode .transition-shade,
body.mobile-simple-mode .game-modal,
body.mobile-simple-mode .error-box {
  display: none !important;
}

body.mobile-simple-mode #introScreen {
  inset: 0 !important;
  z-index: 40 !important;
  display: grid !important;
  place-items: center !important;
  padding: 20px !important;
  pointer-events: auto !important;
}

body.mobile-simple-mode #introScreen .intro-card {
  display: none !important;
}

body.mobile-simple-mode .mobile-device-notice {
  display: block !important;
  width: min(100%, 420px) !important;
}

body.mobile-simple-mode .mobile-device-notice-card {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 28px 22px;
  border-radius: 28px;

  background:
    linear-gradient(180deg, rgba(13, 25, 43, 0.96), rgba(5, 12, 24, 0.98)),
    radial-gradient(320px 180px at 50% 0%, rgba(72, 214, 255, 0.14), transparent 72%);

  border: 1px solid rgba(121, 182, 234, 0.18);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  text-align: left;
}

body.mobile-simple-mode .mobile-device-notice {
  position: relative;
  z-index: 50;
}

body.mobile-simple-mode .mobile-device-notice-card .mobile-simple-btn {
  width: 100%;
  margin-top: 10px;
  position: static !important;
}

body.mobile-simple-mode .mobile-device-notice-tag {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(72, 214, 255, 0.18);
  background: rgba(72, 214, 255, 0.08);
  color: #c7eeff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.mobile-simple-mode .mobile-device-notice-card h2 {
  margin: 0;
  color: #f2f8ff;
  font-size: clamp(28px, 8vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

body.mobile-simple-mode .mobile-device-notice-card p {
  margin: 0;
  color: #a8bdd2;
  font-size: 14px;
  line-height: 1.6;
}

body.mobile-simple-mode .mobile-simple-btn {
  width: 100%;
  min-width: 0;
}

body.mobile-simple-mode #simpleViewModal {
  z-index: 130 !important;
}

body.mobile-simple-mode #simpleViewModal .simple-panel {
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  border-radius: 0 !important;
}

body.mobile-simple-mode #simpleViewModal .simple-frame {
  min-height: 0 !important;
  height: calc(100dvh - 74px) !important;
}

.copy-mobile {
  display: none;
}

.intro-mobile-roleline {
  display: none;
}

    .loader-box {
      text-align: center;
      color: #dff5ff;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .loader-ring {
      width: 62px;
      height: 62px;
      margin: 0 auto 18px;
      border-radius: 50%;
      border: 3px solid rgba(72, 214, 255, 0.13);
      border-top-color: #48d6ff;
      box-shadow: 0 0 34px rgba(72, 214, 255, 0.2);
      animation: spin 1s linear infinite;
    }

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

    .screen {
      position: fixed;
      inset: 0;
      z-index: 10;
      display: grid;
      place-items: center;
      padding: 28px;
      pointer-events: none;
    }

    .screen.hidden {
      display: none;
    }

    .intro-card {
      width: min(980px, calc(100vw - 36px));
      min-height: min(570px, calc(100vh - 36px));
      display: grid;
      place-items: center;
      text-align: center;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 42px;
      background:
        linear-gradient(135deg, rgba(15, 33, 58, 0.74), rgba(5, 13, 26, 0.80)),
        radial-gradient(600px 280px at 50% 20%, rgba(72, 214, 255, 0.18), transparent 65%);
      box-shadow: var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
      pointer-events: auto;
      position: relative;
      overflow: hidden;
      transform: translateZ(0);
    }

    .intro-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      pointer-events: none;
      background:
        linear-gradient(115deg, transparent 0%, rgba(72, 214, 255, 0.16) 38%, transparent 58%),
        radial-gradient(180px 180px at 15% 22%, rgba(45, 245, 200, 0.18), transparent 66%),
        radial-gradient(240px 240px at 86% 72%, rgba(47, 131, 255, 0.22), transparent 68%);
      filter: blur(1px);
      opacity: 0.72;
      animation: introAura 8s ease-in-out infinite alternate;
    }

    @keyframes introAura {
      from { transform: translate3d(-2%, -1%, 0) scale(1); }
      to { transform: translate3d(2%, 1%, 0) scale(1.035); }
    }

    .intro-content {
      position: relative;
      z-index: 2;
      padding: 42px 26px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(72, 214, 255, 0.2);
      background: rgba(72, 214, 255, 0.06);
      color: #b9eaff;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 24px;
    }

    .eyebrow .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 20px rgba(45, 245, 200, 0.9);
    }

    .intro-title {
      font-size: clamp(38px, 7vw, 86px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      font-weight: 950;
      color: #fff;
      text-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
      margin-bottom: 18px;
      overflow: visible;
    }

    .intro-title span {
      display: block;
      padding-bottom: 0.08em;
      background: linear-gradient(135deg, #ffffff 12%, #9ee7ff 48%, #63a8ff 82%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      overflow: visible;
    }

    .intro-subtitle {
      color: #b8c7da;
      font-size: clamp(15px, 2.2vw, 19px);
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 34px;
    }

    .primary-btn {
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-width: 210px;
      min-height: 58px;
      padding: 16px 24px;
      border-radius: 999px;
      color: #02101f;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.01em;
      background: linear-gradient(135deg, #eef9ff 0%, #7bdfff 38%, #2f83ff 100%);
      box-shadow: 0 18px 42px rgba(47, 131, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.7);
      transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
      pointer-events: auto;
      position: relative;
      overflow: hidden;
    }

    .primary-btn::before {
      content: "";
      position: absolute;
      inset: -80% -40%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
      transform: translateX(-90%) rotate(12deg);
      animation: shine 2.8s ease-in-out infinite;
    }

    .primary-btn span,
    .primary-btn svg {
      position: relative;
      z-index: 2;
    }

    .primary-btn:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 22px 60px rgba(47, 131, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      filter: saturate(1.12);
    }

    @keyframes shine {
      0%, 45% { transform: translateX(-90%) rotate(12deg); }
      72%, 100% { transform: translateX(90%) rotate(12deg); }
    }

    .intro-feature-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      width: min(860px, 100%);
    }

    .intro-feature-card {
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      background: linear-gradient(180deg, rgba(5, 14, 28, 0.62), rgba(5, 14, 28, 0.38));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
      padding: 16px 16px 15px;
      display: grid;
      gap: 8px;
      text-align: left;
      backdrop-filter: blur(12px);
    }

    .intro-feature-index {
      color: #ebf6ff;
      font-size: 26px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.02em;
    }

    .intro-feature-card strong {
      font-size: 14px;
      font-weight: 850;
      color: #eff8ff;
    }

    .intro-feature-card p {
      margin: 0;
      font-size: 13px;
      line-height: 1.5;
      color: #bfd4e7;
    }

    .hud {
      position: fixed;
      inset: 0;
      z-index: 20;
      pointer-events: none;
    }

    .hud-top {
      position: absolute;
      top: 22px;
      left: 22px;
      right: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      opacity: 0;
      transform: translateY(-18px);
      transition: opacity 650ms ease, transform 650ms ease;
    }

    .hud.active .hud-top {
      opacity: 1;
      transform: translateY(0);
    }

    .brand-chip,
    .hint-chip {
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: rgba(4, 13, 26, 0.58);
      color: #dceeff;
      backdrop-filter: blur(16px);
      border-radius: 999px;
      padding: 11px 15px;
      box-shadow: 0 14px 45px rgba(0, 0, 0, 0.22);
    }

    .brand-chip {
      font-weight: 900;
      letter-spacing: -0.03em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-chip::before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #4bdcff;
      box-shadow: 0 0 28px #4bdcff;
    }

    .hint-chip {
      display: none;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #b7c8dc;
      max-width: min(560px, 62vw);
    }

    .hint-chip strong {
      color: white;
      font-weight: 800;
    }

    .hud-actions {
      position: absolute;
      left: 50%;
      bottom: 30px;
      transform: translateX(-50%) translateY(18px);
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      transition: opacity 650ms ease, transform 650ms ease;
    }

    .hud.active .hud-actions {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .glass-btn {
      pointer-events: auto;
      cursor: pointer;
      padding: 13px 17px;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      color: #eaf6ff;
      background: rgba(5, 14, 28, 0.66);
      backdrop-filter: blur(16px);
      font-weight: 850;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      box-shadow: 0 14px 45px rgba(0, 0, 0, 0.22);
      transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      white-space: nowrap;
    }

    .glass-btn.primary {
      border-color: rgba(215, 180, 106, 0.35);
      background: linear-gradient(135deg, rgba(10, 26, 45, 0.86), rgba(6, 17, 31, 0.76));
      color: #fff5df;
    }

    .glass-btn:hover {
      transform: translateY(-2px);
      background: rgba(22, 57, 93, 0.76);
      border-color: rgba(72, 214, 255, 0.34);
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(72, 214, 255, 0.08) inset;
    }

    .click-layer {
      position: fixed;
      inset: 0;
      z-index: 30;
      pointer-events: none;
    }

    .click-target {
      position: absolute;
      transform: translate(-50%, -50%);
      pointer-events: auto;
      cursor: pointer;
      display: none;
      border-radius: 999px;
      padding: 0;
      background: transparent;
    }

    .click-target.active {
      display: block;
    }

    .file-target {
      width: min(210px, 28vw);
      height: min(250px, 32vw);
      border-radius: 26px;
    }

    .controller-target {
      width: 118px;
      height: 82px;
    }

    .globe-target {
      width: 116px;
      height: 116px;
      border-radius: 999px;
    }

    .globe-target .target-label {
      top: calc(50% + 66px);
      min-width: 118px;
    }

    .globe-target.globe-close-mode .target-label {
      top: calc(50% + 132px);
      min-width: 220px;
      font-size: 12.5px;
      letter-spacing: .06em;
    }

    .pen-target,
    .pen-target.active {
      display: none !important;
      width: 150px;
      height: 82px;
    }

    .pen-target .target-label {
      top: calc(50% + 48px);
    }

    .mobile-swipe-arrow {
      position: fixed;
      right: 18px;
      top: 50%;
      z-index: 42;
      width: 56px;
      height: 56px;
      margin-top: -28px;
      border-radius: 999px;
      border: 1px solid rgba(159, 215, 255, 0.28);
      background: rgba(6, 16, 32, 0.22);
      color: rgba(233, 247, 255, 0.92);
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(120, 214, 255, 0.06);
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 900;
      pointer-events: auto;
      cursor: pointer;
      opacity: 0;
      transform: translateX(16px);
      transition: opacity 260ms ease, transform 260ms ease, background 220ms ease;
    }

    .mobile-swipe-arrow.active {
      display: flex;
      opacity: 1;
      transform: translateX(0);
      animation: swipeArrowPulse 1.45s ease-in-out infinite;
    }

    .mobile-swipe-arrow:hover {
      background: rgba(14, 33, 62, 0.34);
    }

    .goodday-trigger {
      position: fixed;
      left: 50%;
      bottom: 92px;
      z-index: 42;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      border: 1px solid rgba(159, 215, 255, 0.28);
      background: rgba(6, 16, 32, 0.52);
      color: rgba(233, 247, 255, 0.96);
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(120, 214, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 900;
      pointer-events: auto;
      cursor: pointer;
      opacity: 0;
      transform: translateX(-50%) translateY(14px);
      transition: opacity 260ms ease, transform 260ms ease, background 220ms ease, border-color 220ms ease;
    }

    .goodday-trigger.active {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      animation: goodDayArrowFloat 1.9s ease-in-out infinite;
    }

    .goodday-trigger:hover {
      background: rgba(14, 33, 62, 0.72);
      border-color: rgba(72, 214, 255, 0.34);
    }

    @keyframes goodDayArrowFloat {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    .goodday-panel {
      width: min(456px, 92vw);
      border-radius: 34px;
      border: 1px solid rgba(112, 188, 255, 0.22);
      background:
        radial-gradient(240px 180px at 18% 14%, rgba(86, 197, 255, 0.18), transparent 72%),
        radial-gradient(220px 160px at 82% 0%, rgba(58, 130, 246, 0.18), transparent 70%),
        linear-gradient(145deg, rgba(8, 22, 43, 0.98), rgba(3, 10, 22, 0.99));
      box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.56),
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 0 0 1px rgba(72, 214, 255, 0.04);
      backdrop-filter: blur(18px) saturate(118%);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transform: translateY(28px) scale(0.98);
      opacity: 0;
      animation: modalIn 520ms cubic-bezier(.2,.9,.18,1) forwards;
      isolation: isolate;
    }

    .goodday-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 26%),
        linear-gradient(135deg, transparent 55%, rgba(95, 208, 255, 0.08) 100%);
      opacity: 0.95;
    }

    .goodday-panel::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -60px;
      bottom: -84px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78, 209, 255, 0.18) 0%, rgba(78, 209, 255, 0) 72%);
      filter: blur(10px);
      pointer-events: none;
      z-index: 0;
    }

    .goodday-panel .modal-top {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 4;
      padding: 0;
      border: 0;
      background: transparent;
    }

    .goodday-panel .modal-title {
      display: none;
    }

    .goodday-panel .close-btn-main {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      background: linear-gradient(180deg, rgba(16, 34, 58, 0.9), rgba(9, 21, 39, 0.86));
      border: 1px solid rgba(112, 188, 255, 0.2);
      color: #edf7ff;
      font-size: 21px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .goodday-panel .close-btn-main:hover,
    .goodday-panel .close-btn-main:focus-visible {
      transform: translateY(-1px);
      background: linear-gradient(180deg, rgba(22, 53, 88, 0.98), rgba(12, 28, 49, 0.94));
      border-color: rgba(113, 224, 255, 0.48);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), 0 0 20px rgba(83, 209, 255, 0.18);
    }

    .goodday-body {
      position: relative;
      z-index: 2;
      padding: 54px 34px 38px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
    }

    .goodday-emoji {
      width: auto;
      height: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      line-height: 1;
      color: #ffffff;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.14);
      transition: color 220ms ease, text-shadow 220ms ease, transform 220ms ease;
    }

    .goodday-emoji:hover,
    .goodday-emoji:focus-visible {
      color: #8fe7ff;
      text-shadow: 0 0 18px rgba(119, 222, 255, 0.42), 0 0 30px rgba(119, 222, 255, 0.18);
      transform: translateY(-1px) scale(1.03);
    }

    .goodday-title {
      margin: 6px 0 0;
      font-size: clamp(32px, 4.8vw, 44px);
      font-weight: 950;
      letter-spacing: -0.05em;
      line-height: 1.02;
      color: #f7fbff;
      text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
    }

    .goodday-subtitle {
      margin: 0;
      max-width: 31ch;
      color: rgba(214, 231, 248, 0.9);
      line-height: 1.62;
      font-size: 15.5px;
    }

    .goodday-actions {
      display: flex;
      justify-content: center;
      margin-top: 12px;
      width: 100%;
    }

    .goodday-panel .glass-btn.primary {
      min-width: 168px;
      padding: 13px 22px;
      border-radius: 999px;
      border: 1px solid rgba(109, 199, 255, 0.28);
      background: linear-gradient(135deg, rgba(13, 34, 58, 0.94), rgba(7, 19, 36, 0.92));
      color: #f4fbff;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 14px 26px rgba(0,0,0,0.26),
        0 0 0 1px rgba(95, 208, 255, 0.03);
    }

    .goodday-panel .glass-btn.primary:hover,
    .goodday-panel .glass-btn.primary:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(116, 223, 255, 0.48);
      background: linear-gradient(135deg, rgba(22, 59, 97, 0.98), rgba(10, 28, 50, 0.96));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 18px 34px rgba(0,0,0,0.32),
        0 0 24px rgba(86, 197, 255, 0.22);
    }

    @keyframes swipeArrowPulse {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(9px); }
    }
.target-label {
      position: absolute;
      left: 50%;
      top: calc(50% + 58px);
      transform: translateX(-50%);
      white-space: nowrap;
      color: #e8f7ff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(5, 14, 28, 0.74);
      border: 1px solid rgba(72, 214, 255, 0.25);
      border-radius: 999px;
      padding: 8px 12px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.34);
      backdrop-filter: blur(12px);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: none;
      place-items: center;
      padding: 22px;
      background: rgba(2, 7, 14, 0.74);
      backdrop-filter: blur(16px);
    }

    .modal.active {
      display: grid;
    }

    .portfolio-panel,
    .simple-panel {
      width: min(1180px, 96vw);
      height: min(820px, 92vh);
      border-radius: 30px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      background:
        radial-gradient(700px 300px at 50% 0%, rgba(72, 214, 255, 0.12), transparent 68%),
        linear-gradient(135deg, rgba(8, 22, 42, 0.96), rgba(4, 12, 24, 0.96));
      box-shadow: var(--shadow-heavy), inset 0 1px 0 rgba(255,255,255,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transform: translateY(28px) scale(0.98);
      opacity: 0;
      animation: modalIn 520ms cubic-bezier(.2,.9,.18,1) forwards;
    }

    @keyframes modalIn {
      to { transform: translateY(0) scale(1); opacity: 1; }
    }

    .modal-top {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 18px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
      background: rgba(255, 255, 255, 0.035);
    }

    .modal-title {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .modal-title strong {
      color: #fff;
      font-size: 17px;
      letter-spacing: -0.02em;
    }

    .modal-title span {
      color: #aebfd2;
      font-size: 13px;
      line-height: 1.45;
    }

    .close-btn-main {
      cursor: pointer;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      color: #eaf6ff;
      background: rgba(255,255,255,0.06);
      font-size: 22px;
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .close-btn-main:hover {
      transform: translateY(-2px);
      background: rgba(72,214,255,0.10);
      border-color: rgba(72,214,255,0.32);
    }

    .book-area {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 18px;
    }

    .book-shell {
      position: relative;
      flex: 1;
      min-height: 0;
      border-radius: 26px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      background:
        radial-gradient(550px 260px at 50% 10%, rgba(215,180,106,0.08), transparent 70%),
        linear-gradient(90deg, rgba(7, 20, 36, 0.98), rgba(12, 34, 58, 0.92), rgba(7, 20, 36, 0.98));
      padding: 20px;
      overflow: hidden;
      box-shadow: inset 0 0 40px rgba(0,0,0,0.28);
      perspective: 1800px;
    }

    .book-spread {
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      position: relative;
      transform-style: preserve-3d;
    }

    .book-spread::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 18px;
      bottom: 18px;
      width: 18px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(0,0,0,0.32), rgba(255,255,255,0.08), rgba(0,0,0,0.2));
      box-shadow: inset 0 0 18px rgba(0,0,0,0.38), 0 0 26px rgba(72,214,255,0.10);
      z-index: 2;
      pointer-events: none;
    }

    .page {
      position: relative;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.30)),
        linear-gradient(180deg, var(--paper), var(--paper-2));
      border-radius: 24px;
      border: 1px solid rgba(125, 93, 48, 0.14);
      box-shadow: 0 24px 55px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.82);
      overflow: hidden;
      min-height: 0;
      transform-style: preserve-3d;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
    }

    .page::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.055), transparent 12%, transparent 86%, rgba(0,0,0,0.04)),
        repeating-linear-gradient(180deg, rgba(52,35,16,0.018) 0 1px, transparent 1px 26px);
      opacity: .75;
    }

    .page-inner {
      position: relative;
      z-index: 1;
      flex: 1;
      min-height: 0;
      overflow: auto;
      padding: clamp(18px, 2.4vw, 32px);
      scrollbar-width: thin;
      scrollbar-color: rgba(47, 131, 255, 0.45) transparent;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }

    .page-inner::-webkit-scrollbar {
      width: 8px;
    }

    .page-inner::-webkit-scrollbar-thumb {
      background: rgba(47, 131, 255, 0.45);
      border-radius: 999px;
    }

    .page-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: #6f5937;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 900;
      background: rgba(215,180,106,0.14);
      border: 1px solid rgba(215,180,106,0.18);
      border-radius: 999px;
      padding: 8px 11px;
    }

    .resume-hero {
      border-radius: 23px;
      padding: 22px;
      color: white;
      background:
        linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(14, 49, 86, 0.92)),
        radial-gradient(300px 180px at 85% 15%, rgba(72, 214, 255, 0.25), transparent 70%);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
      margin-bottom: 14px;
      position: relative;
      overflow: hidden;
    }

    .resume-hero::after {
      content: "";
      position: absolute;
      right: -48px;
      top: -48px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 34px solid rgba(72, 214, 255, 0.08);
    }

    .resume-hero h2 {
      position: relative;
      z-index: 2;
      font-size: clamp(25px, 4vw, 42px);
      line-height: 0.96;
      letter-spacing: -0.07em;
      font-weight: 950;
      max-width: 420px;
      margin-bottom: 10px;
    }

    .resume-hero p {
      position: relative;
      z-index: 2;
      color: #cfe5ff;
      line-height: 1.55;
      font-size: 14px;
      max-width: 640px;
    }

    .resume-pills {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .resume-pill {
      color: #ecf8ff;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      padding: 8px 10px;
    }

    .section-card {
      border: 1px solid rgba(16, 32, 51, 0.10);
      background: rgba(255,255,255,0.56);
      border-radius: 18px;
      padding: 16px;
      margin: 12px 0;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 950;
      color: #13243a;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .section-title .icon {
      width: 31px;
      height: 31px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(47, 131, 255, 0.12), rgba(215, 180, 106, 0.16));
      color: #0c4da2;
      font-weight: 950;
    }

    .section-card p,
    .section-card li {
      font-size: 13.5px;
      line-height: 1.58;
      color: #263449;
    }

    .section-card ul {
      margin-left: 18px;
      margin-top: 8px;
    }

    .info-grid,
    .project-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .info-tile,
    .project-card {
      border-radius: 16px;
      border: 1px solid rgba(16, 32, 51, 0.10);
      background: rgba(255,255,255,0.50);
      padding: 12px;
    }

    .info-tile strong {
      display: block;
      color: #0f172a;
      font-size: 13px;
      margin-bottom: 4px;
    }

    .info-tile span {
      color: #64748b;
      font-size: 12px;
      line-height: 1.45;
    }

    .timeline-item {
      padding: 12px 0;
      border-top: 1px dashed rgba(100, 116, 139, 0.24);
    }

    .timeline-item:first-of-type {
      padding-top: 0;
      border-top: 0;
    }

    .timeline-item h4 {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: #111827;
      font-size: 13.2px;
      font-weight: 950;
      margin-bottom: 4px;
    }

    .mini-tag {
      flex: 0 0 auto;
      border-radius: 999px;
      background: rgba(215,180,106,0.14);
      color: #6d5530;
      border: 1px solid rgba(215,180,106,0.16);
      padding: 4px 8px;
      font-size: 10.5px;
      font-weight: 900;
    }

    .project-card {
      min-height: 138px;
      position: relative;
      overflow: hidden;
    }

    .project-card::before {
      content: "";
      position: absolute;
      right: -30px;
      top: -30px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(47, 131, 255, 0.08);
    }

    .project-card h4 {
      position: relative;
      color: #0f172a;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      padding-right: 30px;
    }

    .project-card p {
      position: relative;
      color: #475569;
      font-size: 12.7px;
      line-height: 1.55;
    }

    @media (max-width: 880px) {
      #resumeBookPage .project-grid {
        grid-template-columns: 1fr;
      }
    }

    .project-meta {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 12px;
    }

    .project-meta span {
      border-radius: 999px;
      background: rgba(47, 131, 255, 0.09);
      color: #0b4fa2;
      font-size: 11px;
      font-weight: 900;
      padding: 5px 8px;
    }

    #resumeBookPage .cert-list {
      margin-left: 18px;
      margin-top: 8px;
    }

    #resumeBookPage .cert-list li {
      margin: 8px 0 11px;
      line-height: 1.5;
    }

    #resumeBookPage .cert-list .cert-desc {
      display: block;
      margin-top: 3px;
      color: #475569;
    }

    #resumeBookPage .book-skills .skill {
      border-bottom: 1px dashed rgba(100, 116, 139, 0.18);
    }

    #resumeBookPage .book-skills .skill:last-child {
      border-bottom: 0;
    }

    .mobile-page-nav {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #dceeff;
    }

    .nav-btn {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      color: #eaf6ff;
      background: rgba(255,255,255,0.06);
      font-size: 22px;
      cursor: pointer;
    }

    .nav-btn:disabled {
      opacity: .35;
      cursor: not-allowed;
    }

    .page-counter {
      font-size: 13px;
      font-weight: 850;
      min-width: 72px;
      text-align: center;
    }

    .page-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .page-dot {
      width: 10px;
      height: 10px;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,0.26);
      cursor: pointer;
      transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
      padding: 0;
    }

    .page-dot.active {
      width: 28px;
      background: linear-gradient(135deg, #a9eeff, #49b4ff);
    }

    .desktop-note {
      color: #aebfd2;
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
      display: none;
    }

    .portfolio-panel {
      width: min(1280px, 97vw);
      height: min(860px, 94vh);
    }

    .portfolio-panel .modal-top {
      padding: 12px 16px;
      gap: 14px;
      background: rgba(255, 255, 255, 0.028);
    }

    .portfolio-panel .modal-title {
      gap: 2px;
    }

    .portfolio-panel .modal-title strong {
      font-size: 16px;
      letter-spacing: -0.015em;
    }

    .portfolio-panel .modal-title span {
      font-size: 12px;
      color: #96aac0;
      line-height: 1.35;
    }

    .portfolio-panel .close-btn-main {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      font-size: 20px;
    }

    .portfolio-panel .book-area {
      gap: 10px;
      padding: 12px 14px 14px;
    }

    .portfolio-panel .book-shell {
      padding: 14px;
      border-radius: 24px;
    }

    .portfolio-panel .page-label {
      margin-bottom: 12px;
    }

    .simple-frame {
      flex: 1;
      width: 100%;
      border: 0;
      background: white;
    }

    .transition-shade {
      pointer-events: none;
      position: fixed;
      inset: 0;
      z-index: 100;
      background: #020712;
      opacity: 0;
    }

    .floating-toast {
      position: fixed;
      left: 50%;
      bottom: 22px;
      z-index: 50;
      transform: translateX(-50%) translateY(30px);
      opacity: 0;
      pointer-events: none;
      color: #dff5ff;
      background: rgba(5, 14, 28, 0.72);
      border: 1px solid rgba(72, 214, 255, 0.22);
      border-radius: 999px;
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 800;
      backdrop-filter: blur(14px);
      box-shadow: 0 14px 35px rgba(0,0,0,0.28);
      transition: opacity 350ms ease, transform 350ms ease;
    }

    .floating-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .mobile-warning {
      display: none;
      position: fixed;
      left: 16px;
      right: 16px;
      top: 82px;
      z-index: 60;
      border-radius: 18px;
      border: 1px solid rgba(72, 214, 255, 0.18);
      background: rgba(5, 14, 28, 0.72);
      backdrop-filter: blur(16px);
      padding: 12px 14px;
      color: #dceeff;
      font-size: 12.5px;
      line-height: 1.55;
      box-shadow: 0 12px 38px rgba(0,0,0,0.28);
      pointer-events: none;
    }

    .error-box {
      display: none;
      position: fixed;
      inset: 20px;
      z-index: 200;
      place-items: center;
      padding: 20px;
      background: rgba(3, 8, 18, 0.88);
      color: #eaf3ff;
      text-align: center;
    }

    .error-box.active {
      display: grid;
    }

    .error-box div {
      max-width: 560px;
      border: 1px solid rgba(72, 214, 255, 0.18);
      background: rgba(5, 14, 28, 0.85);
      border-radius: 24px;
      padding: 26px;
      box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    }

    .error-box h2 {
      margin-bottom: 10px;
      font-size: 26px;
    }

    .error-box p {
      color: #bdd0e6;
      line-height: 1.6;
    }

    .game-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.64);
      z-index: 9999;
      padding: 18px;
      backdrop-filter: blur(12px);
    }

    .game-box {
      width: 340px;
      max-width: 100%;
      background: #0b1730;
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.6);
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }

    .game-title {
      text-align: center;
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #ffffff;
      font-size: 18px;
      font-weight: bold;
    }

    .game-hud {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      color: #cbd5e1;
      font-size: 13px;
    }

    .select {
      background: #1e293b;
      color: white;
      border-radius: 8px;
      padding: 5px 8px;
      border: none;
    }

    .board {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      aspect-ratio: 1;
    }

    .cell {
      aspect-ratio: 1;
      border-radius: 14px;
      background: #14213d;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: 900;
      cursor: pointer;
      user-select: none;
      transition: transform .16s ease, background .16s ease;
    }

    .cell:hover {
      transform: translateY(-2px);
      background: #18294b;
    }

    .cell.x { color: #38bdf8; }
    .cell.o { color: #22c55e; }

    .bottom-controls {
      display: flex;
      justify-content: center;
      margin-top: 14px;
    }

    .btn {
      padding: 10px 20px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      color: white;
      cursor: pointer;
    }

    #winPopup {
      position: absolute;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.85);
      border-radius: 20px;
      font-size: 26px;
      font-weight: 800;
      color: #ffffff;
      text-align: center;
      padding: 14px;
    }

    @media (max-width: 880px) {
      body {
        overflow: hidden;
      }

      .hud-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 10px;
        row-gap: 8px;
      }

      .hint-chip {
        grid-column: 1 / -1;
        max-width: calc(100vw - 44px);
      }

      .hud-ui-controls {
        margin-left: 0;
        justify-self: end;
      }

      .hud-actions {
        left: 16px;
        right: 16px;
        bottom: 18px;
        transform: translateY(18px);
        justify-content: center;
        flex-wrap: wrap;
      }

      .hud.active .hud-actions {
        transform: translateY(0);
      }

      .glass-btn {
        min-width: min(210px, calc(50vw - 22px));
      }

      .mobile-warning {
        display: none;
      }

      .book-spread {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .book-spread::before {
        display: none;
      }

      .book-shell {
        padding: 12px;
      }

      .portfolio-panel,
      .simple-panel {
        height: min(94vh, 920px);
        border-radius: 24px;
      }

      .book-area {
        padding: 14px;
      }

      .page {
        border-radius: 21px;
      }

      .page-inner {
        padding-bottom: 96px;
        touch-action: pan-y;
      }

      .mobile-page-nav {
        display: flex;
      }

      .desktop-note {
        display: none;
      }

      .info-grid,
      .project-grid {
        grid-template-columns: 1fr;
      }

      .file-target {
        width: 190px;
        height: 235px;
      }

      .controller-target {
        width: 108px;
        height: 76px;
      }

      .pen-target {
        width: 118px;
        height: 74px;
      }

      .intro-feature-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .screen {
        align-items: flex-start;
        place-items: start center;
        padding: 12px 12px 92px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .intro-card {
        min-height: auto;
        max-height: none;
        border-radius: 30px;
        margin: 12px 0 64px;
      }

      .intro-content {
        padding: 24px 18px 32px;
      }

      .intro-feature-grid {
        margin-top: 22px;
        gap: 12px;
      }

      .intro-feature-card {
        padding: 13px 14px;
      }

      .intro-feature-index {
        font-size: 23px;
      }

      .page-dots {
        gap: 6px;
      }

      .eyebrow {
        font-size: 10px;
      }

      .intro-subtitle {
        font-size: 13.5px;
        line-height: 1.58;
        margin-bottom: 24px;
      }

      .intro-title {
        font-size: clamp(36px, 12vw, 58px);
      }

      .primary-btn {
        min-height: 54px;
        min-width: 190px;
      }

      .brand-chip,
      .hint-chip {
        font-size: 12px;
        padding: 10px 12px;
      }

      .hud-actions {
        gap: 8px;
      }

      .glass-btn {
        padding: 12px 14px;
        font-size: 13px;
      }

      .modal {
        padding: 10px;
      }

      .modal-top {
        padding: 12px;
      }

      .modal-title span {
        font-size: 12px;
      }

      .book-area {
        padding: 10px;
      }

      .book-shell {
        padding: 9px;
      }

      .page-inner {
        padding: 15px;
      }

      .resume-hero {
        padding: 17px;
      }

      .mobile-warning {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
    }

    .portfolio-panel .modal-top {
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid rgba(148, 163, 184, 0.10);
    }

    .book-area {
      padding: 14px 16px 16px;
      gap: 10px;
    }

    .book-shell {
      padding: 22px;
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      background: linear-gradient(180deg, rgba(7, 18, 33, 0.96), rgba(10, 21, 36, 0.98));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .book-spread {
      gap: 18px;
      align-items: stretch;
    }

    .book-spread::before {
      top: 26px;
      bottom: 26px;
      width: 8px;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(255, 255, 255, 0.10), rgba(0, 0, 0, 0.22));
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.35);
      opacity: .75;
    }

    .page {
      border-radius: 12px;
      border: 1px solid rgba(17, 24, 39, 0.10);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 249, 244, 0.98));
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    }

    .page::before {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 7%, transparent 93%, rgba(0, 0, 0, 0.03)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
      opacity: .5;
    }

    .page::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 44px;
      height: 44px;
      background: linear-gradient(225deg, rgba(232, 225, 212, 0.95) 0 50%, transparent 51%);
      box-shadow: -1px 1px 0 rgba(17, 24, 39, 0.08);
      opacity: .6;
      pointer-events: none;
    }

    .page-inner {
      padding: 24px 20px 26px;
      scrollbar-color: rgba(100, 116, 139, 0.28) transparent;
    }

    .page-inner::-webkit-scrollbar-thumb {
      background: rgba(100, 116, 139, 0.28);
    }

    .page-label {
      background: none;
      border: 0;
      border-radius: 0;
      padding: 0;
      margin-bottom: 18px;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      color: #7b6645;
    }

    .section-card {
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: none;
      border-radius: 14px;
    }

    #resumeBookPage .book-skills {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    #resumeBookPage .book-skills .skill {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(100, 116, 139, 0.18);
    }

    #resumeBookPage .book-skills .skill:last-child {
      border-bottom: 0;
    }

    #resumeBookPage .book-skills .skill-name {
      font-size: 13.5px;
      line-height: 1.58;
      color: #263449;
      font-weight: 500;
      letter-spacing: 0;
    }

    #resumeBookPage .book-skills .dots {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    #resumeBookPage .book-skills .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(17, 24, 39, 0.12);
    }

    #resumeBookPage .book-skills .dot.on {
      background: #2f83ff;
    }

    @media (max-width: 1180px) {
      #resumeBookPage .book-skills .skill {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }

    .book-area {
      padding: 12px 14px 14px;
    }

    .book-shell {
      padding: 16px;
      border: 0;
      border-radius: 20px;
      background: rgba(7, 18, 33, 0.76);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    }

    .book-spread {
      gap: 14px;
    }

    .book-spread::before {
      width: 4px;
      top: 18px;
      bottom: 18px;
      opacity: 0.28;
      box-shadow: none;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.14));
    }

    .page {
      border: 0;
      border-radius: 10px;
      background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(250, 247, 239, 0.98));
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    }

    .page::before {
      opacity: 0.28;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.025), transparent 8%, transparent 92%, rgba(0, 0, 0, 0.018)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0));
    }

    .page::after {
      width: 30px;
      height: 30px;
      opacity: 0.30;
      box-shadow: none;
    }

    .section-card,
    .project-card,
    .info-tile {
      border-color: rgba(15, 23, 42, 0.045);
      box-shadow: none;
    }

    .section-card {
      background: rgba(255, 255, 255, 0.52);
    }

    .project-card {
      background: rgba(255, 255, 255, 0.50);
    }

    .info-tile {
      background: rgba(255, 255, 255, 0.48);
    }

    .portfolio-panel {
      width: min(1580px, calc(100vw - 28px));
      height: min(86vh, 850px);
      border-radius: 24px;
    }

    .portfolio-panel .modal-top {
      padding: 12px 18px;
      min-height: 58px;
    }

    .portfolio-panel .modal-title strong {
      font-size: 17px;
    }

    .portfolio-panel .modal-title span {
      font-size: 12.5px;
    }

    .book-area {
      padding: 8px 9px 10px;
    }

    .book-shell {
      padding: 8px;
      border-radius: 14px;
      background: rgba(7, 18, 33, 0.48);
      box-shadow: none;
    }

    .book-spread {
      gap: 8px;
    }

    .book-spread::before {
      width: 2px;
      top: 8px;
      bottom: 8px;
      opacity: 0.16;
      background: rgba(15, 23, 42, 0.32);
    }

    .page {
      border-radius: 8px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
    }

    .page::after {
      width: 22px;
      height: 22px;
      opacity: 0.20;
    }

    .page-inner {
      padding: clamp(14px, 1.7vw, 24px);
    }

    .section-card,
    .project-card,
    .info-tile {
      border-color: rgba(15, 23, 42, 0.035);
    }

    @media (max-width: 900px) {
      .portfolio-panel {
        width: min(96vw, 820px);
        height: min(88vh, 900px);
      }

      .portfolio-panel .modal-top {
        padding: 12px 14px;
      }

      .book-area {
        padding: 8px;
      }

      .book-shell {
        padding: 7px;
      }
    }

    @media (min-width: 901px) {
      .portfolio-panel {
        width: min(1600px, calc(100vw - 24px));
        height: min(93vh, 980px);
        border-radius: 22px;
      }

      .portfolio-panel .modal-top {
        min-height: 50px;
        padding: 10px 18px;
      }

      .portfolio-panel .modal-title strong {
        font-size: 16px;
      }

      .portfolio-panel .modal-title span {
        font-size: 12px;
      }

      .book-area {
        padding: 6px 8px 8px;
        gap: 6px;
      }

      .book-shell {
        padding: 6px;
        border-radius: 12px;
      }

      .book-spread {
        gap: 6px;
      }

      .book-spread::before {
        top: 6px;
        bottom: 6px;
      }

      .page {
        border-radius: 7px;
      }

      .page-inner {
        padding: clamp(13px, 1.45vw, 22px);
      }

      .page-label {
        margin-bottom: 14px;
      }
    }

    @media (min-width: 901px) {
      .simple-panel {
        width: min(1480px, calc(100vw - 42px));
        height: min(94vh, 940px);
        border-radius: 24px;
      }

      .simple-panel .modal-top {
        min-height: 54px;
        padding: 10px 18px;
      }

      .simple-panel .modal-title strong {
        font-size: 16px;
      }

      .simple-panel .modal-title span {
        font-size: 12px;
      }

      .simple-panel .close-btn-main {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .simple-frame {
        min-height: 0;
      }
    }

    @media (min-width: 901px) {
      .portfolio-panel .modal-top {
        min-height: 42px;
        padding: 8px 16px;
      }

      .portfolio-panel .modal-title {
        display: flex;
        align-items: center;
        min-height: 0;
      }

      .portfolio-panel .modal-title strong {
        font-size: 15px;
        line-height: 1.15;
        margin: 0;
      }

      .portfolio-panel .modal-title span {
        display: none !important;
      }

      .portfolio-panel .close-btn-main {
        width: 42px;
        height: 42px;
      }

      .book-area {
        padding-top: 4px;
      }
    }

    .portfolio-panel {
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(106, 220, 255, 0.18);
      background:
        linear-gradient(180deg, rgba(8, 24, 42, 0.98), rgba(4, 12, 24, 0.96));
      box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .portfolio-panel .modal-top {
      min-height: 58px !important;
      padding: 10px 16px 10px 20px !important;
      border-bottom: 1px solid rgba(102, 204, 255, 0.14);
      background:
        linear-gradient(180deg, rgba(14, 39, 65, 0.95), rgba(8, 22, 38, 0.92));
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.035);
    }

    .portfolio-panel .modal-title strong {
      font-size: 18px !important;
      font-weight: 950;
      letter-spacing: -0.025em;
      color: #f3fbff;
      text-shadow: 0 0 18px rgba(80, 210, 255, 0.12);
    }

    .portfolio-panel .close-btn-main {
      width: 44px !important;
      height: 44px !important;
      border-radius: 16px !important;
      background: rgba(255,255,255,0.075);
      border-color: rgba(178, 225, 255, 0.18);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .portfolio-panel .close-btn-main:hover {
      transform: translateY(-1px) scale(1.03);
      background: rgba(85, 205, 255, 0.14);
      border-color: rgba(111, 225, 255, 0.35);
      box-shadow: 0 12px 30px rgba(48, 190, 255, 0.14), inset 0 1px 0 rgba(255,255,255,0.18);
    }

    .portfolio-panel .book-area {
      padding: 16px 18px 18px !important;
      background:
        radial-gradient(900px 280px at 50% 0%, rgba(72, 214, 255, 0.055), transparent 70%),
        linear-gradient(180deg, rgba(3, 10, 20, 0.78), rgba(3, 10, 20, 0.52));
    }

    .portfolio-panel .book-shell {
      position: relative;
      padding: 16px 18px 18px !important;
      border-radius: 18px !important;
      border: 1px solid rgba(115, 210, 255, 0.11) !important;
      background:
        linear-gradient(180deg, rgba(6, 19, 35, 0.92), rgba(3, 11, 22, 0.88));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        inset 0 22px 55px rgba(66, 180, 255, 0.030),
        0 20px 60px rgba(0,0,0,0.34) !important;
    }

    .portfolio-panel .book-shell::before,
    .portfolio-panel .book-shell::after {
      content: "";
      position: absolute;
      top: 20px;
      bottom: 20px;
      width: 10px;
      border-radius: 999px;
      opacity: 0.78;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.02)),
        repeating-linear-gradient(180deg, rgba(118, 225, 255, 0.30) 0 18px, rgba(0,0,0,0.22) 18px 36px);
      box-shadow:
        inset 0 0 12px rgba(0,0,0,0.45),
        0 0 18px rgba(77, 205, 255, 0.08);
      z-index: 7;
    }

    .portfolio-panel .book-shell::before {
      left: 12px;
    }

    .portfolio-panel .book-shell::after {
      right: 12px;
    }

    .portfolio-panel .book-spread {
      gap: 22px !important;
      perspective: 1600px;
    }

    .portfolio-panel .book-spread::before {
      top: 2px !important;
      bottom: 2px !important;
      width: 24px !important;
      border-radius: 999px !important;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.44), rgba(24, 51, 76, 0.98) 40%, rgba(118, 220, 255, 0.16) 50%, rgba(15, 34, 54, 0.98) 60%, rgba(0,0,0,0.42)),
        repeating-linear-gradient(180deg, rgba(132, 226, 255, 0.22) 0 22px, rgba(0,0,0,0.24) 22px 44px);
      box-shadow:
        inset 6px 0 12px rgba(0,0,0,0.38),
        inset -6px 0 12px rgba(0,0,0,0.34),
        0 0 28px rgba(37, 190, 255, 0.10) !important;
      z-index: 8 !important;
    }

    .portfolio-panel .book-spread::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 42%;
      width: 30px;
      height: 96px;
      transform: translate(-50%, -50%);
      border-radius: 999px;
      background:
        linear-gradient(90deg, rgba(3,10,18,0.92), rgba(99,210,255,0.15), rgba(3,10,18,0.92));
      box-shadow:
        inset 0 0 14px rgba(0,0,0,0.45),
        0 0 20px rgba(72,214,255,0.09);
      z-index: 9;
      pointer-events: none;
    }

    .portfolio-panel .page {
      border-radius: 8px !important;
      border: 0 !important;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 235, 0.98)),
        repeating-linear-gradient(180deg, rgba(36, 53, 78, 0.022) 0 1px, transparent 1px 22px) !important;
      box-shadow:
        0 18px 34px rgba(0,0,0,0.22),
        inset 0 0 0 1px rgba(101, 78, 42, 0.10),
        inset 10px 0 18px rgba(76, 54, 25, 0.065),
        inset -10px 0 18px rgba(76, 54, 25, 0.045) !important;
    }

    .portfolio-panel .page::before {
      background:
        linear-gradient(90deg, rgba(0,0,0,0.09), transparent 4%, transparent 94%, rgba(0,0,0,0.055)),
        linear-gradient(180deg, rgba(255,255,255,0.70), transparent 16%, transparent 84%, rgba(0,0,0,0.035)),
        repeating-linear-gradient(180deg, rgba(42, 35, 18, 0.018) 0 1px, transparent 1px 24px) !important;
      opacity: 1 !important;
    }

    .portfolio-panel .page::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 52px;
      height: 52px;
      pointer-events: none;
      background:
        linear-gradient(225deg, rgba(0,0,0,0.13), rgba(0,0,0,0.04) 46%, transparent 47%),
        linear-gradient(225deg, #eee6d8 0 48%, transparent 49%);
      box-shadow: -2px 2px 6px rgba(0,0,0,0.08);
      z-index: 3;
    }

    .portfolio-panel .page-inner {
      padding: clamp(18px, 1.8vw, 28px) !important;
    }

    @media (min-width: 901px) {
      .portfolio-panel {
        width: min(1540px, calc(100vw - 30px)) !important;
        height: min(94vh, 930px) !important;
      }

      .portfolio-panel .book-area {
        padding-top: 14px !important;
      }
    }

    @media (max-width: 900px) {
      .portfolio-panel .book-shell::before,
      .portfolio-panel .book-shell::after,
      .portfolio-panel .book-spread::before,
      .portfolio-panel .book-spread::after {
        display: none;
      }

      .portfolio-panel .book-spread {
        gap: 0 !important;
      }

      .portfolio-panel .page {
        border-radius: 14px !important;
      }

      .portfolio-panel .modal-top {
        min-height: 56px !important;
      }
    }

    .portfolio-panel {
      border: 1px solid rgba(255, 255, 255, 0.08) !important;
      background:
        linear-gradient(180deg, rgba(10, 18, 28, 0.98), rgba(5, 10, 18, 0.96)) !important;
      box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255,255,255,0.055) !important;
    }

    .portfolio-panel .modal-top {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
      background:
        linear-gradient(180deg, rgba(16, 27, 39, 0.96), rgba(8, 15, 25, 0.95)) !important;
      box-shadow: none !important;
    }

    .portfolio-panel .modal-title strong {
      text-shadow: none !important;
    }

    .portfolio-panel .book-area {
      background:
        radial-gradient(820px 280px at 50% 0%, rgba(255, 246, 218, 0.055), transparent 70%),
        linear-gradient(180deg, rgba(4, 8, 14, 0.74), rgba(4, 8, 14, 0.52)) !important;
    }

    .portfolio-panel .book-shell {
      border: 0 !important;
      border-radius: 16px !important;
      background:
        linear-gradient(180deg, rgba(20, 17, 13, 0.72), rgba(10, 9, 7, 0.78)) !important;
      box-shadow:
        inset 0 0 28px rgba(0,0,0,0.30),
        0 22px 64px rgba(0,0,0,0.34) !important;
    }

    .portfolio-panel .book-shell::before,
    .portfolio-panel .book-shell::after {
      display: none !important;
      content: none !important;
    }

    .portfolio-panel .book-spread {
      gap: 34px !important;
    }

    .portfolio-panel .book-spread::before {
      content: "" !important;
      position: absolute !important;
      left: 50% !important;
      top: 10px !important;
      bottom: 10px !important;
      width: 26px !important;
      transform: translateX(-50%) !important;
      border-radius: 8px !important;
      background:
        linear-gradient(90deg,
          rgba(0,0,0,0.45),
          rgba(66, 55, 43, 0.96) 24%,
          rgba(116, 98, 76, 0.92) 50%,
          rgba(56, 47, 37, 0.98) 76%,
          rgba(0,0,0,0.46)),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.035) 0 14px, rgba(0,0,0,0.15) 14px 28px) !important;
      border: 1px solid rgba(255, 244, 220, 0.08) !important;
      box-shadow:
        inset 5px 0 9px rgba(0,0,0,0.32),
        inset -5px 0 9px rgba(0,0,0,0.30),
        0 0 0 1px rgba(0,0,0,0.30),
        0 12px 28px rgba(0,0,0,0.30) !important;
      z-index: 10 !important;
      pointer-events: none !important;
    }

    .portfolio-panel .book-spread::after {
      content: "" !important;
      position: absolute !important;
      left: 50% !important;
      top: 50% !important;
      width: 20px !important;
      height: 72% !important;
      transform: translate(-50%, -50%) !important;
      border-radius: 999px !important;
      pointer-events: none !important;
      z-index: 11 !important;
      background:
        radial-gradient(circle at 50% 18%, rgba(238, 224, 196, 0.86) 0 5px, rgba(92, 76, 57, 0.92) 6px 9px, transparent 10px),
        radial-gradient(circle at 50% 50%, rgba(238, 224, 196, 0.86) 0 5px, rgba(92, 76, 57, 0.92) 6px 9px, transparent 10px),
        radial-gradient(circle at 50% 82%, rgba(238, 224, 196, 0.86) 0 5px, rgba(92, 76, 57, 0.92) 6px 9px, transparent 10px),
        linear-gradient(90deg, transparent 0 30%, rgba(255,255,255,0.08) 50%, transparent 70%) !important;
      box-shadow: none !important;
    }

    .portfolio-panel .page {
      border: 0 !important;
      border-radius: 10px !important;
      background:
        radial-gradient(520px 220px at 18% 0%, rgba(255,255,255,0.56), transparent 70%),
        linear-gradient(180deg, #fffdf6 0%, #f7f0df 100%),
        repeating-linear-gradient(180deg, rgba(79, 63, 35, 0.018) 0 1px, transparent 1px 24px) !important;
      box-shadow:
        0 18px 38px rgba(0,0,0,0.24),
        inset 0 0 0 1px rgba(96, 73, 39, 0.08),
        inset 12px 0 18px rgba(70, 50, 24, 0.055),
        inset -12px 0 18px rgba(70, 50, 24, 0.040) !important;
    }

    .portfolio-panel .page::before {
      background:
        linear-gradient(90deg, rgba(0,0,0,0.060), transparent 5%, transparent 94%, rgba(0,0,0,0.042)),
        linear-gradient(180deg, rgba(255,255,255,0.58), transparent 18%, transparent 86%, rgba(0,0,0,0.030)),
        repeating-linear-gradient(180deg, rgba(65, 48, 22, 0.018) 0 1px, transparent 1px 25px) !important;
      opacity: 1 !important;
    }

    .portfolio-panel .page::after {
      background:
        linear-gradient(225deg, rgba(0,0,0,0.11), rgba(0,0,0,0.035) 46%, transparent 47%),
        linear-gradient(225deg, #eee4cf 0 48%, transparent 49%) !important;
      box-shadow: -2px 2px 7px rgba(0,0,0,0.075) !important;
    }

    .portfolio-panel .section-card,
    .portfolio-panel .info-tile,
    .portfolio-panel .project-card {
      border-color: rgba(80, 60, 31, 0.10) !important;
      background: rgba(255, 255, 255, 0.44) !important;
      box-shadow: 0 10px 22px rgba(88, 64, 26, 0.045) !important;
    }

    .portfolio-panel .section-title .icon {
      background: rgba(88, 70, 42, 0.085) !important;
      color: #5a482f !important;
    }

    .portfolio-panel .project-card::before {
      background: rgba(120, 92, 48, 0.060) !important;
    }

    .portfolio-panel .project-meta span {
      background: rgba(116, 91, 51, 0.095) !important;
      color: #5d4829 !important;
    }

    .portfolio-panel .page-inner {
      scrollbar-color: rgba(110, 92, 64, 0.42) transparent !important;
    }

    .portfolio-panel .page-inner::-webkit-scrollbar-thumb {
      background: rgba(110, 92, 64, 0.42) !important;
    }

    @media (max-width: 900px) {
      .portfolio-panel .book-spread::before,
      .portfolio-panel .book-spread::after {
        display: none !important;
        content: none !important;
      }

      .portfolio-panel .book-spread {
        gap: 0 !important;
      }
    }

    .portfolio-panel {
      border: 0 !important;
      outline: 0 !important;
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55) !important;
      background: linear-gradient(180deg, rgba(10, 14, 20, 0.98), rgba(4, 7, 12, 0.98)) !important;
    }

    .portfolio-panel::before,
    .portfolio-panel::after,
    .portfolio-panel *::selection {
      border-color: transparent !important;
    }

    .portfolio-panel .modal-top {
      min-height: 46px !important;
      padding: 8px 14px 8px 18px !important;
      border: 0 !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.055) !important;
      background: rgba(9, 14, 22, 0.96) !important;
      box-shadow: none !important;
    }

    .portfolio-panel .modal-title {
      min-height: 0 !important;
      display: flex !important;
      align-items: center !important;
    }

    .portfolio-panel .modal-title strong {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-height: 30px !important;
      padding: 6px 12px !important;
      border-radius: 999px !important;
      color: #f8f4ea !important;
      font-size: 15px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: -0.025em !important;
      background: rgba(255, 255, 255, 0.075) !important;
      border: 1px solid rgba(255, 255, 255, 0.105) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.075) !important;
      text-shadow: none !important;
    }

    .portfolio-panel .modal-title span {
      display: none !important;
    }

    .portfolio-panel .close-btn-main {
      width: auto !important;
      height: auto !important;
      min-width: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      color: #ffffff !important;
      font-size: 22px !important;
      line-height: 1 !important;
      font-weight: 700 !important;
      opacity: 0.9 !important;
      transform: none !important;
    }

    .portfolio-panel .close-btn-main:hover,
    .portfolio-panel .close-btn-main:active {
      transform: none !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      color: #ffffff !important;
      opacity: 1 !important;
    }

    .portfolio-panel .book-area {
      padding: 8px 14px 14px !important;
      background:
        radial-gradient(900px 260px at 50% 0%, rgba(255, 246, 218, 0.040), transparent 72%),
        linear-gradient(180deg, rgba(3, 5, 8, 0.72), rgba(3, 5, 8, 0.48)) !important;
    }

    .portfolio-panel .book-shell {
      padding: 12px 14px 14px !important;
      border: 0 !important;
      outline: 0 !important;
      box-shadow:
        inset 0 0 26px rgba(0,0,0,0.38),
        0 22px 64px rgba(0,0,0,0.38) !important;
      background: linear-gradient(180deg, rgba(18, 14, 10, 0.72), rgba(8, 7, 5, 0.78)) !important;
    }

    .portfolio-panel .book-spread {
      gap: 34px !important;
      height: 100% !important;
    }

    .portfolio-panel .page {
      min-height: 0 !important;
      height: 100% !important;
      border: 0 !important;
      outline: 0 !important;
      border-radius: 9px !important;
      box-shadow:
        0 18px 38px rgba(0,0,0,0.26),
        inset 0 0 0 1px rgba(92, 72, 40, 0.075),
        inset 12px 0 18px rgba(70, 50, 24, 0.052),
        inset -12px 0 18px rgba(70, 50, 24, 0.036) !important;
      background:
        radial-gradient(520px 220px at 18% 0%, rgba(255,255,255,0.56), transparent 70%),
        linear-gradient(180deg, #fffdf6 0%, #f7f0df 100%),
        repeating-linear-gradient(180deg, rgba(79, 63, 35, 0.018) 0 1px, transparent 1px 24px) !important;
    }

    .portfolio-panel .page-inner {
      padding: clamp(18px, 1.55vw, 26px) !important;
    }

    .portfolio-panel .section-card,
    .portfolio-panel .info-tile,
    .portfolio-panel .project-card,
    .portfolio-panel .page-label,
    .portfolio-panel .mini-tag,
    .portfolio-panel .project-meta span,
    .portfolio-panel .resume-pills span {
      border-color: rgba(90, 70, 40, 0.105) !important;
      box-shadow: none !important;
    }

    .portfolio-panel .page-inner::-webkit-scrollbar-thumb {
      background: rgba(112, 95, 70, 0.42) !important;
      border: 0 !important;
    }

    @media (min-width: 901px) {
      .portfolio-panel {
        width: min(1580px, calc(100vw - 20px)) !important;
        height: min(96vh, 980px) !important;
      }

      .portfolio-panel .book-area {
        height: calc(100% - 46px) !important;
      }

      .portfolio-panel .book-shell {
        height: 100% !important;
      }
    }

    .portfolio-panel {
      position: relative !important;
      border: 0 !important;
      border-radius: 26px !important;
      background: linear-gradient(180deg, rgba(8, 10, 13, 0.98), rgba(3, 5, 8, 0.98)) !important;
      box-shadow: 0 34px 92px rgba(0,0,0,0.58) !important;
      overflow: hidden !important;
    }

    .portfolio-panel .modal-top {
      position: absolute !important;
      top: 18px !important;
      left: 28px !important;
      right: 28px !important;
      height: 36px !important;
      min-height: 36px !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      z-index: 40 !important;
      pointer-events: none !important;
    }

    .portfolio-panel .modal-title {
      pointer-events: auto !important;
      position: absolute !important;
      left: 22px !important;
      top: 8px !important;
      display: flex !important;
      align-items: center !important;
      min-height: 0 !important;
    }

    .portfolio-panel .modal-title strong {
      display: inline-flex !important;
      align-items: center !important;
      height: 30px !important;
      padding: 0 12px !important;
      border-radius: 9px !important;
      color: #5e4b2e !important;
      font-size: 12px !important;
      font-weight: 950 !important;
      letter-spacing: 0.03em !important;
      background:
        linear-gradient(180deg, rgba(255, 250, 235, 0.94), rgba(238, 224, 194, 0.92)) !important;
      border: 1px solid rgba(119, 92, 50, 0.18) !important;
      box-shadow:
        0 3px 10px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.58) !important;
      text-shadow: none !important;
    }

    .portfolio-panel .modal-title span {
      display: none !important;
    }

    .portfolio-panel .close-btn-main {
      pointer-events: auto !important;
      position: absolute !important;
      right: 18px !important;
      top: 8px !important;
      width: 22px !important;
      height: 22px !important;
      min-width: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      color: #efe9dc !important;
      font-size: 20px !important;
      line-height: 20px !important;
      font-weight: 750 !important;
      opacity: 0.92 !important;
      transform: none !important;
    }

    .portfolio-panel .close-btn-main:hover,
    .portfolio-panel .close-btn-main:active {
      background: transparent !important;
      box-shadow: none !important;
      border: 0 !important;
      color: #ffffff !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .portfolio-panel .book-area {
      height: 100% !important;
      padding: 18px 22px 22px !important;
      background:
        radial-gradient(780px 280px at 50% 4%, rgba(255, 242, 210, 0.045), transparent 72%),
        linear-gradient(180deg, rgba(3, 4, 6, 0.76), rgba(3, 4, 6, 0.54)) !important;
    }

    .portfolio-panel .book-shell {
      height: 100% !important;
      position: relative !important;
      padding: 34px 40px 26px !important;
      border: 0 !important;
      border-radius: 15px !important;
      overflow: hidden !important;
      background:
        linear-gradient(90deg,
          rgba(32, 25, 16, 0.92) 0%,
          rgba(49, 39, 25, 0.88) 3.2%,
          rgba(245, 237, 218, 0.98) 3.5%,
          rgba(250, 244, 229, 0.98) 49.1%,
          rgba(58, 47, 32, 0.97) 49.5%,
          rgba(28, 22, 15, 0.99) 50%,
          rgba(58, 47, 32, 0.97) 50.5%,
          rgba(250, 244, 229, 0.98) 50.9%,
          rgba(245, 237, 218, 0.98) 96.5%,
          rgba(49, 39, 25, 0.88) 96.8%,
          rgba(32, 25, 16, 0.92) 100%) !important;
      box-shadow:
        0 24px 70px rgba(0,0,0,0.40),
        inset 0 0 0 1px rgba(0,0,0,0.10),
        inset 0 24px 40px rgba(255,255,255,0.18),
        inset 0 -22px 34px rgba(78, 54, 24, 0.06) !important;
    }

    .portfolio-panel .book-shell::before,
    .portfolio-panel .book-shell::after {
      content: "" !important;
      display: block !important;
      position: absolute !important;
      top: 48px !important;
      bottom: 38px !important;
      width: 14px !important;
      border-radius: 9px !important;
      z-index: 15 !important;
      pointer-events: none !important;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.30), rgba(92, 74, 49, 0.96), rgba(217, 198, 160, 0.42), rgba(41, 32, 21, 0.96)),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 18px, rgba(0,0,0,0.14) 18px 36px) !important;
      box-shadow:
        inset 3px 0 7px rgba(0,0,0,0.28),
        inset -3px 0 7px rgba(0,0,0,0.32),
        0 7px 18px rgba(0,0,0,0.22) !important;
    }

    .portfolio-panel .book-shell::before {
      left: 18px !important;
    }

    .portfolio-panel .book-shell::after {
      right: 18px !important;
    }

    .portfolio-panel .book-spread {
      height: 100% !important;
      gap: 36px !important;
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      position: relative !important;
      z-index: 2 !important;
    }

    .portfolio-panel .book-spread::before {
      content: "" !important;
      display: block !important;
      position: absolute !important;
      left: 50% !important;
      top: -4px !important;
      bottom: -6px !important;
      width: 34px !important;
      transform: translateX(-50%) !important;
      border-radius: 9px !important;
      z-index: 20 !important;
      pointer-events: none !important;
      background:
        linear-gradient(90deg,
          rgba(0,0,0,0.58),
          rgba(54, 43, 28, 0.98) 24%,
          rgba(118, 96, 62, 0.96) 49%,
          rgba(54, 43, 28, 0.98) 76%,
          rgba(0,0,0,0.54)),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 18px, rgba(0,0,0,0.15) 18px 36px) !important;
      border: 1px solid rgba(255, 244, 220, 0.08) !important;
      box-shadow:
        inset 7px 0 11px rgba(0,0,0,0.38),
        inset -7px 0 11px rgba(0,0,0,0.34),
        0 0 0 1px rgba(0,0,0,0.36),
        0 16px 34px rgba(0,0,0,0.30) !important;
    }

    .portfolio-panel .book-spread::after {
      content: "" !important;
      display: block !important;
      position: absolute !important;
      left: 50% !important;
      top: 50% !important;
      width: 24px !important;
      height: 72% !important;
      transform: translate(-50%, -50%) !important;
      border-radius: 999px !important;
      z-index: 21 !important;
      pointer-events: none !important;
      background:
        radial-gradient(circle at 50% 18%, #dcc8a1 0 5px, #56442d 6px 9px, rgba(0,0,0,0.35) 10px, transparent 11px),
        radial-gradient(circle at 50% 50%, #dcc8a1 0 5px, #56442d 6px 9px, rgba(0,0,0,0.35) 10px, transparent 11px),
        radial-gradient(circle at 50% 82%, #dcc8a1 0 5px, #56442d 6px 9px, rgba(0,0,0,0.35) 10px, transparent 11px) !important;
      box-shadow: none !important;
    }

    .portfolio-panel .page {
      height: 100% !important;
      min-height: 0 !important;
      border: 0 !important;
      outline: 0 !important;
      border-radius: 0 !important;
      background:
        radial-gradient(680px 270px at 15% 0%, rgba(255,255,255,0.68), transparent 68%),
        linear-gradient(180deg, #fffdf7 0%, #f6eedc 100%),
        repeating-linear-gradient(180deg, rgba(83, 65, 34, 0.018) 0 1px, transparent 1px 25px) !important;
      box-shadow:
        0 14px 28px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(96, 73, 39, 0.065),
        inset 10px 0 18px rgba(70, 50, 24, 0.050),
        inset -10px 0 18px rgba(70, 50, 24, 0.036) !important;
    }

    .portfolio-panel .page::before {
      background:
        linear-gradient(90deg, rgba(0,0,0,0.050), transparent 4%, transparent 94%, rgba(0,0,0,0.040)),
        linear-gradient(180deg, rgba(255,255,255,0.62), transparent 18%, transparent 86%, rgba(0,0,0,0.026)),
        repeating-linear-gradient(180deg, rgba(65, 48, 22, 0.018) 0 1px, transparent 1px 25px) !important;
      opacity: 1 !important;
    }

    .portfolio-panel .page::after {
      display: none !important;
      content: none !important;
    }

    .portfolio-panel .page-inner {
      padding: clamp(18px, 1.55vw, 26px) !important;
    }

    @media (min-width: 901px) {
      .portfolio-panel {
        width: min(1585px, calc(100vw - 18px)) !important;
        height: min(96vh, 985px) !important;
      }
    }

    @media (max-width: 900px) {
      .portfolio-panel .modal-top {
        top: 12px !important;
        left: 14px !important;
        right: 14px !important;
      }

      .portfolio-panel .book-shell {
        padding: 48px 14px 16px !important;
        background: linear-gradient(180deg, #fbf4e5, #f4ead4) !important;
      }

      .portfolio-panel .book-shell::before,
      .portfolio-panel .book-shell::after,
      .portfolio-panel .book-spread::before,
      .portfolio-panel .book-spread::after {
        display: none !important;
      }

      .portfolio-panel .book-spread {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
      }

      .portfolio-panel .page {
        border-radius: 8px !important;
      }
    }

    .portfolio-panel .resume-hero {
      color: #fffaf0 !important;
      background:
        radial-gradient(360px 220px at 86% 10%, rgba(206, 179, 118, 0.24), transparent 70%),
        radial-gradient(420px 260px at 18% 0%, rgba(118, 160, 133, 0.22), transparent 72%),
        linear-gradient(135deg, #3b3022 0%, #4e6254 58%, #2f3f37 100%) !important;
      box-shadow:
        0 18px 40px rgba(77, 58, 30, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.12) !important;
    }

    .portfolio-panel .resume-hero::after {
      border-color: rgba(226, 204, 151, 0.13) !important;
    }

    .portfolio-panel .resume-hero h2 {
      color: #fff8e8 !important;
      text-shadow: 0 2px 16px rgba(0,0,0,0.16) !important;
    }

    .portfolio-panel .resume-hero p {
      color: rgba(255, 248, 232, 0.86) !important;
    }

    .portfolio-panel .resume-pills span {
      color: #fff5df !important;
      background: rgba(255, 248, 226, 0.13) !important;
      border-color: rgba(255, 242, 205, 0.18) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
    }

    .portfolio-panel .section-title .icon {
      color: #5d4a2b !important;
      background:
        linear-gradient(135deg, rgba(181, 151, 92, 0.16), rgba(92, 133, 109, 0.12)) !important;
    }

    .portfolio-panel .page-label,
    .portfolio-panel .mini-tag {
      color: #6b5430 !important;
      background: rgba(176, 145, 86, 0.135) !important;
      border-color: rgba(176, 145, 86, 0.145) !important;
    }

    .portfolio-panel .project-card::before {
      background: rgba(109, 143, 118, 0.085) !important;
    }

    .portfolio-panel .project-meta span {
      background: rgba(109, 143, 118, 0.115) !important;
      color: #365a49 !important;
    }

    .portfolio-panel .info-tile span,
    .portfolio-panel .timeline-item p,
    .portfolio-panel .project-card p,
    .portfolio-panel .cert-list .cert-desc {
      color: #5f6c63 !important;
    }

    .portfolio-panel .info-tile strong,
    .portfolio-panel .timeline-item h4,
    .portfolio-panel .project-card h4,
    .portfolio-panel .section-title,
    .portfolio-panel .cert-list strong {
      color: #16251f !important;
    }

    .portfolio-panel a {
      color: #3f705c !important;
      text-decoration-color: rgba(63, 112, 92, 0.34) !important;
    }

    .portfolio-panel .book-skills .skill-dots span,
    .portfolio-panel .skill-dots span,
    .portfolio-panel .dots span,
    .portfolio-panel .level-dot {
      background: #6f8f78 !important;
    }

    .portfolio-panel .page-inner::-webkit-scrollbar-thumb {
      background: rgba(116, 98, 70, 0.42) !important;
    }

    .portfolio-panel .page-inner {
      scrollbar-color: rgba(116, 98, 70, 0.42) transparent !important;
    }

    .portfolio-panel .book-shell {
      background:
        linear-gradient(90deg,
          rgba(31, 24, 16, 0.92) 0%,
          rgba(58, 46, 29, 0.88) 3.2%,
          rgba(244, 236, 216, 0.98) 3.5%,
          rgba(250, 244, 229, 0.98) 49.1%,
          rgba(72, 58, 38, 0.97) 49.5%,
          rgba(32, 25, 17, 0.99) 50%,
          rgba(72, 58, 38, 0.97) 50.5%,
          rgba(250, 244, 229, 0.98) 50.9%,
          rgba(244, 236, 216, 0.98) 96.5%,
          rgba(58, 46, 29, 0.88) 96.8%,
          rgba(31, 24, 16, 0.92) 100%) !important;
    }

    .portfolio-panel .modal-title strong {
      color: #5e4b2e !important;
      background:
        linear-gradient(180deg, rgba(255, 250, 235, 0.96), rgba(232, 218, 188, 0.94)) !important;
    }

    .portfolio-panel .book-spread::before {
      background:
        linear-gradient(90deg,
          rgba(0,0,0,0.58),
          rgba(57, 45, 28, 0.98) 24%,
          rgba(126, 102, 64, 0.96) 49%,
          rgba(57, 45, 28, 0.98) 76%,
          rgba(0,0,0,0.54)),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 18px, rgba(0,0,0,0.15) 18px 36px) !important;
    }

    .portfolio-panel .book-shell {
      background:
        linear-gradient(90deg,
          rgba(7, 12, 20, 0.96) 0%,
          rgba(18, 35, 56, 0.92) 3.2%,
          rgba(245, 248, 252, 0.98) 3.5%,
          rgba(250, 252, 255, 0.98) 49.1%,
          rgba(23, 42, 62, 0.98) 49.5%,
          rgba(6, 12, 21, 0.99) 50%,
          rgba(23, 42, 62, 0.98) 50.5%,
          rgba(250, 252, 255, 0.98) 50.9%,
          rgba(245, 248, 252, 0.98) 96.5%,
          rgba(18, 35, 56, 0.92) 96.8%,
          rgba(7, 12, 20, 0.96) 100%) !important;
    }

    .portfolio-panel .modal-title strong {
      color: #dff3ff !important;
      background:
        linear-gradient(180deg, rgba(16, 34, 55, 0.96), rgba(8, 19, 34, 0.96)) !important;
      border-color: rgba(129, 212, 255, 0.18) !important;
      box-shadow:
        0 3px 10px rgba(0,0,0,0.16),
        inset 0 1px 0 rgba(255,255,255,0.08) !important;
    }

    .portfolio-panel .resume-hero {
      color: #f3fbff !important;
      background:
        radial-gradient(360px 220px at 86% 10%, rgba(72, 214, 255, 0.18), transparent 70%),
        radial-gradient(420px 260px at 18% 0%, rgba(70, 125, 190, 0.24), transparent 72%),
        linear-gradient(135deg, #07111f 0%, #102b47 54%, #0b1d32 100%) !important;
      box-shadow:
        0 18px 42px rgba(5, 18, 34, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.12) !important;
    }

    .portfolio-panel .resume-hero::after {
      border-color: rgba(72, 214, 255, 0.10) !important;
    }

    .portfolio-panel .resume-hero h2 {
      color: #f6fbff !important;
      text-shadow: 0 2px 18px rgba(0,0,0,0.20) !important;
    }

    .portfolio-panel .resume-hero p {
      color: rgba(221, 239, 255, 0.90) !important;
    }

    .portfolio-panel .resume-pills span {
      color: #eaf7ff !important;
      background: rgba(255,255,255,0.10) !important;
      border-color: rgba(165, 225, 255, 0.16) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
    }

    .portfolio-panel .page {
      background:
        radial-gradient(680px 270px at 15% 0%, rgba(255,255,255,0.72), transparent 68%),
        linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%),
        repeating-linear-gradient(180deg, rgba(20, 45, 75, 0.018) 0 1px, transparent 1px 25px) !important;
      box-shadow:
        0 14px 28px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(42, 76, 105, 0.075),
        inset 10px 0 18px rgba(20, 45, 75, 0.045),
        inset -10px 0 18px rgba(20, 45, 75, 0.035) !important;
    }

    .portfolio-panel .page::before {
      background:
        linear-gradient(90deg, rgba(7, 26, 46, 0.045), transparent 4%, transparent 94%, rgba(7, 26, 46, 0.035)),
        linear-gradient(180deg, rgba(255,255,255,0.66), transparent 18%, transparent 86%, rgba(5, 18, 34, 0.024)),
        repeating-linear-gradient(180deg, rgba(20, 45, 75, 0.016) 0 1px, transparent 1px 25px) !important;
    }

    .portfolio-panel .section-title,
    .portfolio-panel .info-tile strong,
    .portfolio-panel .timeline-item h4,
    .portfolio-panel .project-card h4,
    .portfolio-panel .cert-list strong {
      color: #10233a !important;
    }

    .portfolio-panel .section-title .icon {
      color: #0d4d8c !important;
      background:
        linear-gradient(135deg, rgba(47, 131, 255, 0.12), rgba(72, 214, 255, 0.10)) !important;
    }

    .portfolio-panel .page-label,
    .portfolio-panel .mini-tag {
      color: #17456e !important;
      background: rgba(47, 131, 255, 0.085) !important;
      border-color: rgba(47, 131, 255, 0.10) !important;
    }

    .portfolio-panel .section-card,
    .portfolio-panel .info-tile,
    .portfolio-panel .project-card {
      border-color: rgba(22, 54, 86, 0.095) !important;
      background: rgba(255, 255, 255, 0.48) !important;
      box-shadow: 0 10px 22px rgba(15, 40, 70, 0.040) !important;
    }

    .portfolio-panel .project-card::before {
      background: rgba(47, 131, 255, 0.065) !important;
    }

    .portfolio-panel .project-meta span {
      background: rgba(47, 131, 255, 0.090) !important;
      color: #0b4fa2 !important;
    }

    .portfolio-panel .info-tile span,
    .portfolio-panel .timeline-item p,
    .portfolio-panel .project-card p,
    .portfolio-panel .cert-list .cert-desc {
      color: #516174 !important;
    }

    .portfolio-panel a {
      color: #0b5aa2 !important;
      text-decoration-color: rgba(11, 90, 162, 0.35) !important;
    }

    .portfolio-panel .book-skills .skill-dots span,
    .portfolio-panel .skill-dots span,
    .portfolio-panel .dots span,
    .portfolio-panel .level-dot {
      background: #2f83ff !important;
    }

    .portfolio-panel .book-spread::before {
      background:
        linear-gradient(90deg,
          rgba(0,0,0,0.58),
          rgba(13, 28, 46, 0.98) 24%,
          rgba(38, 79, 112, 0.96) 49%,
          rgba(13, 28, 46, 0.98) 76%,
          rgba(0,0,0,0.54)),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.045) 0 18px, rgba(0,0,0,0.16) 18px 36px) !important;
      border-color: rgba(150, 225, 255, 0.08) !important;
    }

    .portfolio-panel .book-spread::after {
      background:
        radial-gradient(circle at 50% 18%, #a8dfff 0 5px, #143553 6px 9px, rgba(0,0,0,0.35) 10px, transparent 11px),
        radial-gradient(circle at 50% 50%, #a8dfff 0 5px, #143553 6px 9px, rgba(0,0,0,0.35) 10px, transparent 11px),
        radial-gradient(circle at 50% 82%, #a8dfff 0 5px, #143553 6px 9px, rgba(0,0,0,0.35) 10px, transparent 11px) !important;
    }

    .portfolio-panel .book-shell::before,
    .portfolio-panel .book-shell::after {
      background:
        linear-gradient(90deg, rgba(0,0,0,0.32), rgba(19, 39, 61, 0.96), rgba(132, 210, 255, 0.25), rgba(8, 18, 32, 0.96)),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.045) 0 18px, rgba(0,0,0,0.16) 18px 36px) !important;
    }

    .portfolio-panel .page-inner::-webkit-scrollbar-thumb {
      background: rgba(47, 131, 255, 0.38) !important;
    }

    .portfolio-panel .page-inner {
      scrollbar-color: rgba(47, 131, 255, 0.38) transparent !important;
    }

    #simpleViewModal .simple-panel {
      position: relative !important;
      width: min(1180px, calc(100vw - 38px)) !important;
      height: min(92vh, 900px) !important;
      overflow: hidden !important;
      border: 0 !important;
      border-radius: 18px !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    #simpleViewModal .modal-top {
      position: absolute !important;
      inset: 0 0 auto 0 !important;
      height: 44px !important;
      min-height: 44px !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      z-index: 8 !important;
      pointer-events: none !important;
    }

    #simpleViewModal .modal-title {
      position: absolute !important;
      left: 18px !important;
      top: 10px !important;
      display: flex !important;
      align-items: center !important;
      pointer-events: auto !important;
    }

    #simpleViewModal .modal-title strong {
      display: inline-flex !important;
      align-items: center !important;
      height: 30px !important;
      padding: 0 13px !important;
      border-radius: 8px !important;
      color: #dff3ff !important;
      font-size: 12px !important;
      font-weight: 950 !important;
      letter-spacing: 0.02em !important;
      background: linear-gradient(180deg, rgba(16, 34, 55, 0.98), rgba(7, 18, 32, 0.98)) !important;
      border: 1px solid rgba(129, 212, 255, 0.18) !important;
      box-shadow: 0 6px 18px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08) !important;
      text-shadow: none !important;
    }

    #simpleViewModal .modal-title span {
      display: none !important;
    }

    #simpleViewModal .close-btn-main {
      pointer-events: auto !important;
      position: absolute !important;
      top: 11px !important;
      right: 18px !important;
      width: 22px !important;
      height: 22px !important;
      min-width: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      color: #ffffff !important;
      opacity: 0.92 !important;
      font-size: 20px !important;
      line-height: 20px !important;
      font-weight: 750 !important;
      transform: none !important;
    }

    #simpleViewModal .close-btn-main:hover,
    #simpleViewModal .close-btn-main:active {
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      color: #ffffff !important;
      opacity: 1 !important;
      transform: none !important;
    }

    #simpleViewModal .simple-frame {
      width: 100% !important;
      height: 100% !important;
      display: block !important;
      border: 0 !important;
      border-radius: 18px !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    @media (max-width: 900px) {
      #simpleViewModal .simple-panel {
        width: calc(100vw - 20px) !important;
        height: min(94vh, 900px) !important;
        border-radius: 14px !important;
      }

      #simpleViewModal .modal-title {
        left: 14px !important;
        top: 8px !important;
      }

      #simpleViewModal .close-btn-main {
        top: 9px !important;
        right: 14px !important;
      }

      #simpleViewModal .simple-frame {
        border-radius: 14px !important;
      }
    }

    .mobile-swipe-arrow.on-right {
      left: auto !important;
      right: 18px !important;
    }

    @media (max-width: 900px) {
      .mobile-swipe-arrow.on-right {
        left: auto !important;
        right: 18px !important;
      }
    }

    #portfolioModal .close-btn-main,
    #simpleViewModal .close-btn-main {
      width: 28px !important;
      height: 28px !important;
      min-width: 28px !important;
      padding: 0 !important;
      border-radius: 8px !important;
      border: 1px solid rgba(118, 184, 255, 0.22) !important;
      background: linear-gradient(180deg, rgba(18, 39, 67, 0.98), rgba(8, 20, 38, 0.98)) !important;
      color: #eef7ff !important;
      box-shadow: 0 8px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08) !important;
      font-size: 18px !important;
      line-height: 18px !important;
      font-weight: 800 !important;
      opacity: 1 !important;
      display: inline-grid !important;
      place-items: center !important;
    }

    #portfolioModal .close-btn-main:hover,
    #portfolioModal .close-btn-main:active,
    #simpleViewModal .close-btn-main:hover,
    #simpleViewModal .close-btn-main:active {
      background: linear-gradient(180deg, rgba(24, 52, 86, 0.98), rgba(10, 26, 48, 0.98)) !important;
      border-color: rgba(140, 210, 255, 0.34) !important;
      color: #ffffff !important;
      box-shadow: 0 10px 24px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.10) !important;
      transform: none !important;
    }

    #simpleViewModal .modal-title,
    #simpleViewModal .modal-title strong,
    #simpleViewModal .modal-title span {
      display: none !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    #simpleViewModal .modal-top {
      pointer-events: none !important;
    }

    #simpleViewModal .close-btn-main {
      pointer-events: auto !important;
    }

    .portfolio-panel .section-title .icon i {
      font-size: 13px;
      line-height: 1;
    }

    .portfolio-panel .portfolio-contact-card {
      position: relative;
      overflow: hidden;
      min-height: 185px;
    }

    .portfolio-panel .portfolio-contact-card .contact-private-content {
      filter: blur(4px);
      opacity: 0.34;
      pointer-events: none;
      user-select: none;
    }

    .portfolio-panel .portfolio-contact-card .contact-lock-glass {
      position: absolute;
      left: 18px;
      right: 18px;
      top: 58px;
      bottom: 18px;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      text-align: center;
      border-radius: 16px;
      color: #0f172a;
      font-size: 12.5px;
      font-weight: 700;
      line-height: 1.45;
      background: linear-gradient(135deg, rgba(255,255,255,0.70), rgba(255,255,255,0.35));
      border: 1px solid rgba(255,255,255,0.58);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .portfolio-panel .portfolio-contact-card .contact-lock-glass i {
      width: 34px;
      height: 34px;
      min-width: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #ffffff;
      background: linear-gradient(135deg, #102b47, #07111f);
      box-shadow: 0 8px 18px rgba(16, 43, 71, 0.22);
    }

    .portfolio-panel .portfolio-contact-card .contact-lock-glass a {
      color: #0b5aa2;
      overflow-wrap: anywhere;
    }

    .portfolio-panel .compact-list {
      columns: 2;
      column-gap: 24px;
    }

    @media (max-width: 900px) {
      .portfolio-panel .compact-list {
        columns: 1;
      }

      .portfolio-panel .portfolio-contact-card .contact-lock-glass {
        left: 14px;
        right: 14px;
        top: 56px;
        bottom: 14px;
      }
    }

    .portfolio-panel .bar-skills {
      display: grid !important;
      gap: 13px !important;
    }

    .portfolio-panel .bar-skills .skill-bar-row {
      display: grid !important;
      gap: 7px !important;
      padding: 4px 0 9px !important;
      border-bottom: 1px dashed rgba(100, 116, 139, 0.16) !important;
    }

    .portfolio-panel .bar-skills .skill-bar-row:last-child {
      border-bottom: 0 !important;
      padding-bottom: 0 !important;
    }

    .portfolio-panel .bar-skills .skill-bar-head {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 12px !important;
    }

    .portfolio-panel .bar-skills .skill-name {
      color: #263449 !important;
      font-size: 13.4px !important;
      line-height: 1.45 !important;
      font-weight: 650 !important;
      letter-spacing: 0 !important;
    }

    .portfolio-panel .bar-skills .skill-level {
      flex: 0 0 auto !important;
      color: #0b4fa2 !important;
      font-size: 11px !important;
      font-weight: 900 !important;
      padding: 4px 8px !important;
      border-radius: 999px !important;
      background: rgba(47, 131, 255, 0.09) !important;
      border: 1px solid rgba(47, 131, 255, 0.10) !important;
    }

    .portfolio-panel .bar-skills .skill-bar {
      position: relative !important;
      height: 9px !important;
      border-radius: 999px !important;
      overflow: hidden !important;
      background: rgba(15, 38, 67, 0.11) !important;
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.10) !important;
    }

    .portfolio-panel .bar-skills .skill-bar span {
      display: block !important;
      width: var(--level) !important;
      height: 100% !important;
      border-radius: inherit !important;
      background:
        linear-gradient(90deg, rgba(47, 131, 255, 0.95), rgba(72, 214, 255, 0.86)) !important;
      box-shadow: 0 0 14px rgba(72, 214, 255, 0.22) !important;
    }

    .portfolio-panel .cert-list li {
      display: block !important;
      margin: 10px 0 13px !important;
      line-height: 1.52 !important;
    }

    .portfolio-panel .cert-list li strong {
      display: block !important;
      margin-bottom: 4px !important;
      width: 100% !important;
    }

    .portfolio-panel .cert-list .cert-desc {
      display: block !important;
      margin-top: 3px !important;
      padding-left: 0 !important;
      color: #516174 !important;
      line-height: 1.55 !important;
    }

    .portfolio-panel .cert-list li::marker {
      color: #0b5aa2 !important;
    }

    .goodday-title {
      display: inline-block !important;
      background: linear-gradient(135deg, #ffffff 12%, #9ee7ff 48%, #63a8ff 82%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
      text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
      transition: filter 240ms ease, transform 240ms ease, text-shadow 240ms ease !important;
      cursor: default !important;
    }

    .goodday-title:hover,
    .goodday-title:focus-visible {
      filter: drop-shadow(0 0 14px rgba(72, 214, 255, 0.42)) saturate(1.18) !important;
      transform: translateY(-1px) scale(1.015) !important;
      text-shadow:
        0 0 18px rgba(158, 231, 255, 0.34),
        0 10px 30px rgba(0, 0, 0, 0.30) !important;
    }

    .goodday-subtitle {
      max-width: 34ch !important;
    }

    .goodday-title {
      line-height: 1.14 !important;
      padding-bottom: 0.12em !important;
      margin-bottom: -0.04em !important;
      overflow: visible !important;
      background-position: center !important;
    }

    .goodday-body {
      overflow: visible !important;
    }

    .goodday-subtitle {
      max-width: 29ch !important;
      font-size: 15.5px !important;
      line-height: 1.55 !important;
    }

    .pen-target {
      width: 150px !important;
      height: 82px !important;
    }

    .pen-target.active {
      display: block !important;
    }

    .pen-target .target-label {
      top: calc(50% + 48px) !important;
      background: rgba(5, 14, 28, 0.82) !important;
      border-color: rgba(72, 214, 255, 0.34) !important;
      color: #eaf8ff !important;
    }

    .feedback-panel {
      width: min(620px, 94vw);
      max-height: min(760px, 92vh);
      border-radius: 30px;
      border: 1px solid rgba(116, 223, 255, 0.20);
      background:
        radial-gradient(300px 190px at 18% 0%, rgba(72, 214, 255, 0.16), transparent 70%),
        radial-gradient(260px 180px at 92% 8%, rgba(47, 131, 255, 0.15), transparent 72%),
        linear-gradient(180deg, rgba(8, 23, 43, 0.98), rgba(3, 10, 22, 0.99));
      box-shadow: 0 34px 95px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255,255,255,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transform: translateY(24px) scale(0.98);
      opacity: 0;
      animation: modalIn 520ms cubic-bezier(.2,.9,.18,1) forwards;
    }

    .feedback-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.13);
      background: rgba(255,255,255,0.035);
    }

    .feedback-title-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
.feedback-title-wrap h3 {
      margin: 0;
      color: #f7fbff;
      font-size: 19px;
      line-height: 1.15;
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .feedback-title-wrap p {
      margin: 3px 0 0;
      color: #a8bed4;
      font-size: 12.5px;
      line-height: 1.35;
    }

    .feedback-close {
      width: 36px;
      height: 36px;
      border-radius: 13px;
      cursor: pointer;
      color: #edf8ff;
      font-size: 22px;
      line-height: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(148, 163, 184, 0.16);
      transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
    }

    .feedback-close:hover {
      transform: translateY(-1px);
      background: rgba(72,214,255,0.11);
      border-color: rgba(72,214,255,0.34);
    }

    .feedback-form {
      padding: 18px 20px 20px;
      overflow: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(72,214,255,0.38) transparent;
    }

    .feedback-chat-area {
      display: grid;
      gap: 12px;
      margin-bottom: 16px;
    }

    .feedback-message {
      display: flex;
      gap: 11px;
      align-items: flex-start;
    }

    .feedback-avatar {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      font-size: 12px;
      font-weight: 950;
      color: #031222;
      background: linear-gradient(135deg, #e7fbff, #54d8ff 52%, #2f83ff);
      box-shadow: 0 10px 24px rgba(47,131,255,0.20);
    }

    .feedback-bubble {
      flex: 1;
      color: #d9e9f8;
      background: rgba(255,255,255,0.065);
      border: 1px solid rgba(148, 163, 184, 0.13);
      border-radius: 18px 18px 18px 6px;
      padding: 12px 14px;
      font-size: 14px;
      line-height: 1.55;
    }

    .feedback-field-label {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: #dceeff;
      font-size: 12px;
      font-weight: 850;
      margin: 12px 0 7px;
    }

    .feedback-field-label span {
      color: #8ea7bf;
      font-weight: 700;
    }

    .feedback-input,
    .feedback-composer textarea {
      width: 100%;
      color: #f6fbff;
      background: rgba(2, 10, 22, 0.52);
      border: 1px solid rgba(148, 163, 184, 0.16);
      outline: none;
      border-radius: 16px;
      padding: 13px 14px;
      font-size: 14px;
      transition: border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
    }

    .feedback-input:focus,
    .feedback-composer textarea:focus {
      border-color: rgba(72,214,255,0.42);
      box-shadow: 0 0 0 3px rgba(72,214,255,0.08);
      background: rgba(3, 12, 26, 0.74);
    }

    .feedback-input::placeholder,
    .feedback-composer textarea::placeholder {
      color: rgba(190, 210, 230, 0.56);
    }

    .feedback-composer {
      position: relative;
    }

    .feedback-composer textarea {
      min-height: 120px;
      max-height: 260px;
      resize: vertical;
      padding-right: 62px;
      line-height: 1.55;
    }

    .feedback-send {
      position: absolute;
      right: 12px;
      bottom: 12px;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      cursor: pointer;
      display: grid;
      place-items: center;
      color: #02101f;
      background: linear-gradient(135deg, #eef9ff, #7bdfff 42%, #2f83ff);
      box-shadow: 0 12px 28px rgba(47,131,255,0.30), inset 0 1px 0 rgba(255,255,255,0.65);
      transition: transform 190ms ease, filter 190ms ease;
    }

    .feedback-send:hover {
      transform: translateY(-2px);
      filter: saturate(1.12);
    }

    .feedback-actions-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 13px;
    }

    .feedback-secondary {
      cursor: pointer;
      min-height: 40px;
      padding: 10px 13px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #eaf8ff;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(148, 163, 184, 0.16);
      font-size: 12.5px;
      font-weight: 850;
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
    }

    .feedback-secondary:hover {
      transform: translateY(-1px);
      background: rgba(72,214,255,0.10);
      border-color: rgba(72,214,255,0.32);
    }

    .feedback-folder-hint,
    .feedback-small-note,
    .feedback-status {
      color: #91a8bd;
      font-size: 12px;
      line-height: 1.45;
    }

    .feedback-small-note {
      margin-top: 12px;
    }

    .feedback-small-note strong {
      color: #cdeeff;
    }

    .feedback-status {
      min-height: 18px;
      margin-top: 10px;
      color: #a9eaff;
      font-weight: 750;
    }

    @media (max-width: 520px) {
      .feedback-panel {
        border-radius: 22px;
        width: calc(100vw - 20px);
      }

      .feedback-topbar,
      .feedback-form {
        padding-left: 15px;
        padding-right: 15px;
      }

      .feedback-title-wrap h3 {
        font-size: 17px;
      }
    }

    .feedback-status.error {
      color: #ffd6d6 !important;
      border-color: rgba(255, 110, 110, 0.32) !important;
      background: rgba(255, 80, 80, 0.08) !important;
    }

    .feedback-status.success {
      color: #dffcff !important;
      border-color: rgba(72, 214, 255, 0.32) !important;
      background: rgba(72, 214, 255, 0.08) !important;
    }

    .feedback-server-note {
      margin: 10px 0 0;
      color: rgba(218, 236, 250, 0.72);
      font-size: 12px;
      line-height: 1.45;
      text-align: center;
    }

    .feedback-title-wrap {
      align-items: center !important;
    }

    .feedback-title-wrap h3 {
      margin: 0 !important;
    }

    .feedback-status.error {
      color: #ffd6d6 !important;
      border-color: rgba(255, 110, 110, 0.32) !important;
      background: rgba(255, 80, 80, 0.08) !important;
    }

    .feedback-status.success {
      color: #dffcff !important;
      border-color: rgba(72, 214, 255, 0.32) !important;
      background: rgba(72, 214, 255, 0.08) !important;
    }

    .feedback-status.error {
      color: #ffd6d6 !important;
      border-color: rgba(255, 110, 110, 0.32) !important;
      background: rgba(255, 80, 80, 0.08) !important;
    }

    .feedback-status.success {
      color: #dffcff !important;
      border-color: rgba(72, 214, 255, 0.32) !important;
      background: rgba(72, 214, 255, 0.08) !important;
    }

    .hud-ui-controls {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      pointer-events: auto;
    }

    .ui-visibility-toggle {
      pointer-events: auto;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 9px 13px 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(129, 212, 255, 0.24);
      background: linear-gradient(135deg, rgba(7, 22, 41, 0.78), rgba(5, 14, 28, 0.66));
      color: #eaf7ff;
      backdrop-filter: blur(16px);
      box-shadow: 0 14px 45px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.08);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 0.01em;
      transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

    .ui-visibility-toggle:hover {
      transform: translateY(-2px);
      border-color: rgba(72, 214, 255, 0.46);
      background: linear-gradient(135deg, rgba(14, 42, 74, 0.86), rgba(6, 18, 34, 0.78));
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30), 0 0 24px rgba(72, 214, 255, 0.14);
    }

    .ui-toggle-light {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: #48d6ff;
      box-shadow: 0 0 18px rgba(72, 214, 255, 0.95);
      transition: background 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
    }

    .ui-visibility-toggle.off .ui-toggle-light {
      background: rgba(148, 163, 184, 0.46);
      box-shadow: 0 0 10px rgba(148, 163, 184, 0.25);
      opacity: 0.78;
    }

    .ui-toggle-label {
      color: #f3fbff;
      white-space: nowrap;
    }

    .ui-toggle-state {
      color: #9ee7ff;
      font-size: 11px;
      min-width: 22px;
      text-align: left;
      white-space: nowrap;
    }

    .ui-visibility-toggle.off .ui-toggle-state {
      color: #a9b7c8;
    }

    @media (max-width: 700px) {
      .hud-top {
        gap: 10px;
      }

      .ui-visibility-toggle {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 11px;
      }

      .ui-toggle-label {
        display: none;
      }

      .ui-toggle-state {
        min-width: auto;
      }
    }

    .target-ring,
    .target-ring::before,
    .target-ring::after {
      display: none !important;
      content: none !important;
    }

    .click-target {
      background: transparent !important;
      box-shadow: none !important;
      filter: none !important;
    }

    .target-label {
      animation: none !important;
    }

    .target-label::after {
      content: none !important;
      display: none !important;
    }

    .click-target .target-label {
      transition:
        opacity 360ms ease,
        visibility 360ms ease,
        transform 360ms ease,
        filter 360ms ease !important;
      will-change: opacity, transform, filter;
    }

    #app.ui-labels-hidden .click-target .target-label,
    body.ui-labels-hidden .click-target .target-label {
      opacity: 0 !important;
      visibility: hidden !important;
      transform: translateX(-50%) translateY(8px) scale(0.96) !important;
      filter: blur(5px) !important;
      pointer-events: none !important;
    }

    #app.ui-labels-hidden .click-target .target-label::before,
    #app.ui-labels-hidden .click-target .target-label::after,
    body.ui-labels-hidden .click-target .target-label::before,
    body.ui-labels-hidden .click-target .target-label::after {
      opacity: 0 !important;
      visibility: hidden !important;
      display: none !important;
    }

    .click-target {
      background: transparent !important;
      box-shadow: none !important;
      filter: none !important;
    }

    .click-target::before,
    .click-target::after {
      content: "";
      position: absolute;
      left: 50%;
      pointer-events: none;
      z-index: 2;
      opacity: 0;
      transform: translateX(-50%);
    }

    .click-target.active::before {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: rgba(245, 253, 255, 0.96);
      box-shadow:
        0 0 8px rgba(255,255,255,0.42),
        0 0 16px rgba(118,226,255,0.34);
      animation: idleClickBeaconDot 2.15s ease-in-out infinite;
    }

    .click-target.active::after {
      width: 1.5px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(
        180deg,
        rgba(245,253,255,0),
        rgba(245,253,255,0.72),
        rgba(118,226,255,0.18),
        rgba(118,226,255,0)
      );
      box-shadow: 0 0 10px rgba(118,226,255,0.18);
      animation: idleClickBeaconGuide 2.15s ease-in-out infinite;
    }

    .file-target.active::before {
      top: 20%;
    }

    .file-target.active::after {
      top: calc(20% + 12px);
    }

    .controller-target.active::before {
      top: 6px;
    }

    .controller-target.active::after {
      top: 18px;
      height: 18px;
    }

    .globe-target.active::before {
      top: -14px;
    }

    .globe-target.active::after {
      top: -2px;
      height: 20px;
    }

    .pen-target.active::before {
      top: 8px;
    }

    .pen-target.active::after {
      top: 20px;
      height: 16px;
    }

    @keyframes idleClickBeaconDot {
      0%, 100% {
        opacity: 0.42;
        transform: translateX(-50%) translateY(0) scale(0.92);
      }
      42% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px) scale(1.08);
      }
      72% {
        opacity: 0.58;
        transform: translateX(-50%) translateY(-2px) scale(0.98);
      }
    }

    @keyframes idleClickBeaconGuide {
      0%, 100% {
        opacity: 0.18;
        transform: translateX(-50%) translateY(3px) scaleY(0.78);
      }
      42% {
        opacity: 0.68;
        transform: translateX(-50%) translateY(-3px) scaleY(1);
      }
      72% {
        opacity: 0.28;
        transform: translateX(-50%) translateY(0) scaleY(0.88);
      }
    }

    .click-target:hover::before,
    .click-target:hover::after,
    .click-target:focus-visible::before,
    .click-target:focus-visible::after {
      animation-duration: 1.35s;
    }

    @media (max-width: 700px) {
      .click-target.active::before {
        width: 6px;
        height: 6px;
      }

      .click-target.active::after {
        height: 19px;
      }
    }

    #introScreen {
      overflow: hidden;
      isolation: isolate;
    }

    #introScreen::before {
      content: "";
      position: absolute;
      inset: -18px;
      z-index: 0;
      pointer-events: none;
      backdrop-filter: blur(2.2px) saturate(0.92) brightness(0.78);
      -webkit-backdrop-filter: blur(2.2px) saturate(0.92) brightness(0.78);
      background:
        radial-gradient(780px 460px at 50% 42%, rgba(15, 35, 58, 0.08), transparent 62%),
        radial-gradient(720px 420px at 18% 18%, rgba(42, 124, 168, 0.055), transparent 70%),
        radial-gradient(720px 460px at 84% 12%, rgba(38, 91, 128, 0.045), transparent 72%),
        linear-gradient(180deg, rgba(2, 7, 15, 0.10), rgba(2, 7, 15, 0.32));
    }

    #introScreen::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 46%, transparent 0%, transparent 48%, rgba(0, 0, 0, 0.18) 75%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(180deg, rgba(4, 12, 23, 0.02), rgba(2, 6, 13, 0.24));
      opacity: 0.86;
    }

    #introScreen .intro-card {
      position: relative;
      z-index: 1;
      width: min(920px, calc(100vw - 44px));
      min-height: min(520px, calc(100vh - 56px));
      border: 1px solid rgba(112, 184, 224, 0.135);
      background:
        radial-gradient(560px 260px at 50% 18%, rgba(63, 151, 192, 0.055), transparent 70%),
        linear-gradient(135deg, rgba(7, 20, 37, 0.47), rgba(2, 8, 18, 0.55));
      box-shadow:
        0 34px 110px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.052),
        inset 0 0 0 1px rgba(80, 180, 230, 0.028);
      backdrop-filter: blur(25px) saturate(104%);
      -webkit-backdrop-filter: blur(25px) saturate(104%);
    }

    #introScreen .intro-card::before {
      background:
        linear-gradient(118deg, transparent 0%, rgba(86, 172, 210, 0.045) 40%, transparent 61%),
        radial-gradient(190px 170px at 18% 20%, rgba(58, 145, 182, 0.070), transparent 72%),
        radial-gradient(260px 210px at 84% 72%, rgba(34, 92, 135, 0.095), transparent 74%);
      filter: blur(8px);
      opacity: 0.38;
      animation-duration: 11s;
    }

    #introScreen .intro-content {
      padding: 38px 26px;
    }

    #introScreen .eyebrow {
      border-color: rgba(96, 188, 224, 0.155);
      background: rgba(6, 20, 38, 0.46);
      color: rgba(194, 226, 240, 0.84);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
    }

    #introScreen .eyebrow .dot {
      background: #39b8d8;
      box-shadow: 0 0 14px rgba(57, 184, 216, 0.42);
    }

    #introScreen .intro-title {
      font-size: clamp(34px, 6.1vw, 74px);
      line-height: 1.06;
      letter-spacing: -0.042em;
      text-shadow:
        0 12px 32px rgba(0, 0, 0, 0.48),
        0 0 22px rgba(52, 126, 162, 0.10);
      margin-bottom: 16px;
    }

    #introScreen .intro-title span {
      background: linear-gradient(135deg, #f0f7ff 10%, #9acfe1 50%, #527fa8 86%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 0 10px rgba(82, 155, 190, 0.11));
    }

    #introScreen .intro-subtitle {
      color: rgba(192, 210, 226, 0.82);
      font-size: clamp(14px, 2vw, 17px);
      max-width: 650px;
      margin-bottom: 30px;
    }

    #introScreen .primary-btn {
      min-width: 198px;
      min-height: 54px;
      color: #dcefff;
      border: 1px solid rgba(102, 190, 230, 0.22);
      background:
        linear-gradient(180deg, rgba(20, 48, 78, 0.88), rgba(5, 17, 32, 0.92));
      box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.30),
        0 0 22px rgba(58, 164, 210, 0.085),
        inset 0 1px 0 rgba(255, 255, 255, 0.075);
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.30);
      filter: saturate(0.88);
    }

    #introScreen .primary-btn::before {
      opacity: 0;
      animation: none;
    }

    #introScreen .primary-btn:hover,
    #introScreen .primary-btn:focus-visible {
      transform: translateY(-2px) scale(1.01);
      border-color: rgba(116, 207, 242, 0.34);
      background:
        linear-gradient(180deg, rgba(23, 58, 92, 0.92), rgba(7, 22, 40, 0.94));
      box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.36),
        0 0 26px rgba(70, 185, 232, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.092);
      filter: saturate(0.96);
    }

    #introScreen .intro-feature-grid {
      margin-top: 26px;
      gap: 12px;
    }

    #introScreen .intro-feature-card {
      border-color: rgba(122, 184, 218, 0.115);
      background:
        linear-gradient(180deg, rgba(4, 14, 28, 0.48), rgba(3, 10, 20, 0.30));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 14px 34px rgba(0,0,0,0.10);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
    }

    #introScreen .intro-feature-index {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      max-width: 100%;
      min-height: 26px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(92, 176, 212, 0.16);
      background: rgba(8, 27, 48, 0.42);
      color: rgba(163, 214, 233, 0.86);
      font-size: 11px;
      line-height: 1;
      letter-spacing: 0.105em;
      text-transform: uppercase;
      font-weight: 900;
      text-shadow: 0 0 12px rgba(72, 174, 210, 0.045);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
    }

    #introScreen .intro-feature-card strong {
      color: rgba(236, 246, 252, 0.90);
      font-size: 14.5px;
      letter-spacing: -0.015em;
    }

    #introScreen .intro-feature-card p {
      color: rgba(183, 207, 224, 0.76);
      font-size: 12.8px;
    }

    @media (max-width: 520px) {
      #introScreen .intro-card {
        width: calc(100vw - 24px);
        border-radius: 30px;
        min-height: auto;
      }

      #introScreen .intro-content {
        padding: 24px 18px 30px;
      }

      #introScreen .intro-title {
        font-size: clamp(32px, 10.5vw, 50px);
      }

      #introScreen .primary-btn {
        min-height: 52px;
        min-width: 184px;
      }
    }

#introScreen .intro-card {
  background:
    linear-gradient(135deg, rgba(7, 17, 32, 0.56), rgba(3, 9, 20, 0.64)),
    radial-gradient(560px 260px at 50% 18%, rgba(68, 175, 220, 0.072), transparent 68%) !important;
  border-color: rgba(120, 180, 255, 0.115) !important;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(210, 235, 255, 0.075),
    inset 0 0 34px rgba(54, 130, 190, 0.028) !important;
  backdrop-filter: blur(22px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(108%) !important;
}

#introScreen .intro-card::before {
  background:
    linear-gradient(180deg, rgba(235, 248, 255, 0.035), rgba(255, 255, 255, 0.000) 34%),
    radial-gradient(180px 150px at 18% 20%, rgba(86, 190, 230, 0.060), transparent 70%),
    radial-gradient(240px 190px at 86% 72%, rgba(70, 132, 210, 0.070), transparent 72%) !important;
  opacity: 0.52 !important;
  filter: blur(0.8px) !important;
}

#introScreen .intro-feature-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(120, 180, 255, 0.105) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.000) 36%),
    rgba(8, 18, 35, 0.45) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.165),
    inset 0 1px 0 rgba(214, 237, 255, 0.060),
    inset 0 0 22px rgba(72, 150, 220, 0.018) !important;
  backdrop-filter: blur(15px) saturate(106%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(106%) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease !important;
}

#introScreen .intro-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(226, 244, 255, 0.045), rgba(226, 244, 255, 0.000) 42%),
    radial-gradient(180px 76px at 50% 0%, rgba(120, 190, 255, 0.055), transparent 72%);
  opacity: 0.78;
}

#introScreen .intro-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(132, 198, 255, 0.155) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.000) 38%),
    rgba(9, 22, 42, 0.50) !important;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.20),
    0 0 22px rgba(72, 150, 220, 0.052),
    inset 0 1px 0 rgba(225, 244, 255, 0.085),
    inset 0 0 26px rgba(72, 150, 220, 0.026) !important;
}

#introScreen .intro-feature-index {
  color: rgba(226, 242, 255, 0.92) !important;
  text-shadow: 0 0 16px rgba(80, 170, 220, 0.10) !important;
}

#introScreen .intro-feature-card strong {
  color: rgba(238, 248, 255, 0.94) !important;
}

#introScreen .intro-feature-card p {
  color: rgba(220, 235, 255, 0.72) !important;
}

#introScreen .intro-feature-card > * {
  position: relative;
  z-index: 1;
}

#introScreen .intro-feature-index {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-height: 30px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  color: rgba(220, 235, 255, 0.92) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.000)),
    rgba(80, 140, 255, 0.080) !important;
  border: 1px solid rgba(120, 180, 255, 0.18) !important;
  box-shadow:
    inset 0 0 8px rgba(120, 180, 255, 0.080),
    inset 0 1px 0 rgba(235, 248, 255, 0.085),
    0 8px 22px rgba(0, 0, 0, 0.16),
    0 0 18px rgba(70, 150, 230, 0.035) !important;
  text-shadow: 0 0 10px rgba(120, 190, 255, 0.18) !important;
  backdrop-filter: blur(10px) saturate(112%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(112%) !important;
}

#introScreen .intro-feature-card:hover .intro-feature-index {
  color: rgba(236, 248, 255, 0.96) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.050), rgba(255, 255, 255, 0.000)),
    rgba(90, 155, 255, 0.105) !important;
  border-color: rgba(138, 200, 255, 0.24) !important;
  box-shadow:
    inset 0 0 10px rgba(120, 180, 255, 0.115),
    inset 0 1px 0 rgba(240, 250, 255, 0.105),
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(85, 170, 240, 0.055) !important;
}

#introScreen .intro-feature-card p {
  color: rgba(220, 235, 255, 0.76) !important;
}

#introScreen .intro-card {
  border-color: rgba(120, 180, 255, 0.078) !important;
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(210, 235, 255, 0.052),
    inset 0 0 26px rgba(54, 130, 190, 0.018) !important;
}

#introScreen .intro-card::before {
  opacity: 0.42 !important;
}

#introScreen .intro-card:hover {
  border-color: rgba(120, 180, 255, 0.088) !important;
}

.hint-chip,
.mobile-warning,
.desktop-note {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#hintChip {
  display: none !important;
  visibility: hidden !important;
}

#introScreen + .floating-toast,
.mobile-warning,
.hint-chip,
.desktop-note {
  display: none !important;
}

@media (max-width: 700px) {
  #introScreen {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    align-items: flex-start !important;
    place-items: start center !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    padding: max(12px, env(safe-area-inset-top)) 12px calc(178px + env(safe-area-inset-bottom)) !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
    touch-action: pan-y !important;
  }

  #introScreen .intro-card {
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 12px 0 calc(150px + env(safe-area-inset-bottom)) !important;
  }

  #introScreen .intro-content {
    padding-bottom: 52px !important;
  }

  #introScreen .intro-feature-grid {
    padding-bottom: 74px !important;
  }

  #toast,
  .floating-toast,
  .hint-chip,
  .mobile-warning,
  .desktop-note {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.hint-chip,
.mobile-warning,
.desktop-note {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 700px) {
  #introScreen {
    padding: max(12px, env(safe-area-inset-top)) 12px calc(64px + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  #introScreen .intro-card {
    margin: 12px 0 calc(28px + env(safe-area-inset-bottom)) !important;
  }

  #introScreen .intro-content {
    padding-bottom: 28px !important;
  }

  #introScreen .intro-feature-grid {
    padding-bottom: 14px !important;
  }
}

@media (max-width: 700px) {
  #introScreen {
    padding: max(12px, env(safe-area-inset-top)) 12px calc(64px + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  #introScreen .intro-card {
    margin-bottom: calc(28px + env(safe-area-inset-bottom)) !important;
  }

  #introScreen .intro-feature-grid {
    padding-bottom: 14px !important;
  }

  #toast,
  .floating-toast,
  .hint-chip,
  .mobile-warning,
  .desktop-note {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

#introScreen {
  background: transparent !important;
}

#introScreen::before {
  backdrop-filter: blur(1.4px) saturate(0.88) brightness(0.74) !important;
  -webkit-backdrop-filter: blur(1.4px) saturate(0.88) brightness(0.74) !important;
  background:
    radial-gradient(900px 520px at 50% 44%, rgba(18, 30, 46, 0.10), transparent 68%),
    linear-gradient(180deg, rgba(2, 7, 14, 0.16), rgba(2, 6, 12, 0.36)) !important;
}

#introScreen::after {
  background:
    radial-gradient(circle at 50% 48%, transparent 0%, transparent 54%, rgba(0, 0, 0, 0.22) 82%, rgba(0, 0, 0, 0.50) 100%),
    linear-gradient(180deg, rgba(5, 12, 22, 0.04), rgba(2, 6, 13, 0.28)) !important;
  opacity: 0.78 !important;
}

#introScreen .intro-card {
  border-color: rgba(255, 255, 255, 0.052) !important;
  background:
    linear-gradient(180deg, rgba(8, 14, 25, 0.54), rgba(3, 8, 17, 0.62)) !important;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.038),
    inset 0 0 0 1px rgba(120, 170, 210, 0.010) !important;
  backdrop-filter: blur(22px) saturate(92%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(92%) !important;
}

#introScreen .intro-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.000) 38%),
    radial-gradient(260px 180px at 52% 0%, rgba(86, 160, 190, 0.032), transparent 72%) !important;
  filter: blur(0.6px) !important;
  opacity: 0.30 !important;
  animation: none !important;
}

#introScreen .eyebrow {
  min-height: 32px !important;
  padding: 7px 18px !important;
  border-color: rgba(255, 255, 255, 0.060) !important;
  background: rgba(12, 18, 30, 0.42) !important;
  color: rgba(206, 220, 232, 0.78) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.030),
    0 10px 28px rgba(0, 0, 0, 0.10) !important;
  letter-spacing: 0.125em !important;
}

#introScreen .eyebrow .dot {
  background: rgba(96, 205, 224, 0.90) !important;
  box-shadow: 0 0 10px rgba(96, 205, 224, 0.20) !important;
}

#introScreen .intro-title {
  text-shadow:
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 0 12px rgba(80, 140, 170, 0.045) !important;
  filter: none !important;
}

#introScreen .intro-title span {
  background: linear-gradient(135deg, #eef4f8 8%, #a9c4d2 54%, #6e8ea4 92%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  filter: none !important;
}

#introScreen .intro-subtitle {
  color: rgba(198, 211, 222, 0.70) !important;
}

#introScreen .primary-btn {
  min-height: 48px !important;
  min-width: 184px !important;
  padding: 0 24px !important;
  border-radius: 22px !important;
  color: rgba(230, 240, 248, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.070) !important;
  background:
    linear-gradient(180deg, rgba(18, 28, 44, 0.72), rgba(7, 13, 24, 0.76)) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.040) !important;
  text-shadow: none !important;
  filter: saturate(0.72) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease !important;
}

#introScreen .primary-btn::before {
  opacity: 0 !important;
  animation: none !important;
}

#introScreen .primary-btn:hover,
#introScreen .primary-btn:focus-visible {
  transform: translateY(-2px) !important;
  border-color: rgba(112, 210, 230, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(20, 34, 52, 0.78), rgba(8, 15, 27, 0.82)) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.30),
    0 0 18px rgba(80, 180, 210, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.050) !important;
}

#introScreen .intro-feature-card {
  border-color: rgba(255, 255, 255, 0.052) !important;
  background:
    linear-gradient(180deg, rgba(15, 20, 35, 0.46), rgba(6, 11, 21, 0.42)) !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.026) !important;
  backdrop-filter: blur(13px) saturate(90%) !important;
  -webkit-backdrop-filter: blur(13px) saturate(90%) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease !important;
}

#introScreen .intro-feature-card::before {
  opacity: 0.22 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.020), rgba(255, 255, 255, 0.000) 42%) !important;
}

#introScreen .intro-feature-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(120, 215, 230, 0.110) !important;
  background:
    linear-gradient(180deg, rgba(17, 24, 40, 0.52), rgba(7, 13, 24, 0.46)) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.036),
    0 0 16px rgba(80, 180, 210, 0.030) !important;
}

#introScreen .intro-feature-index {
  min-height: 24px !important;
  padding: 5px 10px !important;
  border-radius: 12px !important;
  color: rgba(214, 226, 235, 0.84) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em !important;
  text-transform: none !important;
  border-color: rgba(255, 255, 255, 0.055) !important;
  background: rgba(18, 25, 40, 0.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.032),
    0 8px 20px rgba(0, 0, 0, 0.10) !important;
  text-shadow: none !important;
  backdrop-filter: blur(10px) saturate(88%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(88%) !important;
}

#introScreen .intro-feature-card:hover .intro-feature-index {
  color: rgba(230, 240, 248, 0.90) !important;
  border-color: rgba(118, 210, 230, 0.13) !important;
  background: rgba(20, 30, 46, 0.50) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.040),
    0 8px 22px rgba(0, 0, 0, 0.12) !important;
}

#introScreen .intro-feature-card strong {
  color: rgba(238, 244, 248, 0.90) !important;
  font-weight: 760 !important;
  letter-spacing: -0.018em !important;
}

#introScreen .intro-feature-card p {
  color: rgba(196, 209, 220, 0.68) !important;
}

@media (max-width: 520px) {
  #introScreen .primary-btn {
    min-height: 48px !important;
  }

  #introScreen .intro-feature-index {
    font-size: 11px !important;
    min-height: 23px !important;
  }
}

#introScreen .intro-feature-card {
  transform: translateY(0) scale(1) !important;
  will-change: transform, border-color, background, box-shadow !important;
}

#introScreen .intro-feature-card:hover,
#introScreen .intro-feature-card:focus-within {
  transform: translateY(-4px) scale(1.006) !important;
  border-color: rgba(122, 206, 226, 0.145) !important;
  background:
    linear-gradient(180deg, rgba(18, 28, 44, 0.56), rgba(8, 14, 26, 0.50)) !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(70, 160, 205, 0.040),
    inset 0 1px 0 rgba(255, 255, 255, 0.044) !important;
}

#introScreen .intro-feature-card:hover::before,
#introScreen .intro-feature-card:focus-within::before {
  opacity: 0.34 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.000) 44%),
    radial-gradient(180px 90px at 50% 0%, rgba(82, 170, 205, 0.040), transparent 72%) !important;
}

#introScreen .intro-feature-card:hover strong,
#introScreen .intro-feature-card:focus-within strong {
  color: rgba(244, 249, 252, 0.93) !important;
}

#introScreen .intro-feature-card:hover p,
#introScreen .intro-feature-card:focus-within p {
  color: rgba(206, 220, 230, 0.72) !important;
}

#introScreen .intro-feature-card:hover .intro-feature-index,
#introScreen .intro-feature-card:focus-within .intro-feature-index {
  transform: translateY(-1px) !important;
  border-color: rgba(120, 210, 230, 0.145) !important;
  background: rgba(20, 31, 48, 0.54) !important;
}

#introScreen .intro-card {
  background:
    linear-gradient(180deg, rgba(5, 10, 19, 0.66), rgba(3, 7, 15, 0.72)) !important;
  border-color: rgba(255, 255, 255, 0.060) !important;
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.032),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18) !important;
}

#introScreen .intro-card::before {
  opacity: 0.34 !important;
  background:
    linear-gradient(180deg, rgba(135, 205, 230, 0.026), rgba(255, 255, 255, 0.000) 34%),
    radial-gradient(300px 140px at 50% 0%, rgba(85, 170, 205, 0.038), transparent 74%) !important;
}

#introScreen .primary-btn {
  color: rgba(244, 249, 252, 0.92) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(0, 0, 0, 0.075)),
    rgba(22, 28, 45, 0.74) !important;
  border: 1px solid rgba(255, 255, 255, 0.088) !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(150, 215, 235, 0.050),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22) !important;
  font-weight: 780 !important;
  text-shadow: none !important;
}

#introScreen .primary-btn:hover,
#introScreen .primary-btn:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(0, 0, 0, 0.060)),
    rgba(26, 34, 54, 0.80) !important;
  border-color: rgba(120, 180, 255, 0.18) !important;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(145, 218, 238, 0.080),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18) !important;
}

#introScreen .intro-feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.020), rgba(0, 0, 0, 0.070)),
    rgba(18, 24, 39, 0.64) !important;
  border-color: rgba(255, 255, 255, 0.078) !important;
  box-shadow:
    0 15px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(120, 205, 230, 0.046),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16) !important;
}

#introScreen .intro-feature-card::before {
  opacity: 0.40 !important;
  background:
    linear-gradient(180deg, rgba(120, 205, 230, 0.036), rgba(255, 255, 255, 0.000) 32%) !important;
}

#introScreen .intro-feature-card:hover,
#introScreen .intro-feature-card:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(0, 0, 0, 0.055)),
    rgba(22, 30, 48, 0.70) !important;
  border-color: rgba(120, 180, 255, 0.18) !important;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(130, 214, 235, 0.070),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14) !important;
}

#introScreen .intro-feature-index {
  color: rgba(255, 255, 255, 0.84) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.020), rgba(0, 0, 0, 0.065)),
    rgba(24, 31, 49, 0.76) !important;
  border: 1px solid rgba(255, 255, 255, 0.086) !important;
  box-shadow:
    inset 0 1px 0 rgba(135, 215, 235, 0.045),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.14) !important;
  font-weight: 680 !important;
  letter-spacing: 0.010em !important;
  text-shadow: none !important;
  backdrop-filter: blur(7px) saturate(92%) !important;
  -webkit-backdrop-filter: blur(7px) saturate(92%) !important;
}

#introScreen .intro-feature-card:hover .intro-feature-index,
#introScreen .intro-feature-card:focus-within .intro-feature-index {
  color: rgba(255, 255, 255, 0.90) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(0, 0, 0, 0.050)),
    rgba(28, 37, 58, 0.82) !important;
  border-color: rgba(120, 180, 255, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(135, 215, 235, 0.070),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 9px 22px rgba(0, 0, 0, 0.16) !important;
}

#introScreen .intro-feature-card strong {
  color: rgba(246, 250, 253, 0.94) !important;
}

#introScreen .intro-feature-card p {
  color: rgba(210, 222, 232, 0.74) !important;
}

#introScreen .eyebrow {
  color: rgba(232, 240, 246, 0.82) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.055)),
    rgba(22, 28, 45, 0.62) !important;
  border-color: rgba(255, 255, 255, 0.080) !important;
}

/* === Custom update: portfolio-themed laptop loader + mobile intro fit === */
.loader {
  background:
    radial-gradient(760px 430px at 50% 24%, rgba(72, 214, 255, 0.14), transparent 70%),
    radial-gradient(560px 360px at 50% 72%, rgba(47, 131, 255, 0.12), transparent 72%),
    linear-gradient(180deg, #020711 0%, #050b17 58%, #020611 100%) !important;
}

.portfolio-loader-box {
  width: min(420px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
  color: #eaf8ff;
  transform: translateZ(0);
}

.loader-ring {
  display: none !important;
}

.loader-laptop {
  position: relative;
  width: min(280px, 72vw);
  height: 190px;
  perspective: 900px;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.46));
  animation: loaderLaptopFloat 2.8s ease-in-out infinite;
}

.loader-laptop::before,
.loader-laptop::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.loader-laptop::before {
  inset: 24px 20px 46px;
  border: 1px solid rgba(72, 214, 255, 0.12);
  transform: rotateX(64deg) rotateZ(-8deg);
  box-shadow: 0 0 26px rgba(72, 214, 255, 0.12), inset 0 0 22px rgba(72, 214, 255, 0.08);
  animation: loaderOrbit 3.5s linear infinite;
}

.loader-laptop::after {
  left: 50%;
  bottom: 18px;
  width: 74%;
  height: 20px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(72, 214, 255, 0.18), transparent 68%);
  filter: blur(10px);
}

.loader-laptop-lid {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 8px;
  height: 132px;
  border-radius: 22px 22px 14px 14px;
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(164, 220, 255, 0.28), rgba(20, 45, 75, 0.92) 32%, rgba(3, 10, 22, 0.98)),
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 36%);
  border: 1px solid rgba(148, 215, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -14px 22px rgba(0,0,0,0.32),
    0 0 40px rgba(47, 131, 255, 0.14);
  transform-origin: 50% 100%;
  animation: loaderLidWake 2.8s ease-in-out infinite;
}

.loader-laptop-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px 15px 10px 10px;
  background:
    radial-gradient(120px 72px at 50% 38%, rgba(72, 214, 255, 0.20), transparent 66%),
    radial-gradient(120px 72px at 72% 68%, rgba(45, 245, 200, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.98), rgba(3, 9, 20, 0.98));
  border: 1px solid rgba(156, 225, 255, 0.17);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.loader-laptop-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: translateY(-8px);
  animation: loaderGridMove 2.2s linear infinite;
}

.loader-laptop-screen::after {
  content: "";
  position: absolute;
  inset: -45% -18%;
  background: linear-gradient(110deg, transparent 32%, rgba(255,255,255,0.14) 48%, transparent 62%);
  transform: translateX(-55%) rotate(8deg);
  animation: loaderScreenSweep 2.4s ease-in-out infinite;
}

.loader-scene-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 136px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(72, 214, 255, 0.23), transparent 70%);
  filter: blur(6px);
}

.loader-laptop-logo {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  filter: drop-shadow(0 0 18px rgba(72, 214, 255, 0.42));
  animation: loaderLogoPulse 1.65s ease-in-out infinite;
}

.loader-object {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.loader-object-file {
  left: 38px;
  bottom: 24px;
  width: 28px;
  height: 38px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, #fff8e8, #d9c79d);
  box-shadow: 0 8px 16px rgba(0,0,0,0.24), 0 0 18px rgba(215,180,106,0.18);
  animation: loaderObjectBob 1.9s ease-in-out infinite;
}

.loader-object-file::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 10px solid rgba(120, 92, 48, 0.22);
  border-left: 10px solid transparent;
}

.loader-object-cube {
  right: 40px;
  bottom: 32px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(72,214,255,0.92), rgba(47,131,255,0.46));
  box-shadow: 0 0 24px rgba(72, 214, 255, 0.28);
  transform: rotate(12deg);
  animation: loaderCubeTurn 1.8s ease-in-out infinite;
}

.loader-object-orbit {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2df5c8;
  box-shadow: 0 0 14px rgba(45,245,200,0.8);
  transform-origin: -54px -8px;
  animation: loaderDotOrbit 2.25s linear infinite;
}

.loader-laptop-base {
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 36px;
  height: 42px;
  border-radius: 12px 12px 26px 26px;
  background:
    linear-gradient(180deg, rgba(188, 226, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(24, 54, 84, 0.96), rgba(5, 14, 28, 0.98));
  border: 1px solid rgba(148, 215, 255, 0.20);
  transform: rotateX(58deg);
  transform-origin: 50% 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 34px rgba(0,0,0,0.32);
}

.loader-laptop-base span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 62px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(216, 240, 255, 0.14);
  border: 1px solid rgba(255,255,255,0.08);
}

.loader-copy {
  display: grid;
  gap: 7px;
}

.loader-copy .loader-kicker {
  color: rgba(158, 231, 255, 0.78);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
}

.loader-copy strong {
  color: #f5fbff;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.loader-copy p {
  color: rgba(189, 211, 230, 0.78);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 34ch;
}

.loader-progress {
  width: min(300px, 76vw);
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(148, 215, 255, 0.14);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(72,214,255,0.12), rgba(72,214,255,0.95), rgba(45,245,200,0.70));
  box-shadow: 0 0 22px rgba(72,214,255,0.35);
  animation: loaderProgress 1.25s ease-in-out infinite;
}

@keyframes loaderLaptopFloat {
  0%, 100% { transform: translateY(0) rotateZ(-0.4deg); }
  50% { transform: translateY(-8px) rotateZ(0.4deg); }
}

@keyframes loaderLidWake {
  0%, 100% { transform: rotateX(0deg); }
  50% { transform: rotateX(-3.5deg); }
}

@keyframes loaderLogoPulse {
  0%, 100% { opacity: 0.82; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes loaderGridMove {
  to { transform: translateY(14px); }
}

@keyframes loaderScreenSweep {
  0%, 42% { transform: translateX(-58%) rotate(8deg); }
  78%, 100% { transform: translateX(58%) rotate(8deg); }
}

@keyframes loaderObjectBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

@keyframes loaderCubeTurn {
  0%, 100% { transform: translateY(0) rotate(12deg) scale(1); }
  50% { transform: translateY(-7px) rotate(48deg) scale(1.06); }
}

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

@keyframes loaderOrbit {
  to { transform: rotateX(64deg) rotateZ(352deg); }
}

@keyframes loaderProgress {
  0% { transform: translateX(-115%); }
  58%, 100% { transform: translateX(245%); }
}

@media (max-width: 880px) {
  #introScreen.screen {
    align-items: center !important;
    place-items: center !important;
    padding: max(10px, env(safe-area-inset-top)) 12px max(10px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    touch-action: manipulation;
  }

  #introScreen .intro-card {
    width: min(96vw, 720px) !important;
    height: min(calc(100dvh - 20px), 56.25vw) !important;
    min-height: 0 !important;
    max-height: calc(100dvh - 20px) !important;
    aspect-ratio: 16 / 9;
    margin: 0 !important;
    border-radius: clamp(20px, 4vw, 30px) !important;
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
  }

  #introScreen .intro-content {
    width: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
    padding: clamp(14px, 2.8vw, 24px) clamp(14px, 3vw, 24px) !important;
    display: grid !important;
    justify-items: center !important;
  }

  #introScreen .eyebrow {
    margin-bottom: clamp(8px, 1.6vw, 14px) !important;
    padding: 7px 10px !important;
    font-size: clamp(9px, 1.7vw, 11px) !important;
  }

  #introScreen .intro-title {
    margin-bottom: clamp(7px, 1.4vw, 12px) !important;
    font-size: clamp(26px, 7.6vw, 44px) !important;
    line-height: 1.02 !important;
    text-wrap: balance;
  }

  #introScreen .intro-subtitle {
    max-width: 62ch !important;
    margin-bottom: clamp(10px, 1.9vw, 16px) !important;
    font-size: clamp(11px, 2.15vw, 14px) !important;
    line-height: 1.38 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
  }

  #introScreen .primary-btn {
    min-height: clamp(40px, 7vw, 48px) !important;
    min-width: clamp(156px, 36vw, 184px) !important;
    padding: 0 18px !important;
    border-radius: 18px !important;
    font-size: clamp(12px, 2.35vw, 14px) !important;
  }

  #introScreen .intro-feature-grid {
    width: min(100%, 560px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(8px, 1.8vw, 12px) !important;
    margin-top: clamp(12px, 2.2vw, 18px) !important;
  }

  #introScreen .intro-feature-card:nth-child(3) {
    display: none !important;
  }

  #introScreen .intro-feature-card {
    min-height: 0 !important;
    padding: clamp(10px, 2.2vw, 14px) !important;
    gap: clamp(5px, 1.1vw, 8px) !important;
    border-radius: clamp(16px, 3vw, 22px) !important;
  }

  #introScreen .intro-feature-index {
    min-height: 22px !important;
    padding: 5px 8px !important;
    font-size: clamp(9px, 1.85vw, 11px) !important;
  }

  #introScreen .intro-feature-card strong {
    font-size: clamp(12px, 2.2vw, 14px) !important;
    line-height: 1.15 !important;
  }

  #introScreen .intro-feature-card p {
    font-size: clamp(10.5px, 2vw, 12px) !important;
    line-height: 1.32 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
  }
}

@media (max-width: 520px) and (orientation: portrait) {
  #introScreen .intro-card {
    width: calc(100vw - 18px) !important;
    height: calc(100dvh - 18px) !important;
    aspect-ratio: auto !important;
  }

  #introScreen .intro-content {
    padding: clamp(14px, 4vw, 20px) !important;
  }

  #introScreen .intro-title {
    font-size: clamp(30px, 10.4vw, 44px) !important;
  }

  #introScreen .intro-subtitle {
    -webkit-line-clamp: 4;
    font-size: clamp(11.5px, 3.45vw, 13px) !important;
  }

  #introScreen .intro-feature-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  #introScreen .intro-feature-card {
    padding: 10px !important;
  }

  #introScreen .intro-feature-card p {
    -webkit-line-clamp: 3;
    font-size: clamp(10px, 3vw, 11.5px) !important;
  }
}

@media (max-width: 520px) and (max-height: 740px) {
  #introScreen .intro-title {
    font-size: clamp(26px, 9.2vw, 38px) !important;
  }

  #introScreen .intro-subtitle {
    -webkit-line-clamp: 3;
    line-height: 1.32 !important;
  }

  #introScreen .intro-feature-card p {
    -webkit-line-clamp: 2;
  }
}

/* === Refinement: cleaner loader + full-height mobile home composition === */
.loader {
  background:
    radial-gradient(520px 300px at 50% 32%, rgba(72, 214, 255, 0.105), transparent 72%),
    linear-gradient(180deg, #020711 0%, #030814 100%) !important;
}

.compact-loader-box {
  width: min(250px, calc(100vw - 48px)) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 14px !important;
  color: #eef9ff !important;
  text-align: center !important;
}

.compact-loader-box .loader-ring,
.compact-loader-box .loader-scene-glow,
.compact-loader-box .loader-object,
.compact-loader-box .loader-progress,
.compact-loader-box .loader-kicker,
.compact-loader-box .loader-copy p {
  display: none !important;
}

.compact-loader-box .loader-laptop {
  position: relative !important;
  width: 132px !important;
  height: 92px !important;
  perspective: 700px !important;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34)) !important;
  animation: refinedLaptopFloat 2.4s ease-in-out infinite !important;
}

.compact-loader-box .loader-laptop::before {
  display: none !important;
  content: none !important;
}

.compact-loader-box .loader-laptop::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 10px !important;
  width: 90px !important;
  height: 12px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(72, 214, 255, 0.18), transparent 70%) !important;
  filter: blur(7px) !important;
}

.compact-loader-box .loader-laptop-lid {
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  top: 4px !important;
  height: 62px !important;
  padding: 5px !important;
  border-radius: 13px 13px 8px 8px !important;
  background:
    linear-gradient(145deg, rgba(128, 196, 235, 0.18), rgba(12, 28, 48, 0.96) 38%, rgba(4, 10, 20, 0.98)) !important;
  border: 1px solid rgba(150, 218, 255, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -8px 14px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(72, 214, 255, 0.08) !important;
  transform: none !important;
  animation: none !important;
}

.compact-loader-box .loader-laptop-screen {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 9px 9px 6px 6px !important;
  background:
    radial-gradient(circle at 50% 44%, rgba(72, 214, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(6, 18, 35, 0.98), rgba(2, 7, 16, 0.98)) !important;
  border: 1px solid rgba(156, 225, 255, 0.12) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035) !important;
}

.compact-loader-box .loader-laptop-screen::before {
  display: none !important;
  content: none !important;
}

.compact-loader-box .loader-laptop-screen::after {
  content: "" !important;
  position: absolute !important;
  inset: -55% -20% !important;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.10) 50%, transparent 60%) !important;
  transform: translateX(-54%) rotate(8deg) !important;
  animation: refinedScreenSweep 2.6s ease-in-out infinite !important;
}

.compact-loader-box .loader-laptop-logo {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 2 !important;
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 6px !important;
  filter: drop-shadow(0 0 8px rgba(72, 214, 255, 0.28)) !important;
  opacity: 0.92 !important;
  animation: refinedLogoPulse 1.9s ease-in-out infinite !important;
}

.compact-loader-box .loader-laptop-base {
  position: absolute !important;
  left: 3px !important;
  right: 3px !important;
  bottom: 18px !important;
  height: 24px !important;
  border-radius: 7px 7px 16px 16px !important;
  background:
    linear-gradient(180deg, rgba(184, 226, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(18, 40, 64, 0.98), rgba(4, 12, 24, 0.98)) !important;
  border: 1px solid rgba(148, 215, 255, 0.15) !important;
  transform: rotateX(60deg) !important;
  transform-origin: 50% 0 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 18px rgba(0,0,0,0.25) !important;
}

.compact-loader-box .loader-laptop-base span {
  position: absolute !important;
  left: 50% !important;
  top: 7px !important;
  width: 36px !important;
  height: 6px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: rgba(216, 240, 255, 0.11) !important;
  border: 1px solid rgba(255,255,255,0.055) !important;
}

.compact-loader-box .loader-copy {
  display: block !important;
}

.compact-loader-box .loader-copy strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #f4fbff !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: -0.015em !important;
  text-shadow: 0 0 18px rgba(72, 214, 255, 0.10) !important;
}

.compact-loader-box .loader-copy strong::after {
  content: "";
  width: 1.2em;
  text-align: left;
  animation: refinedLoadingDots 1.25s steps(4, end) infinite;
}

@keyframes refinedLaptopFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes refinedScreenSweep {
  0%, 42% { transform: translateX(-54%) rotate(8deg); }
  78%, 100% { transform: translateX(54%) rotate(8deg); }
}

@keyframes refinedLogoPulse {
  0%, 100% { opacity: 0.82; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes refinedLoadingDots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75%, 100% { content: "..."; }
}

@media (max-width: 880px) {
  #introScreen.screen {
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    -webkit-overflow-scrolling: auto !important;
    overscroll-behavior: none !important;
    touch-action: manipulation !important;
  }

  #introScreen .intro-card {
    width: min(100%, 720px) !important;
    height: calc(100svh - max(16px, env(safe-area-inset-top)) - max(8px, env(safe-area-inset-bottom))) !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    border-radius: clamp(22px, 5vw, 30px) !important;
  }

  #introScreen .intro-content {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(8px, 1.6svh, 16px) !important;
    padding: clamp(18px, 4svh, 34px) clamp(16px, 4vw, 28px) !important;
  }

  #introScreen .eyebrow,
  #introScreen .intro-title,
  #introScreen .intro-subtitle,
  #introScreen .primary-btn,
  #introScreen .intro-feature-grid {
    flex: 0 0 auto !important;
  }

  #introScreen .eyebrow {
    margin: 0 !important;
    padding: 7px 10px !important;
    font-size: clamp(8px, 2vw, 11px) !important;
    max-width: 100% !important;
    white-space: nowrap !important;
  }

  #introScreen .intro-title {
    margin: 0 !important;
    font-size: clamp(30px, 10.2vw, 52px) !important;
    line-height: 1.03 !important;
    text-wrap: balance !important;
  }

  #introScreen .intro-subtitle {
    margin: 0 !important;
    max-width: 58ch !important;
    font-size: clamp(11.5px, 3.35vw, 14px) !important;
    line-height: 1.38 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #introScreen .primary-btn {
    margin: 0 !important;
    min-height: clamp(40px, 6svh, 52px) !important;
    min-width: clamp(168px, 46vw, 210px) !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    font-size: clamp(12px, 3.2vw, 15px) !important;
  }

  #introScreen .intro-feature-grid {
    width: min(100%, 560px) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(8px, 2.2vw, 12px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #introScreen .intro-feature-card:nth-child(3) {
    display: none !important;
  }

  #introScreen .intro-feature-card {
    min-height: 0 !important;
    padding: clamp(10px, 3.1vw, 14px) !important;
    gap: clamp(5px, 1.3vw, 8px) !important;
    border-radius: clamp(16px, 4vw, 22px) !important;
  }

  #introScreen .intro-feature-index {
    min-height: 22px !important;
    padding: 5px 8px !important;
    font-size: clamp(8px, 2.15vw, 11px) !important;
  }

  #introScreen .intro-feature-card strong {
    font-size: clamp(12px, 3.1vw, 14px) !important;
    line-height: 1.16 !important;
  }

  #introScreen .intro-feature-card p {
    font-size: clamp(10px, 2.75vw, 12px) !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

@media (max-width: 880px) and (orientation: landscape) {
  #introScreen.screen {
    padding: 8px !important;
  }

  #introScreen .intro-card {
    height: calc(100svh - 16px) !important;
    width: min(calc((100svh - 16px) * 1.7778), calc(100vw - 16px)) !important;
  }

  #introScreen .intro-content {
    padding: clamp(10px, 3svh, 18px) clamp(14px, 4vw, 28px) !important;
    gap: clamp(5px, 1.4svh, 10px) !important;
  }

  #introScreen .intro-title {
    font-size: clamp(24px, 8svh, 40px) !important;
  }

  #introScreen .intro-subtitle {
    -webkit-line-clamp: 2 !important;
    font-size: clamp(10.5px, 2.9svh, 13px) !important;
  }

  #introScreen .primary-btn {
    min-height: clamp(34px, 9svh, 44px) !important;
  }

  #introScreen .intro-feature-card p {
    -webkit-line-clamp: 2 !important;
  }
}

@media (max-width: 520px) and (orientation: portrait) {
  #introScreen.screen {
    padding: max(7px, env(safe-area-inset-top)) 7px max(7px, env(safe-area-inset-bottom)) !important;
  }

  #introScreen .intro-card {
    width: calc(100vw - 14px) !important;
    height: calc(100svh - max(14px, env(safe-area-inset-top)) - max(7px, env(safe-area-inset-bottom))) !important;
  }

  #introScreen .intro-content {
    padding: clamp(18px, 4.6svh, 32px) clamp(14px, 4.2vw, 22px) !important;
  }
}

@media (max-width: 520px) and (max-height: 740px) {
  #introScreen .intro-content {
    gap: 7px !important;
    padding: 14px 12px !important;
  }

  #introScreen .eyebrow {
    padding: 6px 9px !important;
    font-size: 8px !important;
  }

  #introScreen .intro-title {
    font-size: clamp(25px, 8.8vw, 36px) !important;
  }

  #introScreen .intro-subtitle {
    -webkit-line-clamp: 3 !important;
    font-size: clamp(10px, 3vw, 12px) !important;
    line-height: 1.3 !important;
  }

  #introScreen .primary-btn {
    min-height: 38px !important;
  }

  #introScreen .intro-feature-card {
    padding: 9px !important;
  }

  #introScreen .intro-feature-card p {
    -webkit-line-clamp: 2 !important;
  }
}


/* === Final fix: Google-style shape loader + mobile-native intro cards === */
.loader {
  display: grid !important;
  place-items: center !important;
  background:
    radial-gradient(520px 280px at 50% 42%, rgba(72, 214, 255, 0.11), transparent 72%),
    linear-gradient(180deg, #020711 0%, #030914 100%) !important;
}

.shape-loader-box {
  width: min(260px, calc(100vw - 48px)) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 20px !important;
  text-align: center !important;
  color: #eaf8ff !important;
}

.shape-loader {
  width: 76px !important;
  height: 76px !important;
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(2, 18px) !important;
  grid-template-rows: repeat(2, 18px) !important;
  gap: 10px !important;
  place-content: center !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(148, 215, 255, 0.10) !important;
  box-shadow:
    0 20px 48px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 32px rgba(72, 214, 255, 0.10) !important;
  animation: shapeLoaderBreathe 2.4s ease-in-out infinite !important;
}

.shape-loader span {
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: block !important;
  background: #48d6ff !important;
  box-shadow: 0 0 18px rgba(72, 214, 255, 0.35) !important;
  animation: shapeLoaderMorph 1.8s ease-in-out infinite !important;
  transform-origin: center !important;
}

.shape-loader span:nth-child(1) {
  background: #48d6ff !important;
  animation-delay: 0s !important;
}

.shape-loader span:nth-child(2) {
  background: #7bb6ff !important;
  animation-delay: .15s !important;
}

.shape-loader span:nth-child(3) {
  background: #2df5c8 !important;
  animation-delay: .30s !important;
}

.shape-loader span:nth-child(4) {
  background: #d7b46a !important;
  animation-delay: .45s !important;
}

.shape-loader-box .loader-copy {
  display: block !important;
}

.shape-loader-box .loader-copy strong {
  color: #f4fbff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(18px, 5vw, 22px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 0 18px rgba(72, 214, 255, 0.10) !important;
}

.shape-loader-box .loader-copy strong::after {
  content: "";
  width: 1.2em;
  text-align: left;
  animation: finalLoadingDots 1.25s steps(4, end) infinite;
}

@keyframes shapeLoaderBreathe {
  0%, 100% { transform: rotate(0deg) scale(1); border-radius: 24px; }
  45% { transform: rotate(90deg) scale(1.04); border-radius: 999px; }
  70% { transform: rotate(180deg) scale(.98); border-radius: 28px; }
}

@keyframes shapeLoaderMorph {
  0%, 100% { transform: scale(1); border-radius: 999px; }
  33% { transform: scale(.72) rotate(45deg); border-radius: 5px; }
  66% { transform: scale(1.12); border-radius: 11px; }
}

@keyframes finalLoadingDots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75%, 100% { content: "..."; }
}

@media (max-width: 880px) {
  #introScreen.screen {
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    -webkit-overflow-scrolling: auto !important;
    overscroll-behavior: none !important;
    touch-action: manipulation !important;
  }

  #introScreen .intro-card {
    width: min(100%, 620px) !important;
    height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(10px, env(safe-area-inset-bottom))) !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    border-radius: clamp(22px, 5.8vw, 30px) !important;
  }

  #introScreen .intro-content {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: clamp(16px, 3.3dvh, 26px) clamp(16px, 4.4vw, 24px) clamp(12px, 2.2dvh, 20px) !important;
  }

  #introScreen .eyebrow {
    flex: 0 0 auto !important;
    align-self: center !important;
    margin: 0 0 clamp(30px, 6.4dvh, 58px) !important;
    padding: 7px 10px !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    font-size: clamp(8px, 2.25vw, 11px) !important;
    line-height: 1 !important;
  }

  #introScreen .intro-title {
    flex: 0 0 auto !important;
    margin: 0 0 clamp(12px, 2dvh, 18px) !important;
    max-width: 11ch !important;
    font-size: clamp(38px, 12.2vw, 58px) !important;
    line-height: .98 !important;
    letter-spacing: -0.055em !important;
    text-wrap: balance !important;
  }

  #introScreen .intro-subtitle {
    flex: 0 0 auto !important;
    margin: 0 auto clamp(18px, 3.2dvh, 26px) !important;
    max-width: 40ch !important;
    font-size: clamp(12px, 3.4vw, 14.5px) !important;
    line-height: 1.42 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #introScreen .primary-btn {
    flex: 0 0 auto !important;
    margin: 0 auto !important;
    min-height: clamp(42px, 6.2dvh, 52px) !important;
    min-width: clamp(180px, 52vw, 220px) !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    font-size: clamp(13px, 3.5vw, 15.5px) !important;
  }

  #introScreen .intro-feature-grid {
    flex: 0 0 auto !important;
    width: min(100%, 520px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(7px, 1.5dvh, 10px) !important;
    margin: auto 0 0 !important;
    padding: 0 !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card,
  #introScreen .intro-feature-grid .intro-feature-card:nth-child(3) {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    column-gap: 10px !important;
    row-gap: 3px !important;
    min-height: 0 !important;
    padding: clamp(9px, 2.5vw, 12px) clamp(10px, 3.4vw, 14px) !important;
    border-radius: clamp(16px, 4.2vw, 22px) !important;
    text-align: left !important;
  }

  #introScreen .intro-feature-index {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
    justify-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 23px !important;
    padding: 5px 8px !important;
    border-radius: 999px !important;
    font-size: clamp(8px, 2.2vw, 10.5px) !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
  }

  #introScreen .intro-feature-card strong {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
    font-size: clamp(12.5px, 3.4vw, 15px) !important;
    line-height: 1.12 !important;
  }

  #introScreen .intro-feature-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: clamp(10.5px, 2.9vw, 12.5px) !important;
    line-height: 1.32 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

@media (max-width: 880px) and (orientation: landscape) {
  #introScreen.screen {
    padding: 8px !important;
  }

  #introScreen .intro-card {
    width: calc(100vw - 16px) !important;
    height: calc(100dvh - 16px) !important;
  }

  #introScreen .intro-content {
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
    grid-template-rows: auto auto auto 1fr !important;
    align-items: center !important;
    column-gap: 22px !important;
    padding: clamp(10px, 3dvh, 18px) clamp(18px, 4vw, 32px) !important;
  }

  #introScreen .eyebrow,
  #introScreen .intro-title,
  #introScreen .intro-subtitle,
  #introScreen .primary-btn {
    grid-column: 1 !important;
  }

  #introScreen .eyebrow {
    justify-self: center !important;
    margin: 0 0 8px !important;
  }

  #introScreen .intro-title {
    margin: 0 0 8px !important;
    font-size: clamp(26px, 10dvh, 44px) !important;
  }

  #introScreen .intro-subtitle {
    margin: 0 0 12px !important;
    -webkit-line-clamp: 2 !important;
    font-size: clamp(10.5px, 3.3dvh, 13px) !important;
  }

  #introScreen .primary-btn {
    justify-self: center !important;
    min-height: clamp(34px, 9dvh, 44px) !important;
  }

  #introScreen .intro-feature-grid {
    grid-column: 2 !important;
    grid-row: 1 / -1 !important;
    align-self: center !important;
    margin: 0 !important;
    gap: 8px !important;
  }

  #introScreen .intro-feature-card p {
    -webkit-line-clamp: 2 !important;
  }
}

@media (max-width: 520px) and (orientation: portrait) {
  #introScreen.screen {
    padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom)) !important;
  }

  #introScreen .intro-card {
    width: calc(100vw - 16px) !important;
    height: calc(100dvh - max(16px, env(safe-area-inset-top)) - max(8px, env(safe-area-inset-bottom))) !important;
  }
}

@media (max-width: 520px) and (max-height: 760px) {
  #introScreen .intro-content {
    padding: 13px 12px 10px !important;
  }

  #introScreen .eyebrow {
    margin-bottom: clamp(16px, 4dvh, 30px) !important;
    padding: 6px 8px !important;
    font-size: 7.8px !important;
  }

  #introScreen .intro-title {
    margin-bottom: 9px !important;
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  #introScreen .intro-subtitle {
    margin-bottom: 14px !important;
    -webkit-line-clamp: 2 !important;
    font-size: clamp(10.5px, 3.05vw, 12px) !important;
    line-height: 1.32 !important;
  }

  #introScreen .primary-btn {
    min-height: 38px !important;
    min-width: 168px !important;
  }

  #introScreen .intro-feature-grid {
    gap: 6px !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card,
  #introScreen .intro-feature-grid .intro-feature-card:nth-child(3) {
    padding: 8px 10px !important;
    column-gap: 8px !important;
  }

  #introScreen .intro-feature-card p {
    -webkit-line-clamp: 1 !important;
  }
}

@media (max-width: 380px) and (max-height: 680px) {
  #introScreen .intro-title {
    font-size: 28px !important;
  }

  #introScreen .intro-subtitle {
    display: none !important;
  }

  #introScreen .intro-feature-card p {
    display: none !important;
  }
}

/* === Final refinement: laptop loader + balanced mobile home spacing === */
.loader {
  display: grid !important;
  place-items: center !important;
  background:
    radial-gradient(520px 300px at 50% 34%, rgba(92, 198, 255, 0.16), transparent 68%),
    radial-gradient(420px 220px at 50% 66%, rgba(45, 245, 200, 0.08), transparent 72%),
    linear-gradient(180deg, #020711 0%, #05101d 100%) !important;
}

.laptop-loader-box {
  width: min(248px, calc(100vw - 56px)) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 12px !important;
  text-align: center !important;
  color: #eaf8ff !important;
}

.laptop-loader-box .loader-laptop {
  position: relative !important;
  width: min(162px, 50vw) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 0 !important;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28)) !important;
  animation: laptopLoaderFloat 3.8s ease-in-out infinite !important;
}

.laptop-loader-box .loader-laptop::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -10px !important;
  width: 72% !important;
  height: 12px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(78, 198, 255, 0.18) 0%, rgba(78, 198, 255, 0) 72%) !important;
  filter: blur(5px) !important;
}

.laptop-loader-box .loader-laptop-lid {
  width: 100% !important;
  padding: 8px !important;
  border-radius: 14px 14px 10px 10px !important;
  background:
    linear-gradient(180deg, rgba(236, 247, 255, 0.22), rgba(113, 146, 192, 0.06)),
    linear-gradient(145deg, #13233a, #060d18 72%) !important;
  border: 1px solid rgba(195, 232, 255, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(7, 13, 22, 0.6),
    0 10px 18px rgba(0, 0, 0, 0.18) !important;
  transform-origin: center bottom !important;
}

.laptop-loader-box .loader-laptop-screen {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 50% 38%, rgba(66, 206, 255, 0.12), transparent 44%),
    linear-gradient(180deg, #08111d 0%, #0b1f34 52%, #08111d 100%) !important;
  border: 1px solid rgba(112, 185, 255, 0.18) !important;
  display: grid !important;
  place-items: center !important;
  perspective: 900px !important;
}

.laptop-loader-box .loader-screen-grid {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(96, 193, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 193, 255, 0.10) 1px, transparent 1px) !important;
  background-size: 14px 14px !important;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), #000 32%, #000 100%) !important;
  opacity: 0.72 !important;
  animation: none !important;
}

.laptop-loader-box .loader-model-cube {
  position: relative !important;
  width: 28px !important;
  height: 28px !important;
  transform-style: preserve-3d !important;
  transform: rotateX(-22deg) rotateY(0deg) !important;
  animation: laptopLoaderCube 4.8s linear infinite !important;
}

.laptop-loader-box .cube-face {
  position: absolute !important;
  inset: 0 !important;
  border: 1px solid rgba(163, 228, 255, 0.78) !important;
  background: linear-gradient(135deg, rgba(120, 222, 255, 0.12), rgba(45, 245, 200, 0.04)) !important;
  box-shadow: inset 0 0 10px rgba(72, 214, 255, 0.1) !important;
}

.laptop-loader-box .cube-front { transform: translateZ(11px) !important; }
.laptop-loader-box .cube-back { transform: rotateY(180deg) translateZ(11px) !important; }
.laptop-loader-box .cube-left { transform: rotateY(-90deg) translateZ(11px) !important; }
.laptop-loader-box .cube-right { transform: rotateY(90deg) translateZ(11px) !important; }
.laptop-loader-box .cube-top { transform: rotateX(90deg) translateZ(11px) !important; }
.laptop-loader-box .cube-bottom { transform: rotateX(-90deg) translateZ(11px) !important; }

.laptop-loader-box .loader-model-orbit {
  position: absolute !important;
  border-radius: 999px !important;
  border: 1px solid rgba(123, 214, 255, 0.22) !important;
  pointer-events: none !important;
}

.laptop-loader-box .loader-model-orbit-a {
  width: 58px !important;
  height: 22px !important;
  transform: rotate(20deg) !important;
  animation: laptopLoaderOrbitA 4.2s linear infinite !important;
}

.laptop-loader-box .loader-model-orbit-b {
  display: none !important;
}

.laptop-loader-box .loader-model-orbit::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 100% !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: linear-gradient(135deg, #89e1ff, #2df5c8) !important;
  box-shadow: 0 0 10px rgba(95, 224, 255, 0.55) !important;
}

.laptop-loader-box .loader-scan-track {
  position: absolute !important;
  left: 50% !important;
  bottom: 8px !important;
  transform: translateX(-50%) !important;
  width: 34px !important;
  display: flex !important;
  gap: 4px !important;
  justify-content: center !important;
}

.laptop-loader-box .loader-scan-track span {
  flex: 1 1 0 !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(113, 191, 255, 0.25), rgba(113, 191, 255, 0.82)) !important;
  transform-origin: center !important;
  animation: laptopLoaderBars 1.8s ease-in-out infinite !important;
}

.laptop-loader-box .loader-scan-track span:nth-child(2) {
  display: none !important;
}

.laptop-loader-box .loader-scan-track span:nth-child(3) {
  display: none !important;
}

.laptop-loader-box .loader-laptop-base {
  position: relative !important;
  width: 118% !important;
  height: 10px !important;
  margin-top: -2px !important;
  border-radius: 0 0 14px 14px !important;
  background:
    linear-gradient(180deg, rgba(232, 246, 255, 0.66), rgba(140, 166, 198, 0.52) 14%, rgba(12, 22, 37, 0.96) 100%),
    linear-gradient(180deg, #18273d, #07101c) !important;
  border: 1px solid rgba(186, 229, 255, 0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(2, 7, 13, 0.72) !important;
}

.laptop-loader-box .loader-laptop-base span {
  position: absolute !important;
  left: 50% !important;
  top: 2px !important;
  transform: translateX(-50%) !important;
  width: 26px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.14)) !important;
}

.laptop-loader-box .loader-copy {
  display: flex !important;
  justify-content: center !important;
}

.laptop-loader-box .loader-copy strong {
  color: #f3fbff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(15px, 3.6vw, 18px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 0 12px rgba(72, 214, 255, 0.1) !important;
}

@keyframes laptopLoaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes laptopLoaderGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 16px, 16px 0; }
}

@keyframes laptopLoaderCube {
  0% { transform: rotateX(-22deg) rotateY(0deg); }
  100% { transform: rotateX(-22deg) rotateY(360deg); }
}

@keyframes laptopLoaderOrbitA {
  from { transform: rotate(20deg) rotate(0deg); }
  to { transform: rotate(20deg) rotate(360deg); }
}

@keyframes laptopLoaderOrbitB {
  from { transform: rotateX(66deg) rotate(0deg); }
  to { transform: rotateX(66deg) rotate(360deg); }
}

@keyframes laptopLoaderBars {
  0%, 100% { opacity: 0.4; transform: scaleX(0.72); }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 880px) {
  .copy-desktop {
    display: none !important;
  }

  .copy-mobile {
    display: inline !important;
  }

  #introScreen.screen {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
  }

  #introScreen .intro-card {
    width: min(100%, 620px) !important;
    min-height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(20px, env(safe-area-inset-bottom))) !important;
    height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(20px, env(safe-area-inset-bottom))) !important;
    max-height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(20px, env(safe-area-inset-bottom))) !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: clamp(24px, 6vw, 32px) !important;
  }

  #introScreen .intro-content {
    width: 100% !important;
    min-height: 100% !important;
    display: grid !important;
    align-content: center !important;
    justify-items: center !important;
    gap: clamp(10px, 1.7dvh, 15px) !important;
    padding: clamp(18px, 3.2dvh, 26px) clamp(14px, 4.4vw, 22px) !important;
  }

  #introScreen .eyebrow,
  #introScreen .intro-title,
  #introScreen .intro-subtitle,
  #introScreen .primary-btn,
  #introScreen .intro-feature-grid {
    margin: 0 !important;
  }

  #introScreen .eyebrow {
    padding: 7px 11px !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    font-size: clamp(8.6px, 2.25vw, 10.5px) !important;
    line-height: 1 !important;
  }

  #introScreen .intro-title {
    max-width: 12ch !important;
    font-size: clamp(31px, 10.2vw, 50px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.052em !important;
    text-wrap: balance !important;
  }

  #introScreen .intro-subtitle {
    max-width: 35ch !important;
    font-size: clamp(11.2px, 3vw, 13.2px) !important;
    line-height: 1.4 !important;
    color: #c3d3e5 !important;
    display: block !important;
    overflow: visible !important;
  }

  #introScreen .primary-btn {
    min-width: clamp(190px, 56vw, 228px) !important;
    min-height: clamp(44px, 6dvh, 52px) !important;
    padding: 0 22px !important;
    font-size: clamp(12.8px, 3.35vw, 14.8px) !important;
  }

  #introScreen .intro-feature-grid {
    width: min(100%, 520px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(8px, 1.3dvh, 11px) !important;
    margin-top: clamp(2px, 0.5dvh, 6px) !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card,
  #introScreen .intro-feature-grid .intro-feature-card:nth-child(3) {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    column-gap: 9px !important;
    row-gap: 3px !important;
    padding: clamp(10px, 2.5vw, 13px) clamp(11px, 3.4vw, 15px) !important;
    border-radius: clamp(18px, 4.4vw, 22px) !important;
    text-align: left !important;
  }

  #introScreen .intro-feature-index {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    align-self: start !important;
    min-height: 24px !important;
    padding: 5px 8px !important;
    border-radius: 999px !important;
    font-size: clamp(8px, 2.15vw, 10px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #introScreen .intro-feature-card strong {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: clamp(12.5px, 3.25vw, 14.6px) !important;
    line-height: 1.15 !important;
  }

  #introScreen .intro-feature-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: clamp(10.6px, 2.7vw, 12px) !important;
    line-height: 1.34 !important;
    display: block !important;
    overflow: visible !important;
  }
}

@media (max-width: 880px) and (orientation: landscape) {
  #introScreen.screen {
    padding: 10px !important;
  }

  #introScreen .intro-card {
    width: calc(100vw - 20px) !important;
    min-height: 0 !important;
    height: calc(100dvh - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    overflow: hidden !important;
  }

  #introScreen .intro-content {
    min-height: 100% !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr) !important;
    align-content: center !important;
    column-gap: clamp(18px, 4vw, 28px) !important;
    row-gap: 10px !important;
  }

  #introScreen .eyebrow,
  #introScreen .intro-title,
  #introScreen .intro-subtitle,
  #introScreen .primary-btn {
    grid-column: 1 !important;
  }

  #introScreen .intro-title {
    font-size: clamp(28px, 8.4dvh, 44px) !important;
  }

  #introScreen .intro-subtitle {
    font-size: clamp(10.5px, 2.8dvh, 13px) !important;
  }

  #introScreen .primary-btn {
    justify-self: start !important;
  }

  #introScreen .intro-feature-grid {
    grid-column: 2 !important;
    align-self: center !important;
    margin-top: 0 !important;
    gap: 8px !important;
  }
}

@media (max-width: 520px) and (max-height: 760px) {
  #introScreen .intro-content {
    gap: 8px !important;
    padding: 15px 13px !important;
  }

  #introScreen .intro-subtitle {
    font-size: clamp(10.6px, 2.95vw, 12px) !important;
  }

  #introScreen .primary-btn {
    min-height: 40px !important;
    min-width: 178px !important;
  }

  #introScreen .intro-feature-grid {
    gap: 7px !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card,
  #introScreen .intro-feature-grid .intro-feature-card:nth-child(3) {
    padding: 9px 10px !important;
  }
}

@media (max-width: 380px) and (max-height: 680px) {
  #introScreen .intro-content {
    gap: 7px !important;
  }

  #introScreen .intro-title {
    font-size: 27px !important;
  }

  #introScreen .intro-subtitle {
    display: block !important;
    font-size: 10.4px !important;
  }

  #introScreen .intro-feature-card p {
    display: block !important;
    font-size: 10.1px !important;
  }
}

/* === Loader update: smaller simple center shape === */
.loader {
  display: grid !important;
  place-items: center !important;
  background:
    radial-gradient(420px 240px at 50% 40%, rgba(82, 196, 255, 0.12), transparent 68%),
    linear-gradient(180deg, #020711 0%, #05101b 100%) !important;
}

.minimal-loader-box {
  width: min(240px, calc(100vw - 56px)) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 16px !important;
  text-align: center !important;
  color: #eef8ff !important;
}

.minimal-loader-box .morph-loader {
  position: relative !important;
  width: 84px !important;
  height: 84px !important;
  display: grid !important;
  place-items: center !important;
}

.minimal-loader-box .morph-loader::before {
  content: "" !important;
  position: absolute !important;
  inset: 18px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(72, 214, 255, 0.18), rgba(72, 214, 255, 0)) !important;
  filter: blur(8px) !important;
}

.minimal-loader-box .morph-loader-core {
  width: 54px !important;
  height: 54px !important;
  display: block !important;
  border: 2px solid rgba(171, 232, 255, 0.85) !important;
  background:
    linear-gradient(135deg, rgba(132, 224, 255, 0.28), rgba(45, 245, 200, 0.08)),
    rgba(10, 23, 39, 0.86) !important;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 18px rgba(72, 214, 255, 0.16) !important;
  animation: simpleMorphLoader 1.9s ease-in-out infinite !important;
}

.minimal-loader-box .loader-copy {
  display: flex !important;
  justify-content: center !important;
}

.minimal-loader-box .loader-copy strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(18px, 4vw, 21px) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #f4fbff !important;
  text-shadow: 0 0 16px rgba(72, 214, 255, 0.12) !important;
}

@keyframes simpleMorphLoader {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    border-radius: 16px;
  }

  33% {
    transform: rotate(45deg) scale(0.92);
    border-radius: 8px;
  }

  66% {
    transform: rotate(90deg) scale(1.04);
    border-radius: 50%;
  }
}

/* === Final refinement: professional mobile home layout === */
@media (max-width: 880px) {
  .intro-mobile-roleline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
  }

  .intro-mobile-roleline span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 26px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(101, 185, 255, 0.18) !important;
    background: rgba(11, 24, 43, 0.58) !important;
    color: #a9c9e6 !important;
    font-size: clamp(10px, 2.6vw, 11.5px) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
  }

  #introScreen.screen {
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom)) !important;
    align-items: center !important;
  }

  #introScreen .intro-card {
    width: min(100%, 460px) !important;
    height: calc(100dvh - max(24px, env(safe-area-inset-top)) - max(24px, env(safe-area-inset-bottom))) !important;
    max-height: calc(100dvh - max(24px, env(safe-area-inset-top)) - max(24px, env(safe-area-inset-bottom))) !important;
    min-height: calc(100dvh - max(24px, env(safe-area-inset-top)) - max(24px, env(safe-area-inset-bottom))) !important;
    background:
      linear-gradient(180deg, rgba(10, 18, 32, 0.96), rgba(4, 9, 18, 0.98)),
      radial-gradient(480px 240px at 50% 18%, rgba(72, 214, 255, 0.11), transparent 68%) !important;
    border: 1px solid rgba(119, 165, 215, 0.12) !important;
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  }

  #introScreen .intro-card::before {
    opacity: 0.42 !important;
  }

  #introScreen .intro-content {
    min-height: 100% !important;
    width: 100% !important;
    display: grid !important;
    grid-template-rows: auto auto auto auto auto 1fr !important;
    align-content: stretch !important;
    justify-items: center !important;
    gap: 12px !important;
    padding: clamp(22px, 4dvh, 30px) clamp(16px, 5vw, 24px) clamp(18px, 3dvh, 24px) !important;
  }

  #introScreen .eyebrow {
    padding: 8px 14px !important;
    border-color: rgba(115, 179, 236, 0.18) !important;
    background: rgba(16, 28, 48, 0.68) !important;
    font-size: clamp(9px, 2.35vw, 10.5px) !important;
    letter-spacing: 0.13em !important;
  }

  #introScreen .intro-title {
    max-width: 9.6ch !important;
    font-size: clamp(32px, 9.4vw, 48px) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.06em !important;
    text-align: center !important;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.4) !important;
  }

  #introScreen .intro-title span {
    display: block !important;
  }

  #introScreen .intro-subtitle {
    max-width: 31ch !important;
    font-size: clamp(12px, 3.1vw, 13.8px) !important;
    line-height: 1.5 !important;
    text-align: center !important;
    color: #b8cbdd !important;
  }

  #introScreen .primary-btn {
    min-width: min(100%, 232px) !important;
    min-height: 48px !important;
    padding: 0 22px !important;
    background: linear-gradient(180deg, rgba(34, 46, 71, 0.96), rgba(21, 28, 46, 0.96)) !important;
    color: #eef8ff !important;
    box-shadow:
      0 16px 32px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  #introScreen .primary-btn::before {
    opacity: 0.5 !important;
  }

  #introScreen .intro-feature-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-self: end !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card,
  #introScreen .intro-feature-grid .intro-feature-card:nth-child(3) {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: start !important;
    row-gap: 5px !important;
    min-height: 0 !important;
    padding: 14px 15px 13px !important;
    border-radius: 22px !important;
    background:
      linear-gradient(180deg, rgba(22, 30, 47, 0.92), rgba(14, 21, 35, 0.96)),
      radial-gradient(220px 80px at 0% 0%, rgba(72, 214, 255, 0.08), transparent 70%) !important;
    border: 1px solid rgba(108, 148, 193, 0.14) !important;
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    text-align: left !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card::after {
    content: "" !important;
    position: absolute !important;
    left: 15px !important;
    top: 14px !important;
    bottom: 14px !important;
    width: 3px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, rgba(72, 214, 255, 0.95), rgba(72, 214, 255, 0.12)) !important;
    opacity: 0.9 !important;
  }

  #introScreen .intro-feature-index {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-left: 14px !important;
    min-height: 24px !important;
    width: fit-content !important;
    padding: 4px 10px !important;
    background: rgba(33, 46, 71, 0.9) !important;
    border: 1px solid rgba(114, 170, 222, 0.14) !important;
    color: #d5e8f7 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
  }

  #introScreen .intro-feature-card strong {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-left: 14px !important;
    font-size: clamp(17px, 4.4vw, 19px) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    color: #f1f7ff !important;
  }

  #introScreen .intro-feature-card p {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin-left: 14px !important;
    font-size: clamp(12px, 3vw, 13.2px) !important;
    line-height: 1.42 !important;
    color: #9fb3c7 !important;
  }
}

@media (max-width: 520px) and (max-height: 760px) {
  #introScreen .intro-content {
    gap: 10px !important;
    padding: 18px 14px 16px !important;
  }

  #introScreen .intro-title {
    font-size: clamp(30px, 8.9vw, 42px) !important;
  }

  #introScreen .intro-subtitle {
    max-width: 30ch !important;
    font-size: 11.8px !important;
  }

  #introScreen .intro-feature-grid {
    gap: 8px !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card,
  #introScreen .intro-feature-grid .intro-feature-card:nth-child(3) {
    padding: 12px 13px 12px !important;
  }

  #introScreen .intro-feature-grid .intro-feature-card::after {
    left: 13px !important;
    top: 12px !important;
    bottom: 12px !important;
  }

  #introScreen .intro-feature-index,
  #introScreen .intro-feature-card strong,
  #introScreen .intro-feature-card p {
    margin-left: 12px !important;
  }

  #introScreen .intro-feature-card strong {
    font-size: 16px !important;
  }

  #introScreen .intro-feature-card p {
    font-size: 11.5px !important;
  }
}

@media (max-width: 380px) and (max-height: 680px) {
  #introScreen .intro-content {
    gap: 9px !important;
    padding: 16px 12px 14px !important;
  }

  #introScreen .eyebrow {
    font-size: 8.6px !important;
  }

  #introScreen .intro-mobile-roleline span {
    min-height: 24px !important;
    font-size: 9.8px !important;
  }

  #introScreen .intro-title {
    font-size: 27px !important;
  }

  #introScreen .intro-subtitle {
    font-size: 10.9px !important;
    line-height: 1.42 !important;
  }

  #introScreen .primary-btn {
    min-height: 44px !important;
  }

  #introScreen .intro-feature-card strong {
    font-size: 15px !important;
  }

  #introScreen .intro-feature-card p {
    font-size: 10.9px !important;
  }
}

@media (max-width: 880px) {
  #introScreen .intro-card,
  #introScreen .intro-feature-card,
  #introScreen .intro-feature-index,
  #introScreen .primary-btn {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #introScreen .intro-card::before {
    filter: none !important;
  }

  body.mobile-simple-mode #introScreen {
    padding: 24px 16px !important;
  }

  body.mobile-simple-mode .mobile-device-notice {
    width: min(100%, 420px) !important;
    margin: 0 auto !important;
  }

  body.mobile-simple-mode .mobile-device-notice-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    padding: 24px 20px !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #0d1828 0%, #070e18 100%) !important;
    box-shadow:
      0 22px 56px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.mobile-simple-mode .mobile-device-notice-card::before,
  body.mobile-simple-mode .mobile-device-notice-card::after {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.mobile-simple-mode .mobile-device-notice-tag,
  body.mobile-simple-mode .mobile-device-notice-card h2,
  body.mobile-simple-mode .mobile-device-notice-card p {
    filter: none !important;
  }

  body.mobile-simple-mode .mobile-device-notice-card .mobile-simple-btn,
  body.mobile-simple-mode .mobile-simple-btn {
    position: static !important;
    inset: auto !important;
    display: inline-flex !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 6px 0 0 !important;
    align-self: stretch !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.mobile-simple-mode .mobile-device-notice-card .mobile-simple-btn:hover,
  body.mobile-simple-mode .mobile-device-notice-card .mobile-simple-btn:focus-visible {
    transform: none !important;
  }
}
