/* ===== TOKENS ===== */
:root {
  --red:        #cc0000;
  --red-bright: #ff2222;
  --red-dim:    #880000;
  --bg:         #0a0a0a;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --surface:    #1c1c1c;
  --border:     #2a2a2a;
  --text:       #e8e8e8;
  --text-muted: #888888;
  --white:      #ffffff;
  --font-display: 'Orbitron', 'Courier New', monospace;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h:      64px;
  --radius:     4px;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4em;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-top: 0.5em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red-bright);
  transform: translateY(-2px);
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(204,0,0,0.5));
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

#lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
#lang-toggle:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

/* Hamburger */
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 700px) {
  #nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-links.open {
    max-height: 300px;
    padding: 24px 0;
  }
  .nav-links a { padding: 14px 0; font-size: 0.8rem; }
  #lang-toggle { order: -1; }
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.9) 85%,
    rgba(10,10,10,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo {
  width: clamp(120px, 20vw, 200px);
  filter: drop-shadow(0 0 20px rgba(204,0,0,0.7)) drop-shadow(0 0 40px rgba(204,0,0,0.3));
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(204,0,0,0.6)) drop-shadow(0 0 32px rgba(204,0,0,0.3)); }
  50%       { filter: drop-shadow(0 0 28px rgba(204,0,0,0.9)) drop-shadow(0 0 56px rgba(204,0,0,0.5)); }
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 40px rgba(204,0,0,0.6);
  line-height: 1;
}
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--red);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 18px; }
}

/* ===== ABOUT ===== */
#about {
  padding: 100px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--red-dim);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}
.about-image::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}
.about-image:hover img { filter: grayscale(0%); }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2em;
  font-size: 1rem;
  line-height: 1.8;
}
.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image::after { display: none; }
}

/* ===== MUSIC ===== */
#music {
  padding: 100px 0;
  background: var(--bg-2);
}
#music h2 { margin-bottom: 0.3em; }
.section-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.album-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.album-card:hover {
  border-color: var(--red-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.album-art {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
}
.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.album-card:hover .album-art img { transform: scale(1.06); }
.album-info {
  padding: 10px 12px;
}
.album-title {
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.3;
}
.music-cta { text-align: center; }

/* ===== LINKS ===== */
#links {
  padding: 100px 0;
  background: var(--bg);
}
.links-container { text-align: center; }
.links-container h2 { display: inline-block; }
.links-container h2::after { margin: 0.5em auto 0; }
.links-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 48px;
  min-width: 200px;
  transition: all var(--transition);
}
.link-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(204,0,0,0.2);
}
.link-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  transition: color var(--transition), transform var(--transition);
}
.link-card:hover .link-icon {
  color: var(--red-bright);
  transform: scale(1.1);
}
.link-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.link-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: drop-shadow(0 0 4px rgba(204,0,0,0.4));
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-small { font-size: 0.7rem; opacity: 0.7; }
.footer-small a:hover { color: var(--red); }

/* ===== SECTION REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
