/* KEEKS — minimal artist site */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-secondary: #111;
  --text: #f5f5f5;
  --text-muted: #888;
  --accent: #fff;
  --border: #222;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: transparent;
  transition: background 0.3s;
}

nav.scrolled { background: rgba(10,10,10,0.75); backdrop-filter: blur(10px); }

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
}

.nav-logo img {
  max-height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-social {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: fill 0.2s;
}

.nav-social a:hover svg { fill: var(--accent); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

footer {
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 0.5rem;
}

.hero-logo img {
  max-width: 500px;
  max-height: 350px;
  width: auto;
  height: auto;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.1;
}

.hero .tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta a {
  padding: 0.8rem 2rem;
  border: 1px solid var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.hero-cta a:hover {
  background: var(--text);
  color: var(--bg);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* SECTION */
section {
  padding: 6rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  text-align: center;
}

/* MUSIC */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.music-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.music-card:hover {
  border-color: var(--text);
  background: var(--bg-secondary);
}

.music-card svg {
  width: 24px;
  height: 24px;
  fill: var(--text);
}

.music-card span {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* CONTACT */
.contact-section { text-align: center; }

.contact-section a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.contact-section a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: ceter;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-social svg {
  width: 20px;
  height: 20px;
 fill: var(--text-muted);
  transition: fill 0.2s;
}

.footer-social a:hover svg { fill: var(--accent); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* RESPONSIVE */

/* Empty state hint */
.empty-int {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 2rem;
}

/* DVD BOUNCE — Screensaver logo container */
#dvd-bounce {
  position: relative;
  width: 750px;
  height: 525px;
  background: #000;
  border: 2px solid #222;
  margin: 0 auto 0.5rem;
  overflow: hidden;
}

#dvd-logo {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, filter;
}

#dvd-logo img {
  display: block;
  width: 80px;
  height: auto;
}

/* Responsive: scale down on mobile */

/* ============================================
   TV FRAME — Modern flat-panel, gray
   ============================================ */
#tv-frame {
  position: relative;
  width: 860px;
  height: 560px;
  margin: 0 auto;
  /* Clean dark gray outer body */
  background: linear-gradient(160deg, #4a4a4a 0%, #3a3a3a 40%, #333333 70%, #3f3f3f 100%);
  border-radius: 12px;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 0 0 1px #222,
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: visible;
}




/* Inner bezel — the dark recessed border around the screen */
#tv-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(170deg, #111 0%, #1a1a1a 30%, #111 70%, #1a1a1a 100%);
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.9),
    inset 0 2px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

/* Subtle screen reflection / glare */
#tv-frame::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
  z-index: 4;
}

/* DVD bounce screen — the transparent viewing area */
#tv-frame #dvd-bounce {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 480px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(80, 80, 80, 0.4);
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
  margin: 0;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

#tv-frame #dvd-logo {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, filter;
}

#tv-frame #dvd-logo img {
  display: block;
  width: 200px;
  height: auto;
}


/* Power LED — bottom right corner of TV frame */
.tv-led {
  position: absolute;
  bottom: 4px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 6px rgba(0, 230, 118, 0.6), 0 0 12px rgba(0, 230, 118, 0.3);
  z-index: 3;
}



/* --- TV Stand (slim base) --- */
.tv-stand {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.tv-stand-neck {
  width: 80px;
  height: 20px;
  background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

.tv-stand-base {
  width: 280px;
  height: 14px;
  background: linear-gradient(180deg, #4a4a4a 0%, #333 40%, #2a2a2a 100%);
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* --- Brand label --- */
.tv-brand {
  position: absolute;
  bottom: 18px;
  left: 30px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.75rem; }
  section { padding: 3rem 1rem; }
  .music-grid { grid-template-columns: 1fr; }
  .hero { padding: 1rem; }

  /* TV frame — proportional mobile size */
  #tv-frame {
    width: 340px;
    height: 280px;
    border-radius: 8px;
    border-width: 2px;
  }



  #tv-frame::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 4px;
  }
  #tv-frame::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 4px;
  }

  /* DVD bounce — fills most of TV but leaves bezel visible */
  #tv-frame #dvd-bounce {
    width: 300px;
    height: 220px;
    left: 50%;
  }
  #tv-frame #dvd-logo img {
    width: 90px;
  }

  /* Power LED — bottom right corner */
  .tv-led {
    position: absolute;
    bottom: 3px;
    right: 6px;
    width: 5px;
    height: 5px;
  }

  /* TV stand */
  .tv-stand { bottom: -22px; }




  .tv-stand-neck { width: 40px; height: 10px; }
  .tv-stand-base { width: 160px; height: 8px; }

  /* Brand label */
  .tv-brand {
    font-size: 6px;
    bottom: 8px;
    left: 12px;
    letter-spacing: 2px;
  }
}
