:root {
  --bg: radial-gradient(circle at top, #0c0c1f 0%, #000000 80%);
  --accent: #ff2940;
  --accent2: #00ffff;
  --text: #f5f5f5;
  --muted: rgba(255,255,255,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* --- TOPBAR --- */
.topbar {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--accent2);
  text-shadow: 0 0 10px var(--accent2);
}

.topbar nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 1.2rem;
  font-weight: 500;
  transition: 0.2s;
}

.topbar nav a:hover,
.topbar nav a.active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) brightness(0.7) saturate(1.3);
}

.hero .overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 5;
}

.hero h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  text-shadow: 0 0 15px var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 0.4rem;
}

/* --- VHS GRAIN EFFECT --- */
.vhs-grain {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 2px,
    transparent 2px,
    transparent 4px
  );
  animation: flicker 0.2s infinite;
  mix-blend-mode: overlay;
  z-index: 4;
  pointer-events: none;
}

@keyframes flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* --- JET ANIMATION --- */
.jet {
  position: absolute;
  width: 60px;
  height: 10px;
  background: linear-gradient(90deg, var(--accent2), transparent);
  top: 20%;
  left: -100px;
  animation: jet-fly 6s linear infinite;
  opacity: 0.8;
  z-index: 3;
}

@keyframes jet-fly {
  0% { left: -120px; top: 25%; opacity: 1; }
  70% { opacity: 1; }
  100% { left: 110%; top: 10%; opacity: 0; }
}

/* --- SECTIONS --- */
section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

.about h2, .music h2, .contact h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent2);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--accent2);
}

.about p, .contact p {
  font-size: 1.1rem;
  color: #ddd;
}

/* --- MUSIC --- */
.music iframe {
  margin-top: 1rem;
  box-shadow: 0 0 15px var(--accent);
}

/* --- CONTACT --- */
.contact {
  text-align: center;
  padding-top: 5rem;
}

.contact-text {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.email-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.3rem;
  text-shadow: 0 0 10px var(--accent);
}

.email-link:hover {
  color: var(--accent2);
  text-shadow: 0 0 10px var(--accent2);
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--muted);
  color: #aaa;
  font-size: 0.9rem;
}
