/* ======================================================
   PROJECT ORANGE — CYBER HACKER REFLECTIVE EDITION
   Fonts: Orbitron (titles), Audiowide (text)
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Audiowide&display=swap');

/* ==== GLOBAL ==== */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Audiowide', sans-serif;
  color: #dffbff;
  background: radial-gradient(circle at 10% 10%, #010a0f 0%, #000000 80%);
  overflow-x: hidden;
  text-align: center;
  position: relative;
  animation: fadeInBody 1.5s ease-out forwards;
}

@keyframes fadeInBody {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

/* ==== LIQUID GLASS REFLECTION OVERLAY ==== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,255,255,0.08), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,100,255,0.1), transparent 60%),
    repeating-linear-gradient(0deg, rgba(0,255,255,0.04) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 40px);
  mix-blend-mode: overlay;
  backdrop-filter: blur(14px) brightness(1.3);
  -webkit-backdrop-filter: blur(14px) brightness(1.3);
  z-index: 0;
  pointer-events: none;
  animation: huePulse 6s ease-in-out infinite alternate;
}

@keyframes huePulse {
  0% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(60deg) brightness(1.2); }
  100% { filter: hue-rotate(-60deg) brightness(1); }
}

/* ==== LIGHT SHIMMER REFLECTION ==== */
.reflection {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.03) 50%,
    rgba(255,255,255,0.12) 100%
  );
  opacity: 0.2;
  mix-blend-mode: screen;
  animation: shimmer 7s ease-in-out infinite alternate;
  z-index: 2;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-10%) skewX(10deg); opacity: 0.15; }
  50% { transform: translateX(10%) skewX(-10deg); opacity: 0.3; }
  100% { transform: translateX(-5%) skewX(5deg); opacity: 0.15; }
}



@keyframes noise {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(1px,-1px); }
  40% { transform: translate(-1px,1px); }
  60% { transform: translate(2px,-2px); }
  80% { transform: translate(-2px,2px); }
}

/* ==== CONTAINER ==== */
body > * {
  position: relative;
  z-index: 5;
  padding: 40px 5%;
  width: 90%;
  max-width: 100%;
  margin: auto;
}

/* ==== TITLES ==== */
.title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3em;
  color: #00eaff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px #00eaff, 0 0 40px #0077ff;
  animation: titleGlow 2s infinite alternate ease-in-out, hueFlow 3s infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px #00ffff, 0 0 40px #0044ff; }
  50% { text-shadow: 0 0 45px #00ccff, 0 0 80px #00ffff; }
  100% { text-shadow: 0 0 25px #0044ff, 0 0 60px #00ffff; }
}

@keyframes hueFlow {
  0% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(45deg); }
  100% { filter: hue-rotate(-45deg); }
}

/* ==== TAGLINES ==== */
.tagline {
  font-family: 'Audiowide', sans-serif;
  font-size: 1.2em;
  color: #00ffa6;
  text-shadow: 0 0 8px #00ffa6, 0 0 20px #00ffcc;
  animation: flickerText 2.8s infinite alternate;
  margin: 5px 0;
}

@keyframes flickerText {
  0%, 19%, 21%, 23%, 80%, 100% { opacity: 1; }
  20%, 22%, 24%, 50% { opacity: 0.5; }
}

/* ==== BUTTONS (LIQUID GLASS STYLE) ==== */
.menu button {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 2px solid #00eaff;
  color: #00eaff;
  padding: 14px 28px;
  margin: 10px auto;
  border-radius: 14px;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 15px #00ffff70, inset 0 0 12px rgba(0,255,255,0.2);
  overflow: hidden;
  animation: neonPulse 1.8s infinite alternate ease-in-out;
}

@keyframes neonPulse {
  0% { box-shadow: 0 0 15px #00ffff60, 0 0 25px #0047ff30; }
  100% { box-shadow: 0 0 30px #00ffffaa, 0 0 50px #00ccff80; }
}

.menu button:hover {
  background: rgba(0,255,255,0.2);
  color: #000;
  transform: scale(1.07);
  box-shadow: 0 0 30px #00ffffaa, inset 0 0 25px #00ffff;
}

/* LIQUID REFLECTION ON BUTTONS */
.menu button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.5), transparent);
  transform: skewX(-30deg);
  transition: 0.6s;
}
.menu button:hover::before { left: 130%; }

/* ==== TEXT ==== */
p, li {
  font-family: 'Audiowide', sans-serif;
  text-align: justify;
  color: #baf7ff;
  line-height: 1.7em;
  font-size: 1rem;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid rgba(0,255,255,0.4);
  padding: 10px 15px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.4s ease, transform 0.3s ease, border-color 1s ease;
}
p:hover, li:hover {
  background: rgba(0,255,255,0.08);
  border-color: #0077ff;
  transform: scale(1.03);
}

/* ==== FOOTER ==== */
footer {
  font-family: 'Audiowide', sans-serif;
  color: #00b7ff;
  text-shadow: 0 0 5px #00b7ff, 0 0 10px #0047ff;
  margin-top: 4em;
  text-align: center;
  opacity: 0.9;
  animation: footerPulse 3s infinite alternate ease-in-out;
}
@keyframes footerPulse {
  0% { text-shadow: 0 0 8px #0047ff; }
  100% { text-shadow: 0 0 25px #00ffff; }
}

/* ==== SOCIALS ==== */
.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}
.socials a {
  color: #00eaff;
  font-size: 1.6em;
  transition: all 0.25s ease;
  text-decoration: none;
}
.socials a:hover {
  color: #00ffff;
  text-shadow: 0 0 25px #00ffff, 0 0 45px #00aaff;
  transform: scale(1.3);
}

/* ==== AUDIO ==== */
audio#bg-music { display: none; }
