:root {
  --color-obsidian: #050505;
  --color-obsidian-soft: #0a0a0a;
  --color-fusion-orange: #ff4d00;
  --color-fusion-glow: rgba(255, 77, 0, 0.4);
  --color-steel-blue: #00a3ff;
  --text-high: #ffffff;
  --text-med: #d6d6d6;
  --text-low: #a3a3a3;
}

body {
  background-color: var(--color-obsidian);
  background-image: url("../../../images/bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-med);
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Wear Overlay - 3% opacity grain/noise */
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  pointer-events: none;
  z-index: 10;
}

/* Background darken // The background image and layout rules are handled in offline-page class and inline HTML */
.brand-header {
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}
.brand-header h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  text-align: center;
  color: #fff;
  margin: 0;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0px #000, -1px -1px 0px rgba(255, 255, 255, 0.1), 0px 0px 20px rgba(255, 255, 255, 0.2);
  animation: text-glitch 4s infinite alternate-reverse;
}
@media (max-width: 500px) {
  .brand-header h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
}

.container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  padding: 0;
  background: var(--color-obsidian-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.terminal-header-bar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-fusion-orange);
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.terminal-header-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-high);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.terminal-content {
  padding: 40px 30px;
}

h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  color: var(--color-fusion-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  font-size: 2.2rem;
  text-shadow: 0 0 10px var(--color-fusion-glow);
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: var(--text-med);
}

.btn-aaa {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-fusion-orange) 0%, #ff6a2b 50%, var(--color-fusion-orange) 100%);
  background-size: 200% 100%;
  color: #000;
  border: 1px solid var(--color-fusion-orange);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: button-energy 3s infinite linear;
  box-shadow: 0 0 10px var(--color-fusion-glow);
}

.btn-aaa::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: button-flare 4s infinite ease-in-out;
}

.btn-aaa:hover {
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.8);
  transform: translateY(-1px);
}

.btn-aaa:active {
  transform: translateY(1px);
  box-shadow: none;
}

.readout-aaa {
  font-family: "JetBrains Mono", monospace;
  color: var(--color-steel-blue);
  font-size: 0.85rem;
  margin-top: 30px;
  opacity: 0.8;
  letter-spacing: 0.5px;
  position: relative;
  animation: text-glitch 2s infinite;
}

@keyframes image-flicker {
  0%, 94%, 98%, 100% {
    filter: brightness(1) contrast(1);
  }
  95% {
    filter: brightness(0.3) contrast(1.2);
  }
  96% {
    filter: brightness(1.2) contrast(1.1);
  }
  97% {
    filter: brightness(0.8) contrast(1);
  }
}
@keyframes cloud-pan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes button-energy {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes button-flare {
  0%, 80% {
    left: -100%;
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  90% {
    left: 200%;
    opacity: 0;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}
@keyframes text-glitch {
  0%, 85% {
    text-shadow: none;
    transform: none;
    opacity: 0.8;
  }
  86% {
    text-shadow: 2px 0 var(--color-fusion-orange), -2px 0 var(--color-steel-blue);
    transform: translate(-1px, 1px);
    opacity: 1;
  }
  88% {
    text-shadow: -2px 0 var(--color-fusion-orange), 2px 0 var(--color-steel-blue);
    transform: translate(1px, -1px);
    opacity: 0.5;
  }
  90% {
    text-shadow: none;
    transform: none;
    opacity: 0.8;
  }
  92% {
    text-shadow: 1px 0 var(--color-fusion-orange), -1px 0 var(--color-steel-blue);
    transform: translate(0, 1px);
  }
  95% {
    opacity: 0.2;
  }
  100% {
    text-shadow: none;
    transform: none;
    opacity: 0.8;
  }
}

/*# sourceMappingURL=offline.css.map */
