﻿:root {
  --bg: #040608;
  --bg-2: #0b0f14;
  --text: #eaeff4;
  --muted: #94a3b8;
  --accent: #00e5ff;
  --accent-2: #66f7ff;
  --shadow: 0 0 12px rgba(0, 229, 255, 0.6), 0 0 42px rgba(0, 229, 255, 0.2);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 800px at 50% -20%, #001018 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  font-family: "Share Tech Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 229, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 229, 255, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(0, 229, 255, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particlesFloat 15s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}
.background .scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 3px
);
  pointer-events: none;
  animation: scanlinesMove 20s linear infinite;
}

@keyframes scanlinesMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}
.background .grid {
  position: fixed;
  inset: auto 0 0 0;
  height: 50vh;
  background-image: linear-gradient(rgba(0, 229, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  opacity: 0.4;
  pointer-events: none;
}
.container {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 64px 20px;
}
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.logo {
  width: clamp(300px, 35vw, 450px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero {
  text-align: center;
}
.title {
  font-family: "Boge", "Orbitron", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(40px, 8vw, 86px);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 2px #ffffff, 0 0 14px rgba(255, 255, 255, 0.5),
    0 0 32px rgba(0, 229, 255, 0.45);
  animation: pulse 3.2s ease-in-out infinite;
  position: relative;
}

.title::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, transparent, rgba(0, 229, 255, 0.1), transparent);
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.title span {
  display: inline-block;
  padding: 0 8px;
  border-bottom: 2px solid rgba(0, 229, 255, 0.5);
  box-shadow: inset 0 -8px 20px rgba(0, 229, 255, 0.08);
}
.tagline {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(14px, 2.5vw, 18px);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer {
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(0, 10, 14, 0.6);
  backdrop-filter: blur(8px);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
  margin-right: 16px;
  position: relative;
}
.footer-nav a:last-child {
  margin-right: 0;
}
.footer-nav a:hover {
  color: var(--accent);
  text-shadow: var(--shadow);
}
@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 2px #ffffff, 0 0 14px rgba(255, 255, 255, 0.5), 0 0 22px rgba(0, 229, 255, 0.35);
  }
  50% {
    text-shadow: 0 0 4px #ffffff, 0 0 26px rgba(255, 255, 255, 0.8), 0 0 48px rgba(0, 229, 255, 0.6);
  }
}
::selection {
  background: rgba(0, 229, 255, 0.3);
  color: #001018;
}
@media (max-width: 520px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-nav {
    width: 100%;
  }
}
