/* ============================================================================
   3D Universe Navigation System - Styles
   ============================================================================ */

/* Universe Canvas Container */
html,
body {
  background-color: #000000 !important;
  background-image: radial-gradient(
    circle at 50% 35%,
    #050a1a 0%,
    #02050d 45%,
    #000000 75%
  ) !important;
}

#universe-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: auto;
  touch-action: none;
  background-color: #000000;
  background-image: radial-gradient(
    circle at 50% 35%,
    #050a1a 0%,
    #02050d 45%,
    #000000 75%
  );
  overflow: hidden;
}

#webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
  touch-action: none;
  z-index: 3;
}

#css3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  touch-action: none;
  z-index: 4;
}

#css3d-canvas > div {
  pointer-events: auto;
}

/* Make content semi-transparent to see universe behind */
body.site {
  background: transparent !important;
}

/* CRITICAL: Make all main containers transparent to see canvas */
.site-grid {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.container-header {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: sticky;
  top: 0;
  z-index: 20 !important; /* Above the universe */
  pointer-events: auto !important;
  overflow: visible;
}

.container-footer {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1 !important;
}

/* Ensure content is visible over canvas */
.site-grid {
  position: relative;
  z-index: 1 !important;
}

/* Main component content should be behind universe */
.container-component {
  position: relative;
  z-index: 1 !important;
}

/* Make main content areas slightly transparent */
.container-component {
  background: rgba(0, 0, 0, 0.15) !important;
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Show Joomla content on non-home pages */
body:not([data-universe-page="home"]) #universe-container {
  pointer-events: auto;
  opacity: 1;
}

/* Main Content Box - Left Third on Desktop, Top Two-Thirds on Mobile */
body:not([data-universe-page="home"]) .site-grid {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 33.333vw !important;
  height: 100vh !important;
  max-width: none !important;
  overflow-y: auto !important;
  z-index: 21 !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9) !important;
  border-right: 1px solid rgba(199, 116, 0, 0.3) !important;
  padding: 0 !important;
  margin: 0 !important;
  animation: slideInFromLeft 0.4s ease-out;
  display: block !important;
  grid-template-areas: none !important;
  grid-template-columns: 1fr !important;
}

body:not([data-universe-page="home"]) .container-header,
body:not([data-universe-page="home"]) .container-footer {
  z-index: 20 !important;
}

body:not([data-universe-page="home"]) .container-component {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  padding: 3rem 2rem !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  z-index: 1 !important;
}

/* Mobile: Top Two-Thirds */
@media (max-width: 768px) {
  body:not([data-universe-page="home"]) .site-grid {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 66.666vh !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(199, 116, 0, 0.3) !important;
    animation: slideInFromTop 0.4s ease-out;
  }

  body:not([data-universe-page="home"]) .container-component {
    padding: 2rem 1.5rem !important;
  }
}

/* Override all grid-child containers */
.grid-child {
  background: transparent !important;
}

/* Article content with glassmorphism */
.com-content-article {
  background: rgba(0, 20, 40, 0.5) !important;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(199, 116, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hologramm Panels - CSS3D Content Display */
.hologram-panel {
  width: 600px;
  max-height: 800px;
  background: rgba(0, 20, 40, 0.85);
  border: 2px solid rgba(199, 116, 0, 0.6);
  padding: 2rem;
  overflow-y: auto;
  position: relative;
  will-change: transform, opacity;
  transform: translateZ(0);
  box-shadow: 0 0 20px rgba(199, 116, 0, 0.3),
    inset 0 0 40px rgba(0, 100, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: hologramGlow 3s ease-in-out infinite;
}

.hologram-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(199, 116, 0, 0.03) 2px,
    rgba(199, 116, 0, 0.03) 4px
  );
  pointer-events: none;
  animation: scanlines 10s linear infinite;
}

.hologram-panel .item-title {
  color: #c77400;
  font-family: "snippletweakregular", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto;
  text-shadow: 0 0 10px rgba(199, 116, 0, 0.5);
  margin-bottom: 1rem;
}

.hologram-panel .item-content,
.hologram-panel .page-header,
.hologram-panel .article-info {
  color: #ffffff;
  font-family: "Aleo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

.hologram-panel img {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(199, 116, 0, 0.3);
  box-shadow: 0 0 20px rgba(199, 116, 0, 0.2);
}

/* Animations */
@keyframes hologramGlow {
  0%,
  100% {
    border-color: rgba(199, 116, 0, 0.6);
    box-shadow: 0 0 20px rgba(199, 116, 0, 0.3);
  }
  50% {
    border-color: rgba(199, 116, 0, 1);
    box-shadow: 0 0 40px rgba(199, 116, 0, 0.6);
  }
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Keep header minimal in content view */
body:not([data-universe-page="home"]) .container-header {
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 1rem 2rem !important;
}

/* Custom Scrollbar for Content Box */
body:not([data-universe-page="home"]) .site-grid::-webkit-scrollbar {
  width: 8px;
}

body:not([data-universe-page="home"]) .site-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

body:not([data-universe-page="home"]) .site-grid::-webkit-scrollbar-thumb {
  background: rgba(199, 116, 0, 0.5);
  border-radius: 4px;
}

body:not([data-universe-page="home"])
  .site-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(199, 116, 0, 0.8);
}

/* Improve text readability in content box */
body:not([data-universe-page="home"]) .container-component * {
  color: rgba(255, 255, 255, 0.95) !important;
}

body:not([data-universe-page="home"]) .container-component h1,
body:not([data-universe-page="home"]) .container-component h2,
body:not([data-universe-page="home"]) .container-component h3 {
  color: #c77400 !important;
  text-shadow: 0 0 10px rgba(199, 116, 0, 0.3);
}

body:not([data-universe-page="home"]) .container-component a {
  color: #c77400 !important;
  transition: color 0.2s ease;
}

body:not([data-universe-page="home"]) .container-component a:hover {
  color: #ff9d00 !important;
}

/* Contact Form Optimizations for Content Box */
body:not([data-universe-page="home"]) .com-contact {
  max-width: 100% !important;
}

body:not([data-universe-page="home"]) .com-contact .page-header {
  text-align: center !important;
  margin-bottom: 2rem !important;
}

body:not([data-universe-page="home"]) .com-contact__thumbnail {
  text-align: center !important;
  margin: 2rem auto !important;
  max-width: 200px !important;
}

body:not([data-universe-page="home"]) .com-contact__thumbnail img {
  border-radius: 50% !important;
  border: 2px solid rgba(199, 116, 0, 0.5) !important;
  box-shadow: 0 0 20px rgba(199, 116, 0, 0.3) !important;
}

/* Contact Form Fields */
body:not([data-universe-page="home"]) .com-contact input[type="text"],
body:not([data-universe-page="home"]) .com-contact input[type="email"],
body:not([data-universe-page="home"]) .com-contact textarea,
body:not([data-universe-page="home"]) .com-contact select {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(199, 116, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  padding: 0.75rem !important;
  border-radius: 4px !important;
  margin-bottom: 1rem !important;
  transition: all 0.3s ease !important;
}

body:not([data-universe-page="home"]) .com-contact input[type="text"]:focus,
body:not([data-universe-page="home"]) .com-contact input[type="email"]:focus,
body:not([data-universe-page="home"]) .com-contact textarea:focus,
body:not([data-universe-page="home"]) .com-contact select:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(199, 116, 0, 0.7) !important;
  box-shadow: 0 0 10px rgba(199, 116, 0, 0.2) !important;
  outline: none !important;
}

body:not([data-universe-page="home"]) .com-contact textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

body:not([data-universe-page="home"]) .com-contact label {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

body:not([data-universe-page="home"]) .com-contact .required {
  color: #c77400 !important;
}

/* Submit Button */
body:not([data-universe-page="home"]) .com-contact button[type="submit"],
body:not([data-universe-page="home"]) .com-contact .btn-primary {
  background: rgba(199, 116, 0, 0.8) !important;
  border: 1px solid rgba(199, 116, 0, 1) !important;
  color: #ffffff !important;
  padding: 0.75rem 2rem !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-top: 1rem !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

body:not([data-universe-page="home"]) .com-contact button[type="submit"]:hover,
body:not([data-universe-page="home"]) .com-contact .btn-primary:hover {
  background: rgba(199, 116, 0, 1) !important;
  box-shadow: 0 0 20px rgba(199, 116, 0, 0.5) !important;
  transform: translateY(-2px) !important;
}

/* Contact Details */
body:not([data-universe-page="home"]) .com-contact dl {
  margin: 1rem 0 !important;
}

body:not([data-universe-page="home"]) .com-contact dt {
  color: #c77400 !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
}

body:not([data-universe-page="home"]) .com-contact dd {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-left: 0 !important;
  padding-left: 1rem !important;
}

/* Contact Icons */
body:not([data-universe-page="home"]) .com-contact .icon-envelope,
body:not([data-universe-page="home"]) .com-contact .icon-phone,
body:not([data-universe-page="home"]) .com-contact .icon-home,
body:not([data-universe-page="home"]) .com-contact [class*="icon-"] {
  color: #c77400 !important;
  margin-right: 0.5rem !important;
}

/* Contact Container Spacing */
body:not([data-universe-page="home"]) .com-contact__container {
  margin-bottom: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

body:not([data-universe-page="home"]) .com-contact__info {
  margin-top: 1.5rem !important;
  width: 100% !important;
  max-width: 400px !important;
}

/* Address Block Layout - Icons left, Text left aligned */
body:not([data-universe-page="home"]) .com-contact__info dl {
  display: grid !important;
  grid-template-columns: 40px 1fr !important;
  gap: 0.5rem 1rem !important;
  align-items: start !important;
}

body:not([data-universe-page="home"]) .com-contact__info dt {
  grid-column: 1 !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}

body:not([data-universe-page="home"]) .com-contact__info dd {
  grid-column: 2 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

/* Ensure icons are visible and properly sized */
body:not([data-universe-page="home"]) .com-contact__info dt [class*="icon-"] {
  font-size: 1.5rem !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* VCard Link */
body:not([data-universe-page="home"]) .com-contact__info > p,
body:not([data-universe-page="home"]) .com-contact__info > a {
  text-align: center !important;
  margin-top: 1.5rem !important;
  display: block !important;
}

/* Footer - Above Universe */
.container-footer {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none !important;
  padding: 0 2rem 1.5rem 2rem !important;
}

.container-footer * {
  pointer-events: auto !important;
}

/* Footer grid-child wrapper */
.container-footer .grid-child {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: stretch !important;
  width: 100% !important;
  position: relative !important;
  gap: 1.5rem !important;
}

/* Footer Left Section - Newsletter Form */
.container-footer .acym_module,
.container-footer .acym_module_form {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  grid-column: 1 !important;
  justify-self: start !important;
  flex: 0 0 auto !important;
  z-index: 1 !important;
}

.container-footer .grid-child > .mod-custom {
  position: relative !important;
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

.container-footer .mod-custom.zs-logo {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

.container-footer .grid-child > .mod-custom:first-child {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
  justify-content: center !important;
}

.container-footer .mod-custom form,
.container-footer .mod-custom .acym_module_form,
.container-footer .acym_module form,
.container-footer .acym_module_form form {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
}

.container-footer .mod-custom input[type="email"],
.container-footer .mod-custom input[type="text"] {
  order: 1 !important;
  width: 200px !important;
  padding: 0.5rem 0.75rem !important;
  margin-top: 0 !important;
  font-size: 0.85rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(199, 116, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 4px !important;
}

.container-footer .acym_module_form input[type="email"],
.container-footer .acym_module_form input[type="text"] {
  margin-top: 0 !important;
}

.container-footer .mod-custom button[type="submit"],
.container-footer .mod-custom .btn,
.container-footer .mod-custom input[type="submit"] {
  order: 2 !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
  background: rgba(199, 116, 0, 0.8) !important;
  border: 1px solid rgba(199, 116, 0, 1) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.container-footer .mod-custom button[type="submit"]:hover,
.container-footer .mod-custom .btn:hover,
.container-footer .mod-custom input[type="submit"]:hover {
  background: rgba(199, 116, 0, 1) !important;
}

.container-footer .mod-menu {
  grid-column: 3 !important;
  justify-self: end !important;
  align-items: center !important;
  gap: 1.25rem !important;
}

.container-footer .mod-menu ul {
  display: flex;
  align-items: center !important;
  gap: 1.25rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.container-footer .mod-menu li {
  margin: 0 !important;
}

.container-footer .custom-logo,
.container-footer .brand-logo,
.container-footer .zs-logo {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  .container-footer {
    padding: 1rem !important;
  }

  .container-footer .grid-child {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 1rem !important;
  }

  .container-footer .mod-custom,
  .container-footer .custom-logo,
  .container-footer .brand-logo,
  .container-footer .mod-menu {
    grid-column: 1 !important;
    justify-self: center !important;
  }

  .container-footer input[type="email"],
  .container-footer input[type="text"] {
    width: 150px !important;
  }
}

/* Loading Screen */
.universe-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #c77400;
  font-family: "snippletweakregular", monospace;
  font-size: 3rem;
  transition: opacity 1s ease;
}

.universe-loading.loaded {
  opacity: 0;
  pointer-events: none;
}

/* Planet Labels - CSS3D Menu Navigation */
#universe-label-layer {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.planet-label {
  --label-accent: rgba(199, 116, 0, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: "Aleo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--label-size, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 170, 80, 0.6),
    0 0 36px rgba(199, 116, 0, 0.35);
  pointer-events: none;
  cursor: pointer !important;
  white-space: nowrap;
  opacity: 0;
  transition: none;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
  z-index: 9999;
  user-select: none;
  -webkit-user-select: none;
}

.planet-label.planet-label-visible {
  opacity: 1;
  pointer-events: auto;
}

.planet-label-line {
  display: none;
}

.planet-label-text {
  font-weight: 600;
  line-height: 1;
  padding: 4px 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.25)
  );
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.planet-label:hover {
  filter: drop-shadow(0 0 18px rgba(255, 190, 110, 0.8));
}

.planet-label:hover .planet-label-line,
.planet-label:hover .planet-label-line::before {
  border-bottom-color: rgba(255, 255, 255, 0.95);
}

/* Audio hint */
.universe-audio-hint {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translate(-50%, 10px);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(4, 12, 28, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Aleo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 8;
}

.universe-audio-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Social mini-universe */
.universe-social-source {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#universe-social-source {
  position: absolute;
  inset: auto 0 0 0;
  pointer-events: auto;
  opacity: 1;
  z-index: 6;
}

#universe-social-source.universe-social-source {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.social-universe-orb {
  --social-accent: 125, 185, 255;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: rgb(var(--social-accent));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(var(--social-accent), 0.85);
  box-shadow: 0 0 26px rgba(var(--social-accent), 0.75),
    inset 0 0 18px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-universe-orb:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(var(--social-accent), 0.85),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.social-universe-orb img,
.social-universe-orb svg {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.social-universe-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
}

.social-universe-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: auto;
  will-change: transform, opacity;
}

.social-universe-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--orbit-radius) * 2);
  height: calc(var(--orbit-radius) * 1.35);
  transform: translate(-50%, -50%) rotateX(65deg);
  border-radius: 50%;
  border: 1px solid rgba(125, 185, 255, 0.4);
  box-shadow: 0 0 35px rgba(125, 185, 255, 0.2);
  pointer-events: none;
}

.social-universe-fallback .social-universe-orb {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: auto;
  will-change: transform, opacity;
}

/* WebGL Fallback */
.no-webgl-fallback {
  background: #000000;
}

.no-webgl-fallback #universe-container {
  display: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hologram-panel {
    width: 90vw;
    max-width: 400px;
    padding: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(199, 116, 0, 0.3);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 20, 40, 0.95);
  }

  .universe-loading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hologram-panel {
    width: 95vw;
    max-width: 350px;
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .universe-loading {
    font-size: 1.5rem;
  }
}
