/* ══════════════════════════════════════════════
   HERO DEVICE ANIMATIONS — Continuously Looping
   ══════════════════════════════════════════════ */

.hero-visual {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: visible;
  perspective: 1200px; /* Enable 3D depth */
}

/* ── HOLOGRAM ENGINEER BACKDROP ── */
.hologram-stage {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  transform-style: preserve-3d;
  transform: translate(var(--stage-tx, 0px), var(--stage-ty, 0px)) rotateX(calc(var(--rx, 0deg) * 0.5)) rotateY(calc(var(--ry, 0deg) * 0.5)) translateZ(-20px) scale(var(--device-scale, 1));
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:not(:hover) .hologram-stage {
  transform: translate(var(--stage-tx, 0px), var(--stage-ty, 0px)) rotateX(0deg) rotateY(0deg) translateZ(-20px) scale(var(--device-scale, 1));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Techno blueprint dotted grid */
.holo-grid {
  position: absolute;
  inset: 20px;
  background-image: radial-gradient(rgba(59, 130, 246, 0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.8;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  animation: gridBreathe 8s ease-in-out infinite alternate;
}

@keyframes gridBreathe {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 0.9; }
}

/* Concentric blueprint blueprint circles */
.holo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.holo-circle.c1 {
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(20, 184, 166, 0.15);
  animation: rotateClockwise 25s linear infinite;
}

.holo-circle.c2 {
  width: 440px;
  height: 440px;
  border: 1px dotted rgba(59, 130, 246, 0.1);
  animation: rotateCounter 35s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounter {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Tech floating coordinates text */
.holo-coords-1, .holo-coords-2 {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  color: var(--brand-blue);
  opacity: 0.45;
  letter-spacing: 1px;
  text-shadow: 0 0 4px rgba(59, 130, 246, 0.2);
}

.holo-coords-1 { top: 15%; left: 8%; animation: floatSlow 6s ease-in-out infinite alternate; }
.holo-coords-2 { bottom: 15%; right: 12%; animation: floatSlow 7s ease-in-out infinite alternate-reverse; }

@keyframes floatSlow {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-8px) translateX(4px); }
}

/* Pulsing radar grid nodes */
.holo-pulse-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--brand-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-teal);
}

.holo-pulse-node.p1 { top: 25%; right: 15%; }
.holo-pulse-node.p2 { bottom: 30%; left: 10%; }

.holo-pulse-node span {
  position: absolute;
  inset: -6px;
  border: 1px solid var(--brand-teal);
  border-radius: 50%;
  animation: nodeRipple 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  opacity: 0;
}

.holo-pulse-node span:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes nodeRipple {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* ── DEVICE STAGE (3D Preserve) ── */
.device-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 2;
  transform: translate(var(--stage-tx, 0px), var(--stage-ty, 0px)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0) scale(var(--device-scale, 1));
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:not(:hover) .device-stage {
  transform: translate(var(--stage-tx, 0px), var(--stage-ty, 0px)) rotateX(0deg) rotateY(0deg) translateZ(0) scale(var(--device-scale, 1));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BROWSER MOCKUP ── */
.mock-browser {
  position: absolute;
  top: 0; left: 0;
  width: 340px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  animation: deviceIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.hero-visual:hover .mock-browser {
  transform: translate3d(0, 0, 15px) !important;
}

.browser-chrome {
  background: #f8f9fa;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eaecef;
}

.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-tabs { display: flex; gap: 2px; flex: 1; align-items: flex-end; }
.b-tab {
  font-size: 0.55rem; font-family: var(--font-body); color: var(--text-light);
  padding: 6px 10px 4px; border-radius: 6px 6px 0 0; background: transparent;
  position: relative;
}

.b-tab-1 { animation: activeTab1 12s infinite; }
.b-tab-2 { animation: activeTab2 12s infinite; }
.b-tab-3 { animation: activeTab3 12s infinite; }

@keyframes activeTab1 {
  0%, 32% { background: #fff; color: var(--text-dark); font-weight: 600; }
  34%, 100% { background: transparent; color: var(--text-light); font-weight: 400; }
}
@keyframes activeTab2 {
  0%, 32% { background: transparent; color: var(--text-light); font-weight: 400; }
  33.33%, 65% { background: #fff; color: var(--text-dark); font-weight: 600; }
  67%, 100% { background: transparent; color: var(--text-light); font-weight: 400; }
}
@keyframes activeTab3 {
  0%, 65% { background: transparent; color: var(--text-light); font-weight: 400; }
  66.66%, 98% { background: #fff; color: var(--text-dark); font-weight: 600; }
  100% { background: transparent; color: var(--text-light); font-weight: 400; }
}

/* Viewport + Screen Cycling */
.browser-viewport {
  position: relative;
  height: 310px;
  background: #fff;
  overflow: hidden;
}

.web-screen {
  position: absolute;
  inset: 0;
  padding: 12px;
  opacity: 0;
  animation: cycleWeb 12s ease-in-out infinite;
}

.screen-landing  { animation-delay: 0s; }
.screen-dashboard { animation-delay: 4s; }
.screen-ecom     { animation-delay: 8s; }

@keyframes cycleWeb {
  0%      { opacity: 0; transform: translateY(8px); }
  5%      { opacity: 1; transform: translateY(0); }
  30%     { opacity: 1; transform: translateY(0); }
  33.33%  { opacity: 0; transform: translateY(-8px); }
  100%    { opacity: 0; }
}

/* ── SCREEN 1: LANDING PAGE ── */
.w-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.w-logo { width: 40px; height: 7px; background: var(--brand-blue); border-radius: 3px; }
.w-nav-items { display: flex; gap: 6px; align-items: center; }
.w-nav-items span { width: 22px; height: 5px; background: #e0e0e0; border-radius: 3px; }
.w-nav-btn { width: 30px; height: 12px; background: var(--brand-blue); border-radius: 4px; }
.w-cart { width: 12px; height: 12px; border-radius: 3px; background: var(--text-dark); }

.w-hero-area { display: flex; gap: 12px; margin-bottom: 14px; }
.w-hero-left { flex: 1.2; }
.w-hero-right { flex: 0.8; }

.w-badge { width: 50px; height: 8px; background: var(--brand-teal); border-radius: 4px; margin-bottom: 8px; opacity: 0.6; }
.w-h1 { height: 10px; background: var(--text-dark); border-radius: 3px; margin-bottom: 5px; width: 95%; }
.w-h1b { width: 60%; }
.w-sub { height: 5px; background: #d1d5db; border-radius: 2px; margin-bottom: 4px; margin-top: 8px; width: 90%; }
.w-sub2 { width: 70%; margin-top: 0; }
.w-btn-row { display: flex; gap: 6px; margin-top: 10px; }
.w-btn-fill { width: 45px; height: 14px; background: var(--brand-blue); border-radius: 4px; }
.w-btn-outline { width: 45px; height: 14px; border: 1.5px solid var(--border-color); border-radius: 4px; }

.w-hero-img {
  width: 100%; height: 100px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #c7d2fe 100%);
  border-radius: 8px;
}

.w-stats-row { display: flex; gap: 8px; }
.w-stat { flex: 1; background: var(--bg-light); border-radius: 6px; padding: 8px; border: 1px solid #f0f0f0; }
.w-stat-num { width: 30px; height: 10px; background: var(--brand-blue); border-radius: 3px; margin-bottom: 4px; }
.w-stat-label { width: 50px; height: 5px; background: #e5e7eb; border-radius: 2px; }

/* ── SCREEN 2: DASHBOARD ── */
.screen-dashboard { display: flex; padding: 0; }

.d-sidebar {
  width: 55px; background: #1e293b; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 6px; flex-shrink: 0;
}
.d-sb-logo { width: 20px; height: 20px; background: var(--brand-blue); border-radius: 6px; margin-bottom: 8px; }
.d-sb-item { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.d-sb-item.active { background: var(--brand-blue); }
.d-sb-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }

.d-main { flex: 1; padding: 10px; }
.d-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.d-search { width: 90px; height: 14px; background: var(--bg-light); border-radius: 4px; border: 1px solid #eee; }
.d-avatar { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.d-cards-row { display: flex; gap: 6px; margin-bottom: 10px; }
.d-metric {
  flex: 1; background: var(--bg-light); border-radius: 6px;
  padding: 8px; border: 1px solid #f0f0f0;
}
.d-metric-val { width: 28px; height: 10px; background: var(--text-dark); border-radius: 3px; margin-bottom: 3px; }
.d-metric-label { width: 40px; height: 4px; background: #d1d5db; border-radius: 2px; margin-bottom: 6px; }
.d-metric-bar { height: 4px; background: #f3f4f6; border-radius: 2px; overflow: hidden; }
.d-bar-fill { height: 100%; border-radius: 2px; animation: barGrow 1s ease forwards; }
.d-bar-fill.f1 { width: 75%; background: var(--brand-teal); animation-delay: 4.3s; }
.d-bar-fill.f2 { width: 55%; background: var(--brand-blue); animation-delay: 4.5s; }
.d-bar-fill.f3 { width: 90%; background: var(--brand-purple); animation-delay: 4.7s; }

@keyframes barGrow {
  from { width: 0; }
}

.d-chart {
  background: var(--bg-light); border-radius: 6px; padding: 10px;
  border: 1px solid #f0f0f0; height: 90px;
}
.d-chart-bars { display: flex; gap: 6px; align-items: flex-end; height: 100%; }
.d-cb {
  flex: 1; background: var(--brand-blue); border-radius: 3px 3px 0 0;
  height: var(--h); opacity: 0.8;
  animation: chartBarIn 0.5s ease forwards;
  animation-delay: calc(4.5s + var(--h, 0) * 0.01);
}

.d-cb:nth-child(even) { background: var(--brand-teal); }

@keyframes chartBarIn {
  from { height: 0; }
}

/* ── SCREEN 3: E-COMMERCE ── */
.e-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.e-product { background: var(--bg-light); border-radius: 8px; overflow: hidden; border: 1px solid #f0f0f0; }
.e-img { width: 100%; height: 65px; background: linear-gradient(135deg, #fef3c7, #fde68a); }
.e-img.i2 { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.e-img.i3 { background: linear-gradient(135deg, #fce7f3, #f9a8d4); }
.e-img.i4 { background: linear-gradient(135deg, #d1fae5, #6ee7b7); }
.e-info { padding: 6px 8px; }
.e-name { width: 70%; height: 5px; background: var(--text-dark); border-radius: 2px; margin-bottom: 4px; }
.e-price { width: 35%; height: 6px; background: var(--brand-blue); border-radius: 2px; }


/* ══════════════════════════════════════
   PHONE MOCKUP
   ══════════════════════════════════════ */

.mock-phone {
  position: absolute;
  bottom: -20px; right: 0;
  width: 185px;
  background: #111;
  border-radius: 32px;
  padding: 6px;
  border: 2px solid #374151;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3), inset 0 0 0 2px rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: deviceIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.hero-visual:hover .mock-phone {
  transform: translate3d(5px, 0, 35px) scale(1.01) !important;
}


.phone-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 9px;
  background: #000;
  border-radius: 5px;
  z-index: 100;
}

.phone-viewport {
  background: #fff;
  border-radius: 26px;
  height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* App Screen Cycling */
.app-screen {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 40px;
  opacity: 0;
  animation: cycleApp 12s ease-in-out infinite;
  display: flex;
  flex-direction: column;
}

.app-feed   { animation-delay: 0s; }
.app-health { animation-delay: 4s; }
.app-chat   { animation-delay: 8s; }

@keyframes cycleApp {
  0%      { opacity: 0; transform: translateX(12px); }
  5%      { opacity: 1; transform: translateX(0); }
  30%     { opacity: 1; transform: translateX(0); }
  33.33%  { opacity: 0; transform: translateX(-12px); }
  100%    { opacity: 0; }
}

/* Shared Status Bar */
.a-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 12px 2px; font-size: 0.55rem; font-weight: 700; color: var(--text-dark);
  position: relative;
  z-index: 90;
}
.a-indicators { display: flex; gap: 3px; }
.a-indicators span { width: 10px; height: 5px; background: var(--text-dark); border-radius: 2px; }

/* Shared Header */
.a-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 14px 8px;
}
.a-h-title { width: 60px; height: 10px; background: var(--text-dark); border-radius: 3px; }
.a-h-icon { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--text-dark); }

/* ── APP SCREEN 1: SOCIAL FEED ── */
.a-stories { display: flex; gap: 6px; padding: 0 14px 8px; }
.a-story {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #f472b6, #a78bfa);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #e879f9;
}
.a-story.s2 { background: linear-gradient(135deg, #34d399, #06b6d4); box-shadow: 0 0 0 1.5px #34d399; }
.a-story.s3 { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 0 0 1.5px #fbbf24; }
.a-story.s4 { background: linear-gradient(135deg, #60a5fa, #3b82f6); box-shadow: 0 0 0 1.5px #60a5fa; }

.a-post { padding: 0 14px; }
.a-post-head { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; }
.a-post-av { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue)); flex-shrink: 0; }
.a-post-name { display: flex; flex-direction: column; gap: 2px; }
.a-pn { width: 50px; height: 5px; background: var(--text-dark); border-radius: 2px; }
.a-pt { width: 30px; height: 4px; background: #d1d5db; border-radius: 2px; }

.a-post-img {
  width: 100%; height: 90px; border-radius: 8px;
  background: linear-gradient(135deg, #dbeafe 0%, #a5b4fc 50%, #c4b5fd 100%);
  margin-bottom: 6px;
}

.a-post-actions { display: flex; gap: 8px; margin-bottom: 4px; }
.a-post-actions span { width: 14px; height: 14px; border-radius: 3px; background: #e5e7eb; }
.a-post-actions span:first-child { background: #fca5a5; }
.a-post-likes { width: 40px; height: 5px; background: var(--text-dark); border-radius: 2px; margin-bottom: 3px; }
.a-post-cap { width: 80%; height: 4px; background: #d1d5db; border-radius: 2px; }

/* ── APP SCREEN 2: HEALTH ── */
.h-ring-container { display: flex; justify-content: center; padding: 12px 0; }
.h-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 6px solid #f3f4f6;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.h-ring::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--brand-teal);
  border-right-color: var(--brand-teal);
  transform: rotate(45deg);
  animation: ringFill 2s ease infinite;
}

@keyframes ringFill {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.h-ring-inner { text-align: center; }
.h-ring-num { width: 24px; height: 10px; background: var(--text-dark); border-radius: 3px; margin: 0 auto 2px; }
.h-ring-label { width: 18px; height: 4px; background: #d1d5db; border-radius: 2px; margin: 0 auto; }

.h-metrics { padding: 0 14px; display: flex; flex-direction: column; gap: 8px; }
.h-met { display: flex; gap: 8px; align-items: center; padding: 8px; background: var(--bg-light); border-radius: 8px; }
.h-met-icon { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; }
.h-met-info { flex: 1; }
.h-met-val { width: 30px; height: 7px; background: var(--text-dark); border-radius: 2px; margin-bottom: 3px; }
.h-met-lab { width: 50px; height: 4px; background: #d1d5db; border-radius: 2px; }

/* ── APP SCREEN 3: CHAT ── */
.c-header {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px 8px; border-bottom: 1px solid #f3f4f6;
}
.c-back {
  width: 8px; height: 8px;
  border-left: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: rotate(45deg);
}
.c-av { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #f472b6, #ec4899); flex-shrink: 0; }
.c-name { display: flex; flex-direction: column; gap: 2px; }
.c-n { width: 45px; height: 6px; background: var(--text-dark); border-radius: 2px; }
.c-online { width: 25px; height: 4px; background: #34d399; border-radius: 2px; }

.c-body {
  flex: 1; padding: 8px 14px;
  display: flex; flex-direction: column; gap: 5px;
  overflow: hidden;
}

.c-msg { display: flex; }
.c-in { justify-content: flex-start; }
.c-out { justify-content: flex-end; }

.c-bubble {
  width: 70px; height: 18px; border-radius: 12px;
  background: #f3f4f6;
}
.c-bubble.long { width: 100px; }
.c-bubble.out { background: var(--brand-blue); }

.c-input {
  display: flex; gap: 6px; padding: 8px 14px;
  border-top: 1px solid #f3f4f6; align-items: center;
}
.c-input-field {
  flex: 1; height: 22px;
  background: #f9fafb; border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.c-send {
  width: 22px; height: 22px;
  background: var(--brand-blue); border-radius: 50%;
}

/* ── PHONE TAB BAR (always visible) ── */
.phone-tab-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 8px 14px;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  z-index: 10;
}
.phone-tab-bar span {
  width: 16px; height: 16px;
  border-radius: 4px; background: #e5e7eb;
}
.phone-tab-bar .tab-active { background: var(--brand-blue); }

/* ── KEYFRAMES ── */
@keyframes deviceIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .device-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    --stage-tx: -50%;
    --stage-ty: -50%;
    --device-scale: 0.8;
    width: 480px;
    height: 380px;
    transform-origin: center center;
  }
  .hero-visual:not(:hover) .device-stage {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) translateZ(0) scale(0.8);
  }
  .hologram-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    --stage-tx: -50%;
    --stage-ty: -50%;
    --device-scale: 0.85;
    width: 480px;
    height: 380px;
    transform-origin: center center;
  }
  .hero-visual:not(:hover) .hologram-stage {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) translateZ(-20px) scale(0.85);
  }
}

@media (max-width: 768px) {
  .hero-visual {
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }
  .device-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    --stage-tx: -50%;
    --stage-ty: -50%;
    --device-scale: 0.65;
    width: 480px;
    height: 380px;
    transform-origin: center center;
  }
  .hero-visual:not(:hover) .device-stage {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) translateZ(0) scale(0.65);
  }
  .hologram-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    --stage-tx: -50%;
    --stage-ty: -50%;
    --device-scale: 0.68;
    width: 480px;
    height: 380px;
    transform-origin: center center;
  }
  .hero-visual:not(:hover) .hologram-stage {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) translateZ(-20px) scale(0.68);
  }
}
