/*
  LiveWave Studios — Standalone helper stylesheet
  ------------------------------------------------
  This file used to contain Divi-only overrides.
  The page is now hosted as a normal standalone HTML file,
  so this stylesheet provides safe global defaults for direct hosting.
*/

/* Keep browser defaults predictable across desktop/mobile. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

/* Make media responsive by default. */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* Better accessibility focus ring for keyboard users. */
:focus-visible {
  outline: 2px solid #25f4ee;
  outline-offset: 2px;
}

/* Selection colors that match brand palette. */
::selection {
  background: rgba(254, 44, 85, 0.35);
  color: #fff;
}

/* Respect reduced-motion preference where possible. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
