/* =========================================================
   DETAIL SCREEN CORE
   ========================================================= */

    /* ---------------- DETAIL SCREEN ---------------- */

    .detail {
      z-index: 100;
      inset: 0;
      visibility: hidden;
      overflow: hidden;
      opacity: 0;
      background: transparent;
      transition: opacity .3s ease, visibility 0s .3s;
      pointer-events: none;
    }

    .detail.transitioning,
    .detail.reveal-detail,
    .detail.open,
    .detail.closing {
      visibility: visible;
      opacity: 1;
      background: transparent;
      pointer-events: auto;
      transition: none;
    }

    .detail-screen {
      position: absolute;
      inset: 0;
      overflow-x: hidden;
      overflow-y: auto;
      background:
        radial-gradient(circle at 80% 20%, rgba(0, 182, 255, .22), transparent 26rem),
        linear-gradient(145deg, #031b3b, #020817 75%);
    }

    .detail-art {
      position: fixed;
      inset: 0 0 0 44%;
      background: var(--detail-background);
      clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%, 0 72%, 16% 45%, 5% 18%);
      opacity: .75;
      pointer-events: none;
    }

    .detail-art::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, #03152e 0, transparent 42%),
        linear-gradient(to top, rgba(1,8,20,.82), transparent);
    }

    .detail-inner {
      position: relative;
      z-index: 3;
      width: min(1260px, calc(100% - 50px));
      margin: auto;
      padding: 95px 0 70px;
    }

    .detail-index {
      color: var(--cyan);
      font-family: Inter, sans-serif;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .22em;
    }

    .detail-title {
      max-width: 760px;
      margin: 15px 0 22px;
      font-family: Inter, sans-serif;
      font-size: clamp(3.2rem, 6.5vw, 6.8rem);
      font-weight: 900;
      line-height: .78;
      letter-spacing: -.08em;
      text-transform: uppercase;
      text-shadow: 8px 9px 0 #0064d7;
      word-break: normal;
      overflow-wrap: break-word;
    }

    .detail-card {
      position: relative;
      width: min(620px, 100%);
      padding: 24px 28px 42px;
      background: rgba(2, 12, 28, 0.95);
      border: 1px solid #0c2b54;
      backdrop-filter: blur(20px);
      clip-path: polygon(0 0, 98% 1.5%, 100% 96%, 2% 100%);
    }

    /* P3R Left Border Loading Stream Bar */
    .detail-card-stream {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 5px;
      background: rgba(0, 136, 255, 0.14);
      pointer-events: none;
      z-index: 5;
      overflow: hidden;
    }

    .detail-card-stream-fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0%;
      overflow: hidden;
      background: linear-gradient(180deg, #0055cc 0%, #0088ff 50%, #00e1ff 92%, #ffffff 100%);
      box-shadow: 0 0 10px rgba(0, 225, 255, 0.75), 0 0 20px rgba(0, 136, 255, 0.45);
    }

    /* Charging Spark Tip at the front of the flowing stream */
    .detail-card-stream-fill::after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: -3px;
      right: -3px;
      height: 9px;
      background: #ffffff;
      box-shadow: 0 0 12px #00e1ff, 0 0 24px #0077ff, 0 0 4px #ffffff;
      border-radius: 2px;
      opacity: 0;
      transition: opacity 120ms ease;
    }

    .detail-card-stream-fill.is-flowing {
      animation: detailBorderStream 850ms cubic-bezier(0.14, 0.78, 0.2, 1) forwards;
    }

    .detail-card-stream-fill.is-flowing::after {
      opacity: 1;
    }

    /* Once fully loaded: spark dissolves and solid vibrant bar remains */
    .detail-card-stream-fill.is-loaded {
      height: 100%;
      background: linear-gradient(180deg, #0088ff 0%, #00a8ff 60%, #54e8ff 100%);
      box-shadow: 0 0 8px rgba(84, 232, 255, 0.65), 0 0 16px rgba(0, 136, 255, 0.4);
    }

    .detail-card-stream-fill.is-loaded::after {
      opacity: 0;
      transition: opacity 300ms ease;
    }

    /* Subtle ambient energy sheen that sweeps down every 4.5s after full load */
    .detail-card-stream-fill.is-loaded::before {
      content: "";
      position: absolute;
      top: -60px;
      left: -2px;
      right: -2px;
      height: 50px;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.85), transparent);
      box-shadow: 0 0 14px #54e8ff;
      border-radius: 2px;
      animation: detailAmbientScan 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes detailBorderStream {
      0% {
        height: 0%;
      }
      15% {
        height: 14%;
      }
      40% {
        height: 46%;
      }
      70% {
        height: 82%;
      }
      95% {
        height: 98%;
      }
      100% {
        height: 100%;
      }
    }

    @keyframes detailAmbientScan {
      0%, 65% {
        top: -50px;
        opacity: 0;
      }
      70% {
        opacity: 0.9;
      }
      88% {
        top: calc(100% - 10px);
        opacity: 0.9;
      }
      94%, 100% {
        top: 100%;
        opacity: 0;
      }
    }


    .detail-description {
      margin: 0 0 20px;
      color: #f1f5f9;
      font-size: 14px;
      line-height: 1.75;
      white-space: pre-wrap;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .detail-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .detail-info div {
      padding: 11px 13px;
      background: rgba(255,255,255,.055);
    }

    .detail-info small {
      display: block;
      color: #52b6ff;
      font-size: 9px;
      letter-spacing: .1em;
    }

    .detail-info strong {
      display: block;
      margin-top: 3px;
      font-size: 13px;
      color: #ffffff;
    }

    .features {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 0;
      margin: 14px 0 0;
      list-style: none;
    }

    .features li {
      position: relative;
      padding: 3px 0;
      color: #f1f5f9;
      font-size: 12.5px;
      line-height: 1.6;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .features li::before {
      content: none;
      display: none;
    }

    .detail-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 25px;
    }

    .action-button {
      min-width: 120px;
      flex: 1 1 auto;
      padding: 13px 18px;
      cursor: pointer;
      color: #cbd5e1;
      background: #071933;
      border: 1px solid #0f2d57;
      font-family: Inter, sans-serif;
      font-size: 12px;
      font-weight: 900;
      transform: skew(-4deg, -1.2deg);
      transition: 180ms ease;
    }

    .action-button.primary {
      background: #0066ff;
      color: #ffffff;
      border: 0;
    }

    .action-button:hover {
      transform: translateY(-4px) skew(-4deg, -1.2deg);
      filter: drop-shadow(7px 8px 0 rgba(0, 107, 255, .45));
    }

    .action-button:disabled {
      cursor: not-allowed;
      opacity: .48;
      filter: grayscale(1);
    }

    .close-detail {
      position: fixed;
      z-index: 10;
      top: 25px;
      right: 27px;
      display: grid;
      place-items: center;
      width: 53px;
      height: 53px;
      cursor: pointer;
      color: var(--navy);
      background: var(--ice);
      border: 0;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 900;
      clip-path: polygon(15% 0, 100% 12%, 84% 100%, 0 82%);
      transition: 180ms ease;
    }

    .close-detail:hover {
      background: #0088ff;
      color: #ffffff;
      transform: rotate(8deg) scale(1.08);
    }

    /* ---------------- PATCH NOTES BUTTON (UNIFIED P3R THEME) ---------------- */

    .action-button.patch-notes-btn {
      color: #ffffff;
      background: #0c2140;
      border: 1px solid #163d72;
      box-shadow: none;
    }

    .action-button.patch-notes-btn:hover {
      background: #0066ff;
      color: #ffffff;
      transform: translateY(-4px) skew(-4deg, -1.2deg);
      filter: drop-shadow(7px 8px 0 rgba(0, 107, 255, .45));
    }

    .action-button.patch-notes-btn.active {
      background: #0066ff;
      color: #ffffff;
      transform: translateY(-2px) skew(-4deg, -1.2deg);
      filter: drop-shadow(6px 7px 0 rgba(0, 107, 255, .55));
    }


/* =========================================================
   DETAIL SHOWCASE & GALLERY ZONE
   ========================================================= */

    /* ---------------- P3R DETAIL SHOWCASE & GALLERY ZONE ---------------- */
    /* Detail card on left: fluid max-width and comfortable margins */
    .detail-screen.has-showcase .detail-inner {
      margin: 0;
      padding-left: clamp(25px, 3.5vw, 75px);
      padding-top: clamp(60px, 7vh, 90px);
      padding-bottom: clamp(30px, 5vh, 65px);
      max-width: min(580px, 34vw);
      box-sizing: border-box;
      transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease;
    }

    .detail-screen.has-showcase .detail-title {
      font-size: clamp(2.6rem, 5.2vw, 5.8rem);
      line-height: 0.82;
      margin: 10px 0 16px;
      word-break: normal;
      overflow-wrap: break-word;
    }

    .detail-screen.has-showcase .detail-card {
      width: 100%;
      padding: clamp(16px, 1.8vw, 24px) clamp(18px, 2vw, 28px) clamp(38px, 4vw, 48px);
    }

    /* Detail Showcase Zone: full area, non-colliding fluid placement */
    .detail-showcase-zone {
      position: absolute;
      inset: 0;
      min-height: 100%;
      pointer-events: none;
      z-index: 5;
      overflow: visible;
      display: none;
      transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .detail-screen.has-showcase .detail-showcase-zone {
      display: block;
    }

    /* ---------------- P3R STAGE PANNING: PATCH NOTES ACTIVE ---------------- */
    .detail.patch-mode-active .detail-screen,
    .detail-screen.patch-mode-active {
      overflow-y: auto !important;
      overflow-x: hidden !important;
    }

    .detail.patch-mode-active .detail-inner,
    .detail-screen.patch-mode-active .detail-inner {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      max-height: 0 !important;
      overflow: hidden !important;
      pointer-events: none !important;
      opacity: 0 !important;
      transform: translateX(-120%) !important;
    }

    .detail.patch-mode-active .detail-showcase-zone,
    .detail-screen.patch-mode-active .detail-showcase-zone {
      transform: translateX(calc(-1 * (50vw - 30px)));
    }


    .showcase-backdrop {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .showcase-halo {
      position: absolute;
      right: 4%;
      top: 15%;
      width: 720px;
      height: 720px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 115, 255, 0.24) 0%, rgba(2, 12, 28, 0) 70%);
      filter: blur(40px);
    }
    .showcase-slash-beam {
      position: absolute;
      right: 22%;
      top: -20%;
      width: 200px;
      height: 140%;
      background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, transparent 80%);
      transform: rotate(14deg) skewX(-8deg);
      border-right: 1px solid rgba(82, 182, 255, 0.18);
    }

    /* Gallery Panel: Symmetrically aligned with .detail-card, foreground layer */
    .showcase-gallery-panel {
      position: absolute;
      right: clamp(80px, 8vw, 180px);
      top: clamp(190px, 28vh, 320px);
      bottom: auto;
      transform: none;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: clamp(6px, 1vh, 9px);
      width: clamp(450px, 35vw, 680px);
      pointer-events: none;
      opacity: 0;
    }

    .detail-showcase-zone.showcase-in .showcase-gallery-panel {
      pointer-events: auto;
      animation: p3rGallerySlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
    }

    .gallery-header-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 10px 6px;
      border-bottom: 2px solid #0c356e;
      background: rgba(2, 9, 22, 0.88);
      backdrop-filter: blur(10px);
      border-radius: 3px 3px 0 0;
      font-family: Inter, sans-serif;
    }
    .gallery-header-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .gallery-header-icon {
      color: #0088ff;
      font-size: 11px;
    }
    .gallery-header-title {
      font-size: clamp(10.5px, 0.9vw, 12.5px);
      font-weight: 900;
      letter-spacing: 0.14em;
      color: #52b6ff;
    }
    .gallery-header-counter {
      font-family: Inter, sans-serif;
      font-size: 12px;
      font-weight: 800;
      color: #64748b;
      letter-spacing: 0.08em;
    }
    .gallery-header-counter b {
      color: #ffffff;
      font-weight: 900;
    }

    /* Large Hero Frame - Symmetrical 16:9 ratio */
    .gallery-hero-frame {
      position: relative;
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      flex-shrink: 0;
      background: #010814;
      border: 2px solid #0e3b79;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 102, 255, 0.2);
      overflow: hidden;
      transition: border-color 220ms ease;
    }
    .gallery-hero-frame:hover {
      border-color: #52b6ff;
    }

    /* Slash light sweep sheen on entrance */
    .gallery-hero-sheen {
      position: absolute;
      inset: -50% -30%;
      background: linear-gradient(
        115deg,
        transparent 38%,
        rgba(255, 255, 255, 0.35) 48%,
        rgba(82, 182, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.35) 52%,
        transparent 62%
      );
      transform: translateX(-140%) skewX(-22deg);
      pointer-events: none;
      z-index: 4;
      opacity: 0;
    }

    .detail-showcase-zone.showcase-in .gallery-hero-sheen {
      animation: heroSheenSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.40s both;
    }

    @keyframes heroSheenSweep {
      0% {
        transform: translateX(-140%) skewX(-22deg);
        opacity: 0;
      }
      25% {
        opacity: 1;
      }
      100% {
        transform: translateX(140%) skewX(-22deg);
        opacity: 0;
      }
    }

    .gallery-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.015);
      transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease;
    }
    .gallery-hero-frame:hover .gallery-hero-img {
      transform: scale(1.05);
    }

    .gallery-hero-overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: clamp(16px, 1.8vw, 24px) clamp(16px, 1.8vw, 22px) clamp(12px, 1.4vw, 18px);
      background: linear-gradient(to top, rgba(1, 9, 24, 0.96) 0%, rgba(1, 9, 24, 0.72) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      gap: 4px;
      pointer-events: none;
      z-index: 5;
    }
    .gallery-hero-tag {
      font-family: Inter, sans-serif;
      font-size: 10.5px;
      font-weight: 900;
      letter-spacing: 0.16em;
      color: #52b6ff;
    }
    .gallery-hero-title {
      margin: 0;
      font-family: Inter, sans-serif;
      font-size: clamp(14px, 1.2vw, 18px);
      font-weight: 900;
      color: #ffffff;
      letter-spacing: 0.04em;
    }
    .gallery-hero-desc {
      margin: 0;
      font-family: 'Chakra Petch', sans-serif;
      font-size: clamp(11px, 0.95vw, 13px);
      color: #cbd5e1;
      line-height: 1.45;
    }

    /* 4 Selectable Thumbnails */
    .gallery-thumbs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(6px, 0.8vw, 10px);
    }
    .gallery-thumb-item {
      position: relative;
      background: #020b18;
      border: 1.5px solid #0d2f5e;
      border-left: 3px solid #144686;
      padding: 0;
      cursor: pointer;
      overflow: hidden;
      transform: skewX(-3deg);
      transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms ease, box-shadow 180ms ease;
      opacity: 0;
    }

    .detail-showcase-zone.showcase-in .gallery-thumb-item {
      animation: p3rThumbPop 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .detail-showcase-zone.showcase-in .gallery-thumb-item:nth-child(1) { animation-delay: 0.45s; }
    .detail-showcase-zone.showcase-in .gallery-thumb-item:nth-child(2) { animation-delay: 0.52s; }
    .detail-showcase-zone.showcase-in .gallery-thumb-item:nth-child(3) { animation-delay: 0.59s; }
    .detail-showcase-zone.showcase-in .gallery-thumb-item:nth-child(4) { animation-delay: 0.66s; }

    @keyframes p3rThumbPop {
      0% {
        opacity: 0;
        transform: skewX(-3deg) translateY(20px) scale(0.94);
      }
      100% {
        opacity: 1;
        transform: skewX(-3deg) translateY(0) scale(1);
      }
    }

    .thumb-img-wrap {
      width: 100%;
      height: clamp(40px, 5.8vh, 62px);
      overflow: hidden;
      background: #000;
    }
    .thumb-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.65;
      transition: opacity 200ms ease, transform 250ms ease;
    }
    .gallery-thumb-item:hover .thumb-img-wrap img,
    .gallery-thumb-item.active .thumb-img-wrap img {
      opacity: 1;
      transform: scale(1.08);
    }

    .thumb-label {
      padding: clamp(4px, 0.5vw, 6px) clamp(5px, 0.6vw, 8px);
      background: #f4f8fd;
      color: #04142b;
      font-family: 'Chakra Petch', sans-serif;
      font-size: clamp(9.5px, 0.8vw, 11.5px);
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .thumb-label span {
      font-family: Inter, sans-serif;
      font-size: 10px;
      font-weight: 900;
      color: #0066ff;
    }
    .gallery-thumb-item.active .thumb-label {
      background: #0066ff;
      color: #ffffff;
    }
    .gallery-thumb-item.active .thumb-label span {
      color: #ffffff;
    }

    /* Standing Character as Backdrop Behind Gallery (Live2D Idle & Smooth Glide Entrance) */
    .showcase-character-stand {
      position: absolute;
      right: clamp(80px, 8vw, 180px);
      width: clamp(450px, 35vw, 680px);
      top: 0;
      bottom: 0;
      height: 100%;
      overflow: hidden;
      z-index: 6; /* Behind the gallery panel (z-index: 10) */
      pointer-events: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      transform: translateX(300px);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 98%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 98%);
    }

    .detail-showcase-zone.showcase-in .showcase-character-stand {
      pointer-events: auto;
      animation: p3rCharSmoothSlideIn 2.2s cubic-bezier(0.12, 0.98, 0.24, 1) 0.15s both;
    }

    .character-stage {
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: clamp(85px, 10vh, 120px);
      box-sizing: border-box;
      overflow: visible;
    }

    /* Live2D breathing & floating sway wrapper - Enlarged, Tilted -4.5deg, Ultra Slow & Smooth */
    .character-live2d-wrap {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      transform-origin: 50% 8%;
      animation: p3rLive2dIdle 9.2s ease-in-out infinite;
      will-change: transform;
      overflow: visible;
    }

    @keyframes p3rLive2dIdle {
      0% {
        transform: translateY(0px) rotate(-4.5deg) scale(1.15);
      }
      25% {
        transform: translateY(-6px) rotate(-3.7deg) scale(1.158, 1.168);
      }
      50% {
        transform: translateY(-12px) rotate(-4.9deg) scale(1.166, 1.18);
      }
      75% {
        transform: translateY(-6px) rotate(-3.9deg) scale(1.156, 1.164);
      }
      100% {
        transform: translateY(0px) rotate(-4.5deg) scale(1.15);
      }
    }

    .char-transform-wrap {
      height: 100%;
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      transform: translate(var(--bg-char-x, 0px), var(--bg-char-y, 0px)) scale(var(--bg-char-scale, 1));
      transform-origin: center top;
      transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
      overflow: visible;
    }

    .character-full-body {
      min-height: 600px;
      height: clamp(600px, 86vh, 980px);
      width: auto;
      max-width: none;
      flex-shrink: 0;
      object-fit: contain;
      filter: drop-shadow(0 0 50px rgba(0, 102, 255, 0.32)) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85));
      opacity: 0.50; /* Faded ambient backdrop */
      transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), filter 800ms ease;
      will-change: opacity, filter;
    }

    .character-full-body.char-fade-out {
      opacity: 0;
      filter: blur(12px) brightness(1.2) drop-shadow(0 0 30px rgba(0, 102, 255, 0.2));
    }

    .character-identity-card {
      align-self: flex-end;
      margin-top: clamp(6px, 1vh, 10px);
      background: rgba(3, 13, 29, 0.96);
      backdrop-filter: blur(12px);
      border: 1.5px solid #0088ff;
      border-left: 5px solid #ffffff;
      padding: clamp(6px, 0.6vw, 8px) clamp(14px, 1.1vw, 20px);
      transform: skewX(-6deg);
      box-shadow: 4px 6px 0 #000, 0 0 20px rgba(0, 102, 255, 0.3);
      pointer-events: auto;
      z-index: 20;
      opacity: 1;
      min-width: clamp(210px, 18vw, 270px);
      box-sizing: border-box;
      transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease;
    }

    .character-identity-card.char-card-swap {
      opacity: 0;
      transform: skewX(-6deg) translateY(8px) scale(0.96);
    }

    .char-id-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .char-id-tag {
      font-family: Inter, sans-serif;
      font-size: 8.5px;
      font-weight: 900;
      letter-spacing: 0.18em;
      color: #52b6ff;
      text-transform: uppercase;
    }

    /* P3R character switcher indicators */
    .char-indicators {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .char-dot {
      width: 8px;
      height: 8px;
      background: #0d2f5e;
      border: 1px solid #144686;
      transform: skewX(-12deg);
      cursor: pointer;
      transition: all 200ms ease;
      padding: 0;
    }

    .char-dot:hover {
      background: #52b6ff;
      border-color: #ffffff;
    }

    .char-dot.active {
      background: #00a2ff;
      border-color: #ffffff;
      box-shadow: 0 0 10px rgba(0, 162, 255, 0.95);
      transform: skewX(-12deg) scale(1.25);
    }

    .char-id-main {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 2px 0 1px;
    }
    .char-id-name {
      font-family: Inter, sans-serif;
      font-size: clamp(18px, 1.4vw, 22px);
      font-weight: 900;
      color: #ffffff;
      letter-spacing: 0.06em;
      line-height: 1.1;
      text-shadow: 0 0 12px rgba(0, 136, 255, 0.4);
    }
    .char-id-jp {
      font-family: 'Chakra Petch', sans-serif;
      font-size: clamp(13px, 1vw, 15px);
      font-weight: 900;
      color: #00d0ff;
      line-height: 1.1;
    }
    .char-id-sub {
      font-family: Inter, sans-serif;
      font-size: 8.5px;
      font-weight: 800;
      color: #94a3b8;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    @keyframes p3rGallerySlideIn {
      0% {
        opacity: 0;
        transform: translateX(75px) skewX(-6deg) scale(0.96);
        filter: blur(8px) brightness(1.3);
      }
      65% {
        opacity: 1;
        transform: translateX(-5px) skewX(1.5deg) scale(1.008);
        filter: blur(0) brightness(1.05);
      }
      100% {
        opacity: 1;
        transform: translateX(0) skewX(0) scale(1);
        filter: blur(0) brightness(1);
      }
    }

    @keyframes p3rCharSmoothSlideIn {
      0% {
        opacity: 0;
        transform: translateX(300px);
        filter: blur(8px) brightness(1.15);
      }
      50% {
        opacity: 0.65;
        filter: blur(2px) brightness(1.05);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0) brightness(1);
      }
    }


/* =========================================================
   GALLERY SCREENSHOT MODAL
   ========================================================= */

    /* ---------------- P3R GALLERY SCREENSHOT MODAL (PAGE 3 BOX STYLE) ---------------- */
    .gallery-hero-frame {
      cursor: pointer;
    }

    .gallery-hero-expand-badge {
      position: absolute;
      top: 10px;
      right: 12px;
      background: rgba(2, 10, 24, 0.9);
      border: 1px solid #0088ff;
      color: #52b6ff;
      font-family: Inter, sans-serif;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: 0.14em;
      padding: 3px 9px;
      transform: skewX(-6deg);
      pointer-events: none;
      z-index: 6;
      opacity: 0.9;
      box-shadow: 2px 3px 0 #000;
      transition: all 180ms ease;
    }
    .gallery-hero-frame:hover .gallery-hero-expand-badge {
      background: #0088ff;
      color: #ffffff;
      border-color: #ffffff;
      opacity: 1;
      transform: skewX(-6deg) scale(1.06);
    }

    .gallery-modal {
      position: fixed;
      inset: 0;
      z-index: 150;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(14px, 2vw, 30px);
      box-sizing: border-box;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 300ms;
    }

    .gallery-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0s;
    }

    .gallery-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(1, 6, 18, 0.85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      cursor: pointer;
    }

    .gallery-modal-dialog {
      position: relative;
      width: min(1040px, 94vw);
      z-index: 2;
      opacity: 0;
      transform: scale(0.85) translateY(45px) skewX(-2deg);
      transition: transform 400ms cubic-bezier(0.16, 1.12, 0.28, 1), opacity 350ms ease;
    }

    .gallery-modal.open .gallery-modal-dialog {
      opacity: 1;
      transform: scale(1) translateY(0) skewX(0deg);
      animation: p3rBoxPop 0.65s cubic-bezier(0.16, 1.12, 0.28, 1) both;
    }

    /* Left Cobalt Wing with repeating pattern like Page 3 Tutorial Box */
    .gallery-modal-wing {
      position: absolute;
      left: -32px;
      top: -20px;
      height: 65%;
      width: 170px;
      background: #003cd6;
      clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
      z-index: 1;
      overflow: hidden;
      box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6);
      pointer-events: none;
    }

    .gallery-wing-pattern {
      position: absolute;
      inset: -15px 0 0 4px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transform: rotate(-14deg) skewX(-12deg);
      opacity: 0.32;
      user-select: none;
      pointer-events: none;
    }

    .gallery-wing-pattern span {
      font-family: Inter, sans-serif;
      font-weight: 900;
      font-size: 23px;
      color: #001038;
      letter-spacing: 0.04em;
      line-height: 0.95;
      white-space: nowrap;
    }

    /* Main Box Body (Dark Navy Angle Cut like Page 3 Tutorial Box) */
    .gallery-modal-main {
      position: relative;
      z-index: 2;
      margin-left: clamp(16px, 3.5vw, 55px);
      background: rgba(0, 12, 42, 0.96);
      border: 2px solid #005ce6;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 92, 230, 0.35);
      backdrop-filter: blur(16px);
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
      padding: clamp(14px, 1.8vw, 22px) clamp(16px, 2.2vw, 32px) clamp(12px, 1.6vw, 18px);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    /* Close Button X (Stylized P3R polygon cut) */
    .gallery-modal-close {
      position: absolute;
      top: -14px;
      right: -14px;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      cursor: pointer;
      color: #001242;
      background: #eaf6ff;
      border: 0;
      font-family: Inter, sans-serif;
      font-size: 19px;
      font-weight: 900;
      clip-path: polygon(15% 0, 100% 12%, 84% 100%, 0 82%);
      box-shadow: 4px 4px 0 #000000;
      transition: all 180ms ease;
      z-index: 10;
    }

    .gallery-modal-close:hover {
      background: #0088ff;
      color: #ffffff;
      transform: rotate(8deg) scale(1.12);
      box-shadow: 6px 6px 0 #000000;
    }

    /* White Header Badge */
    .gallery-modal-header {
      background: #ffffff;
      color: #001242;
      padding: 6px clamp(16px, 2.5vw, 36px);
      align-self: center;
      margin-bottom: 14px;
      clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      gap: clamp(8px, 1.2vw, 16px);
    }

    .gallery-modal-tag {
      font-family: Inter, sans-serif;
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: 0.16em;
      color: #0066ee;
    }

    .gallery-modal-header h3 {
      margin: 0;
      font-family: Inter, "Chakra Petch", sans-serif;
      font-weight: 900;
      font-size: clamp(14px, 1.3vw, 18px);
      letter-spacing: -0.01em;
      color: #001242;
      text-align: center;
    }

    .gallery-modal-counter {
      font-family: Inter, sans-serif;
      font-size: 11px;
      font-weight: 800;
      color: #64748b;
    }
    .gallery-modal-counter b {
      color: #0066ee;
      font-weight: 900;
    }

    /* Image Wrapper with 16:9 ratio and high resolution */
    .gallery-modal-body {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gallery-modal-img-wrap {
      position: relative;
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      max-height: clamp(340px, 58vh, 580px);
      background: #010814;
      border: 2px solid #0e3b79;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
      overflow: hidden;
    }

    .gallery-modal-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 160ms ease;
    }

    .gallery-modal-sheen {
      position: absolute;
      inset: -50% -30%;
      background: linear-gradient(
        115deg,
        transparent 38%,
        rgba(255, 255, 255, 0.25) 48%,
        rgba(82, 182, 255, 0.65) 50%,
        rgba(255, 255, 255, 0.25) 52%,
        transparent 62%
      );
      transform: translateX(-140%) skewX(-22deg);
      pointer-events: none;
      z-index: 4;
      opacity: 0;
    }

    .gallery-modal.open .gallery-modal-sheen {
      animation: heroSheenSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
    }

    .gallery-modal-info {
      padding: 4px 6px;
    }

    .gallery-modal-desc {
      margin: 0;
      font-family: 'Chakra Petch', sans-serif;
      font-size: clamp(12px, 1vw, 14.5px);
      color: #cbd5e1;
      line-height: 1.5;
    }

    /* Pagination controls */
    .gallery-modal-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 10px;
    }

    .gallery-page-arrow {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      background: #031430;
      border: 1.5px solid #0d3b75;
      color: #52b6ff;
      font-size: 20px;
      font-weight: 900;
      cursor: pointer;
      transform: skewX(-8deg);
      transition: all 180ms ease;
    }

    .gallery-page-arrow:hover {
      background: #0088ff;
      color: #ffffff;
      border-color: #ffffff;
      transform: skewX(-8deg) scale(1.12);
    }

    .gallery-dots-list {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .gallery-modal-dot {
      width: 9px;
      height: 9px;
      background: #0c2b54;
      border: 1px solid #164680;
      transform: skewX(-12deg);
      cursor: pointer;
      transition: all 180ms ease;
      padding: 0;
    }

    .gallery-modal-dot:hover {
      background: #52b6ff;
      border-color: #ffffff;
    }

    .gallery-modal-dot.active {
      background: #00a2ff;
      border-color: #ffffff;
      box-shadow: 0 0 10px rgba(0, 162, 255, 0.95);
      transform: skewX(-12deg) scale(1.25);
    }

    @media (max-width: 860px) {
      .gallery-modal-wing {
        display: none;
      }
      .gallery-modal-main {
        margin-left: 0;
        padding: 14px 16px;
      }
      .gallery-modal-close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 16px;
      }
    }

    /* Responsive Breakpoints: When window width is under 1360px */
    @media (max-width: 1360px) {
      .detail-screen.has-showcase .detail-inner {
        max-width: 38vw;
      }
      .showcase-gallery-panel {
        right: clamp(40px, 6vw, 100px);
        width: clamp(380px, 34vw, 500px);
      }
      .showcase-character-stand {
        right: clamp(40px, 6vw, 100px);
        width: clamp(380px, 34vw, 500px);
        height: 100%;
      }
    }

    /* Responsive Breakpoint: When window width is under 1100px */
    @media (max-width: 1100px) {
      .showcase-character-stand {
        opacity: 0.55;
      }
      .showcase-gallery-panel {
        right: clamp(20px, 3vw, 40px);
        width: min(520px, calc(100vw - 42vw - 50px));
      }
    }

    /* Mobile / Tablet vertical stack (< 860px) */
    @media (max-width: 860px) {
      .close-detail {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 17px;
      }
      .detail-screen.has-showcase .detail-inner {
        max-width: 100%;
        margin: auto;
        padding-top: 48px;
        padding-left: 20px;
        padding-right: 20px;
      }
      .detail-screen.has-showcase .detail-title {
        padding-right: 48px;
      }
      .detail-showcase-zone {
        position: relative;
        inset: auto;
        padding: 10px 20px 36px;
        overflow: visible;
      }
      .showcase-gallery-panel {
        position: relative;
        right: auto;
        top: 0 !important;
        bottom: auto;
        width: 100%;
      }
      .showcase-character-stand {
        display: none !important;
      }
      .detail.patch-mode-active .detail-showcase-zone,
      .detail-screen.patch-mode-active .detail-showcase-zone {
        transform: none;
        opacity: 0;
        pointer-events: none;
        display: none !important;
      }
      .detail.patch-mode-active .detail-inner,
      .detail-screen.patch-mode-active .detail-inner {
        display: none !important;
      }
      .patch-drawer-wrapper,
      .patch-panel {
        width: 100%;
      }
    }

    /* Vertical compact viewports (laptops <= 820px height) */
    @media (min-width: 861px) and (max-height: 820px) {
      .detail-screen.has-showcase .detail-inner {
        padding-top: clamp(35px, 4vh, 50px);
        padding-bottom: 20px;
      }
      .detail-screen.has-showcase .detail-title {
        font-size: clamp(2.4rem, 4.5vw, 4.5rem);
        margin: 6px 0 12px;
      }
      .detail-screen.has-showcase .detail-card {
        padding: 14px 18px 40px;
      }
      .detail-screen.has-showcase .detail-description {
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 1.5;
      }
      .detail-screen.has-showcase .detail-info div {
        padding: 7px 10px;
      }
      .detail-screen.has-showcase .features li {
        padding: 3px 0;
        font-size: 12px;
        line-height: 1.55;
      }
      .detail-screen.has-showcase .detail-actions {
        margin-top: 14px;
        gap: 8px;
      }
      .detail-screen.has-showcase .action-button {
        padding: 9px 13px;
        font-size: 11px;
      }
      .showcase-gallery-panel {
        top: clamp(150px, 22vh, 220px);
        bottom: auto;
        gap: 6px;
        width: clamp(380px, 34vw, 480px);
      }
      .gallery-hero-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        flex-shrink: 0;
      }
      .thumb-img-wrap {
        height: clamp(36px, 5vh, 52px);
      }
      .showcase-character-stand {
        height: 100%;
      }
      .character-stage {
        padding-top: clamp(36px, 5.5vh, 60px);
      }
      .character-full-body {
        min-height: 580px;
        height: clamp(580px, 86vh, 880px);
      }
    }


/* =========================================================
   P3R CIRCULAR REVEAL TRANSITION
   ========================================================= */

/* =========================================================
   P3R BOTTOM-LEFT CIRCULAR TRANSITION (IN & OUT)
   ========================================================= */

.detail {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.detail.transitioning,
.detail.open,
.detail.closing {
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Detail Screen */
.detail-screen {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 182, 255, .22), transparent 26rem),
    linear-gradient(145deg, #031b3b, #020817 75%);
  z-index: 60;
  will-change: clip-path, opacity;
}

.detail.open .detail-screen {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at 0% 100%);
}

.detail.detail-revealing .detail-screen {
  opacity: 1;
  visibility: visible;
  animation: p3rDetailWipeIn 0.58s cubic-bezier(0.16, 0.85, 0.35, 1) both;
}

.detail.closing .detail-screen {
  opacity: 1;
  visibility: visible;
  animation: p3rDetailWipeOut 0.38s cubic-bezier(0.35, 0, 0.15, 1) both;
}

.detail.closing .circle-close-arc {
  opacity: 1;
  visibility: visible;
  animation: p3rCloseArcShrink 0.38s cubic-bezier(0.35, 0, 0.15, 1) both;
}

.circle-close-arc {
  position: absolute;
  z-index: 65;
  left: 0;
  bottom: 0;
  width: 280vmax;
  height: 280vmax;
  border-radius: 50%;
  border: clamp(5px, 0.8vw, 12px) solid var(--circle-secondary, #45d8ff);
  box-shadow: 0 0 35px #45d8ff, inset 0 0 25px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 50%) scale(0);
}

/* Detail Content */
.detail .detail-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Transition Overlay Container */
.circle-transition {
  --circle-primary: #078cff;
  --circle-secondary: #45d8ff;
  --circle-dark: #172278;

  position: fixed;
  z-index: 50;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}

.detail.transitioning .circle-transition,
.detail.detail-revealing .circle-transition {
  visibility: visible;
}

/* 1. Base Concentric Circle Layers (Matches P3R Video 1.5s - 3.5s) */
.circle-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320vmax;
  height: 320vmax;
  border-radius: 50%;
  transform: translate(-50%, 50%) scale(0);
  transform-origin: center;
  will-change: transform, opacity;
}

/* Layer 1: Solid Vibrant Cyan Circle */
.circle-layer-cyan {
  z-index: 1;
  background: var(--circle-secondary);
  box-shadow: 0 0 60px var(--circle-secondary);
}

/* Layer 2: Mid Blue Accent Layer */
.circle-layer-blue {
  z-index: 2;
  background: var(--circle-primary);
}

/* Layer 3: Solid Dark Navy Circle (Covers screen by ~0.68s) */
.circle-layer-navy {
  z-index: 4;
  background: var(--circle-dark);
}

/* --- IN ANIMATIONS --- */
.detail.transitioning .circle-layer-cyan {
  animation: p3rCircleExpand 0.70s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.detail.transitioning .circle-layer-blue {
  animation: p3rCircleExpand 0.68s 0.10s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.detail.transitioning .circle-layer-navy {
  animation: p3rCircleExpand 0.70s 0.20s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* 2. Luminous Cyan Arcs */
.circle-arc {
  position: absolute;
  z-index: 6;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, 50%) scale(0);
  will-change: transform, opacity;
}

.circle-arc-large {
  width: 290vmax;
  height: 290vmax;
  border: clamp(5px, 0.75vw, 12px) solid var(--circle-secondary);
  box-shadow:
    0 0 35px var(--circle-secondary),
    inset 0 0 25px rgba(255, 255, 255, 0.45);
}

.circle-arc-small {
  width: 210vmax;
  height: 210vmax;
  border: clamp(2px, 0.35vw, 6px) solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.detail.transitioning .circle-arc-large {
  animation: p3rArcPulse 0.80s 0.26s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.detail.transitioning .circle-arc-small {
  animation: p3rArcPulse 0.76s 0.33s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* 3. Floating Polygon Glass Shards (All-Out Attack) */
.circle-shards {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.shard {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--circle-secondary));
  box-shadow: 0 0 16px var(--circle-secondary);
  filter: drop-shadow(0 0 8px var(--circle-secondary));
}

.shard-1  { width: 28px; height: 38px; clip-path: polygon(50% 0%, 0% 100%, 100% 70%); --s-dist-x: 34vw; --s-dist-y: 62vh; --s-rot: 42deg; --s-delay: 0.04s; }
.shard-2  { width: 18px; height: 24px; clip-path: polygon(0 0, 100% 20%, 45% 100%); --s-dist-x: 18vw; --s-dist-y: 75vh; --s-rot: -65deg; --s-delay: 0.07s; }
.shard-3  { width: 34px; height: 46px; clip-path: polygon(30% 0, 100% 50%, 0 100%); --s-dist-x: 52vw; --s-dist-y: 44vh; --s-rot: 110deg; --s-delay: 0.09s; }
.shard-4  { width: 22px; height: 30px; clip-path: polygon(0 40%, 80% 0, 100% 100%); --s-dist-x: 26vw; --s-dist-y: 38vh; --s-rot: -35deg; --s-delay: 0.03s; }
.shard-5  { width: 30px; height: 40px; clip-path: polygon(50% 0%, 100% 100%, 0% 85%); --s-dist-x: 65vw; --s-dist-y: 28vh; --s-rot: 85deg; --s-delay: 0.11s; }
.shard-6  { width: 16px; height: 22px; clip-path: polygon(20% 0, 100% 30%, 60% 100%, 0 70%); --s-dist-x: 14vw; --s-dist-y: 48vh; --s-rot: -120deg; --s-delay: 0.05s; }
.shard-7  { width: 24px; height: 34px; clip-path: polygon(40% 0, 100% 80%, 10% 100%); --s-dist-x: 42vw; --s-dist-y: 70vh; --s-rot: 145deg; --s-delay: 0.08s; }
.shard-8  { width: 32px; height: 42px; clip-path: polygon(0 0, 90% 40%, 30% 100%); --s-dist-x: 58vw; --s-dist-y: 55vh; --s-rot: -80deg; --s-delay: 0.10s; }
.shard-9  { width: 15px; height: 20px; clip-path: polygon(50% 0, 100% 100%, 0 100%); --s-dist-x: 72vw; --s-dist-y: 19vh; --s-rot: 55deg; --s-delay: 0.06s; }
.shard-10 { width: 25px; height: 32px; clip-path: polygon(10% 0, 100% 20%, 80% 100%, 0 70%); --s-dist-x: 36vw; --s-dist-y: 26vh; --s-rot: -45deg; --s-delay: 0.02s; }

.detail.transitioning .shard {
  animation: p3rShardBurst 0.85s var(--s-delay) cubic-bezier(0.12, 0.88, 0.22, 1) both;
}

/* 4. Project Label */
.circle-project-label {
  position: absolute;
  z-index: 9;
  left: clamp(28px, 6vw, 85px);
  bottom: clamp(28px, 6vw, 75px);
  opacity: 0;
  font-family: Inter, sans-serif;
  transform: translate(-30px, 30px) rotate(-4deg);
}

.circle-project-label small {
  display: block;
  margin-bottom: 6px;
  color: var(--circle-secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.circle-project-label strong {
  display: block;
  color: #fff;
  font-size: clamp(4.5rem, 13vw, 11.5rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.09em;
  text-shadow:
    6px 6px 0 var(--circle-primary),
    14px 14px 0 rgba(0, 0, 0, 0.32);
}

.detail.transitioning .circle-project-label {
  animation: p3rLabelSlide 0.80s 0.12s cubic-bezier(0.14, 0.88, 0.2, 1) both;
}

/* 5. Finish Fade */
.circle-transition.is-finishing {
  animation: p3rOverlayFade 0.25s ease forwards;
}
