:root {
  --bg: #0b0c0f;
  --panel: #12141a;
  --text: #e6e8ee;
  --muted: #9aa1ad;
  --accent: #5eead4;
}

* {
  box-sizing: border-box;
}

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

/* scanline overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 999;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(11,12,15,0.7);
  border-bottom: 1px solid #1f2330;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-family: Orbitron;
  letter-spacing: 3px;
}

.nav-links a {
  margin-left: 20px;
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: .3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(.5);
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero:hover img {
  transform: scale(1.1);
}

.hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-family: Orbitron;
  font-size: 3rem;
  letter-spacing: 4px;
  position: relative;
}

/* glitch effect */
.hero h1::before,
.hero h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
}

.hero h1::before {
  color: red;
  animation: glitch 2s infinite;
}

.hero h1::after {
  color: cyan;
  animation: glitch 1.5s infinite reverse;
}

@keyframes glitch {
  0% { clip-path: inset(0 0 90% 0); }
  50% { clip-path: inset(10% 0 40% 0); }
  100% { clip-path: inset(80% 0 0 0); }
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #1f2330;
  background: var(--panel);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #22d3ee);
  color: #000;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  mix-blend-mode: difference;
}

/* ABOUT SECTION - Fixed alignment & line overlap */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 100px 0;
  position: relative;
}

.about img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all .4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 40px rgba(94, 234, 212, 0.15);
}

.about > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about h2 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--accent);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.release-card {
  background: var(--panel);
  border: 1px solid #1f2330;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.release-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.release-card img {
  width: 100%;
}

.socials a {
  padding: 10px;
  border: 1px solid #1f2330;
  border-radius: 8px;
  margin-right: 10px;
}

.hidden {
  opacity: 0;
  transform: translateY(60px);
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: .8s;
}

/* Prevent unwanted lines between sections */
section {
  position: relative;
}

section + section {
  margin-top: 0;
}

/* About Text Styling */
.about p {
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--muted);
}

.about p:last-of-type {
  margin-bottom: 0;
}

.about .tagline {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-top: 32px;
}

/* responsive */
@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }
  .releases-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}