/* ========== CSS VARIABLES ========== */
:root {
  --bg: #05050f;
  --bg2: #0a0a1a;
  --surface: #0f0f22;
  --surface2: #161630;
  --cyan: #00f5ff;
  --magenta: #ff00c8;
  --green: #00ff88;
  --yellow: #ffe600;
  --orange: #ff6b00;
  --white: #eeeeff;
  --muted: #4a4a6a;
  --muted2: #2a2a4a;
  --border: rgba(0,245,255,0.15);
  --glow-cyan: 0 0 10px rgba(0,245,255,0.5), 0 0 40px rgba(0,245,255,0.2);
  --glow-magenta: 0 0 10px rgba(255,0,200,0.5), 0 0 40px rgba(255,0,200,0.2);
  --glow-green: 0 0 10px rgba(0,255,136,0.5), 0 0 40px rgba(0,255,136,0.2);
  --text: #eeeeff;
  --nav-bg: rgba(5,5,15,0.85);
  --card-bg: #0f0f22;
  --transition: 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

[data-theme="light"] {
  --bg: #f0f0ff;
  --bg2: #e8e8fa;
  --surface: #ffffff;
  --surface2: #f5f5ff;
  --white: #0a0a1a;
  --muted: #8888aa;
  --muted2: #ddddf0;
  --border: rgba(0,100,200,0.2);
  --text: #0a0a1a;
  --nav-bg: rgba(240,240,255,0.9);
  --card-bg: #ffffff;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
  cursor: none;
  transition: background var(--transition), color var(--transition);
}

::selection { background: var(--cyan); color: #000; }

/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; z-index: 99999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.2s;
  box-shadow: var(--glow-cyan);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  position: fixed; z-index: 99998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
  opacity: 0.6;
}
body:hover .cursor-dot { opacity: 1; }

/* ========== CODE BACKGROUND CANVAS ========== */
#codeCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
}
[data-theme="light"] #codeCanvas { opacity: 0.04; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

/* ========== NAVBAR ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  object-fit: cover;
}
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
  box-shadow: var(--glow-cyan);
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* DATETIME */
#datetime {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  opacity: 0.8;
  letter-spacing: 1px;
  text-align: right;
  line-height: 1.5;
}

/* THEME TOGGLE */
.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 6px;
}
.theme-toggle:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0,245,255,0.08);
}

/* ========== HAMBURGER ========== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.hamburger span { width: 24px; height: 2px; background: var(--cyan); transition: all 0.3s; }

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 40px 40px;
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-name .line1 { display: block; color: var(--white); }
.hero-name .line2 {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-bio {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-bio em { color: var(--cyan); font-style: normal; }
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* BUTTONS */
.btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: none;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  border: none;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,245,255,0.7), 0 8px 25px rgba(0,245,255,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--magenta);
  border: 1px solid var(--magenta);
}
.btn-outline:hover {
  background: rgba(255,0,200,0.08);
  box-shadow: var(--glow-magenta);
  transform: translateY(-3px);
}

/* HERO VISUAL */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}
.hero-avatar-wrap {
  position: relative;
  width: 340px; height: 340px;
}
.hero-avatar-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  opacity: 0.3;
  animation: spin 12s linear infinite;
}
.hero-avatar-ring2 {
  position: absolute; inset: -40px;
  border-radius: 50%;
  border: 1px dashed var(--magenta);
  opacity: 0.2;
  animation: spin 20s linear infinite reverse;
}
.hero-avatar {
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 5rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  position: relative;
  overflow: hidden;
}
.hero-avatar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,245,255,0.1) 0%, transparent 70%);
}
.hero-status {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--surface);
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--glow-green);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

/* ========== SECTION BASE ========== */
section {
  position: relative; z-index: 1;
  padding: 100px 40px;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 60px;
  color: var(--white);
}
.section-title span {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== ABOUT ========== */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.about-left {}
.about-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-text strong { color: var(--cyan); font-weight: 700; }

.skills-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.skill-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--cyan);
  transition: all 0.3s;
}
.skill-tag:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0,245,255,0.05);
  transform: translateY(-2px);
}

.goals-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.goals-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
}
.goals-card.short::before { background: var(--cyan); box-shadow: var(--glow-cyan); }
.goals-card.long::before { background: var(--magenta); box-shadow: var(--glow-magenta); }
.goals-card:hover { transform: translateX(6px); }
.goals-card h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.goals-card.short h4 { color: var(--cyan); }
.goals-card.long h4 { color: var(--magenta); }
.goals-card p { font-size: 0.82rem; line-height: 1.8; color: var(--muted); }

/* ========== PROJECTS ========== */
#projects {}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.project-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.project-card:hover { transform: translateY(-6px); border-color: rgba(0,245,255,0.3); }
.project-card:hover::after { transform: scaleX(1); }
.project-num {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.project-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.project-card h3 a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}
.project-card h3 a:hover { color: var(--cyan); }
.project-card p { font-size: 0.8rem; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tag {
  font-size: 0.62rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.15);
  color: var(--cyan);
}
.project-tag.mg { background: rgba(255,0,200,0.06); border-color: rgba(255,0,200,0.15); color: var(--magenta); }
.project-tag.gr { background: rgba(0,255,136,0.06); border-color: rgba(0,255,136,0.15); color: var(--green); }

/* ========== SERVICES ========== */
#services { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--glow-cyan);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p { font-size: 0.78rem; line-height: 1.7; color: var(--muted); }

/* ========== HOBBIES / GALLERY ========== */
#hobbies {}
.gallery-intro { font-size: 0.85rem; line-height: 1.8; color: var(--muted); max-width: 640px; margin-bottom: 50px; }
.gallery-intro em { color: var(--cyan); font-style: normal; }
.vinyl-intro { font-size: 0.85rem; line-height: 1.8; color: var(--muted); max-width: 640px; margin-bottom: 40px; }
.vinyl-intro strong { color: var(--cyan); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
}
.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  cursor: none;
  transition: all 0.35s;
}
.gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(n+3) { grid-column: span 4; }

.gallery-item:hover { transform: scale(1.02); z-index: 2; border-color: var(--cyan); box-shadow: var(--glow-cyan); }

.gallery-placeholder {
  width: 100%; height: 100%;
  min-height: inherit;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(0,245,255,0.35);
  border-radius: 10px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.gallery-placeholder:hover {
  border-color: rgba(0,245,255,0.75);
  box-shadow: 0 0 20px rgba(0,245,255,0.25);
}
.gallery-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,245,255,0.04) 0%, transparent 50%, rgba(255,0,200,0.04) 100%);
  pointer-events: none;
}
.gallery-img-icon { font-size: 2rem; opacity: 0.3; }
.gallery-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}
.gallery-upload-hint {
  font-size: 0.6rem;
  color: var(--cyan);
  opacity: 0.4;
  letter-spacing: 1px;
}

/* Click to upload overlay */
.gallery-item input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; z-index: 3;
  width: 100%; height: 100%;
}
.gallery-item img.loaded {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  margin: 0 auto;
}

/* ========== VINYL / MUSIC PLAYER ========== */
#vinyl-section {
  background: var(--bg2);
  padding: 100px 40px;
}
.vinyl-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.vinyl-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  height: 380px;
}
.vinyl-record {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 20%, #0d0d0d 20.1%, #222 30%, #111 30.1%, #222 40%, #111 40.1%, #1a1a1a 50%, #0d0d0d 50.1%, #1a1a1a 60%, #0d0d0d 60.1%, #1a1a1a 70%, #0d0d0d 70.1%, #1a1a1a 80%, #0d0d0d 80.1%, #1a1a1a 90%, #0d0d0d 90.1%, #1a1a1a 100%);
  border: 2px solid #333;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 80px rgba(0,245,255,0.1);
  display: flex; align-items: center; justify-content: center;
  animation: none;
  transition: box-shadow 0.4s;
}
.vinyl-record.playing {
  animation: vinylSpin 4s linear infinite;
  box-shadow: 0 0 40px rgba(0,0,0,0.8), var(--glow-cyan), 0 0 100px rgba(0,245,255,0.1);
}
.vinyl-label {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface2), #1a1a3a);
  border: 2px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.vinyl-label-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem;
  color: var(--cyan);
  letter-spacing: 1px;
  font-weight: 700;
}
.vinyl-label-sub {
  font-size: 0.45rem;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.vinyl-hole {
  width: 16px; height: 16px;
  background: var(--bg);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* vinyl shine lines */
.vinyl-record::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0deg,
    rgba(255,255,255,0.015) 10deg,
    transparent 20deg,
    rgba(255,255,255,0.01) 40deg,
    transparent 60deg,
    rgba(255,255,255,0.015) 80deg,
    transparent 100deg,
    rgba(255,255,255,0.01) 150deg,
    transparent 200deg,
    rgba(255,255,255,0.015) 260deg,
    transparent 320deg
  );
}

/* tonearm */
.tonearm {
  position: absolute;
  top: 20px; right: -10px;
  width: 120px; height: 8px;
  transform-origin: right center;
  transform: rotate(-35deg);
  transition: transform 0.8s ease;
}
.tonearm.playing { transform: rotate(-15deg); }
.tonearm-body {
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #888, #ccc, #888);
  border-radius: 2px;
  position: relative;
}
.tonearm-head {
  width: 14px; height: 10px;
  background: var(--cyan);
  border-radius: 2px;
  position: absolute;
  left: -4px; top: -4px;
  box-shadow: var(--glow-cyan);
}
.tonearm-pivot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #aaa;
  border: 2px solid var(--cyan);
  position: absolute;
  right: -7px; top: -6px;
  box-shadow: var(--glow-cyan);
}

/* audio visualizer */
.visualizer {
  position: absolute;
  bottom: -30px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 3px; align-items: flex-end;
  height: 40px;
}
.vis-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(0,245,255,0.5);
  animation: none;
  height: 4px;
  transition: height 0.1s;
}
.playing ~ .visualizer .vis-bar,
.vis-bar.active { animation: visPulse 0.6s ease infinite; }

/* PLAYER CONTROLS */
.player-controls {
  display: flex; flex-direction: column; gap: 24px;
}
.now-playing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}
.np-label { font-size: 0.6rem; letter-spacing: 3px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; }
.np-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.np-artist { font-size: 0.75rem; color: var(--cyan); }

/* progress bar */
.progress-wrap {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
}
.progress-time { font-size: 0.65rem; color: var(--muted); font-family: 'Orbitron', monospace; min-width: 36px; }
.progress-bar-track {
  flex: 1; height: 4px;
  background: var(--muted2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: var(--glow-cyan);
  width: 0%;
  transition: width 0.5s linear;
  pointer-events: none;
}
.progress-bar-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  position: absolute;
  top: 50%; transform: translate(-50%,-50%);
  left: 0%;
  transition: left 0.5s linear;
}

.ctrl-row { display: flex; gap: 12px; align-items: center; }
.ctrl-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  font-size: 1rem;
  transition: all 0.3s;
  color: var(--muted);
}
.ctrl-btn:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); background: rgba(0,245,255,0.06); }
.ctrl-btn.play-btn {
  width: 54px; height: 54px;
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  font-size: 1.2rem;
  box-shadow: var(--glow-cyan);
}
.ctrl-btn.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 30px rgba(0,245,255,0.7); }

/* volume */
.vol-row { display: flex; align-items: center; gap: 10px; }
.vol-row span { font-size: 0.9rem; color: var(--muted); }
.vol-slider {
  -webkit-appearance: none;
  flex: 1; height: 4px;
  background: var(--muted2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: var(--glow-magenta);
  cursor: pointer;
}

/* custom track input */
.track-input-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}
.track-input-wrap label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.track-input-row { display: flex; gap: 10px; }
.track-file-btn {
  flex: 1;
  background: rgba(0,245,255,0.06);
  border: 1px dashed rgba(0,245,255,0.3);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.track-file-btn:hover { background: rgba(0,245,255,0.1); border-color: var(--cyan); }
.track-file-btn input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* ========== CONTACT ========== */
#contact {}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.contact-info p { font-size: 0.82rem; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}
.contact-link:hover { color: var(--cyan); border-color: var(--cyan); box-shadow: var(--glow-cyan); transform: translateX(6px); }
.contact-link span:first-child { font-size: 1.1rem; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  outline: none;
  transition: all 0.3s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,245,255,0.1);
}
.form-group textarea { min-height: 120px; }

/* ========== FOOTER ========== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  position: relative; z-index: 1;
}
.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 12px;
}
footer p { font-size: 0.7rem; color: var(--muted); letter-spacing: 1px; }
footer span { color: var(--magenta); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes visPulse {
  0%, 100% { height: 4px; }
  50% { height: 28px; }
}
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* scanline overlay */
body::after {
  content: '';
  position: fixed; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(transparent, rgba(0,245,255,0.03), transparent);
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 9997;
}
[data-theme="light"] body::after { display: none; }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NEW BUTTON STYLES (UIVERSE) ========== */
/* Button style 1 - by adamgiebl */
.btn-fancy-1 {
  font-family: inherit;
  font-size: 20px;
  background: var(--cyan);
  color: #000;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: none;
  text-decoration: none;
  font-weight: 600;
}
.btn-fancy-1 span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}
.btn-fancy-1 svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.btn-fancy-1:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}
.btn-fancy-1:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
.btn-fancy-1:hover span {
  transform: translateX(5em);
}
.btn-fancy-1:active {
  transform: scale(0.95);
}
@keyframes fly-1 {
  from { transform: translateY(0.1em); }
  to { transform: translateY(-0.1em); }
}

/* Button style 2 - by satyamchaudharydev */
.btn-fancy-2 {
  min-width: 300px;
  height: 56px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  color: var(--cyan);
  background: none;
  position: relative;
  cursor: none;
  font-size: 1.1rem;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.btn-fancy-2:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0,245,255,0.05);
  transform: translateY(-2px);
}
.magnet-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.magnet-inner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
}
.btn-fancy-2 > div,
.btn-fancy-2 > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-fancy-2:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  background: currentColor;
  transition: transform 0.25s ease-out;
}
.btn-fancy-2:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.btn-fancy-2 .clone > *,
.btn-fancy-2 .text > * {
  opacity: 1;
  font-size: 1.3rem;
  transition: 0.2s;
  margin-left: 4px;
}
.btn-fancy-2 .clone > * {
  transform: translateY(60px);
}
.btn-fancy-2:hover .clone > * {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-fancy-2:hover .text > * {
  opacity: 1;
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-fancy-2:hover .clone > :nth-child(1) { transition-delay: 0.15s; }
.btn-fancy-2:hover .clone > :nth-child(2) { transition-delay: 0.2s; }
.btn-fancy-2:hover .clone > :nth-child(3) { transition-delay: 0.25s; }
.btn-fancy-2:hover .clone > :nth-child(4) { transition-delay: 0.3s; }
.btn-fancy-2 svg {
  width: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
  position: absolute;
  fill: currentColor;
}
.btn-fancy-2:hover svg {
  transform: translateY(-50%) rotate(-90deg);
}

/* Social cards - by AngelSg444734 */
.social-cards {
  margin-top: 40px;
}
.social-cards h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}
.card1, .card2, .card3, .card4 {
  width: 90px;
  height: 90px;
  outline: 5px solid;
  border: none;
  background: rgb(30, 30, 30);
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}
.card1 { outline-color: #1877F2; } /* Facebook blue */
.card2 { outline-color: #0077B5; } /* LinkedIn blue */
.card3 { outline-color: #25D366; } /* WhatsApp green */
.card4 { outline-color: #EA4335; } /* Gmail red */

.card1:hover { background: #1877F2; transform: scale(1.1); cursor: pointer; }
.card2:hover { background: #0077B5; transform: scale(1.1); cursor: pointer; }
.card3:hover { background: #25D366; transform: scale(1.1); cursor: pointer; }
.card4:hover { background: #EA4335; transform: scale(1.1); cursor: pointer; }

.card1:hover .fa-facebook { color: #fff; }
.card2:hover .fa-linkedin { color: #fff; }
.card3:hover .fa-whatsapp { color: #fff; }
.card4:hover .fa-envelope { color: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .vinyl-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  nav { padding: 0 20px; }
  .nav-links { display: none; gap: 20px; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--nav-bg); backdrop-filter: blur(20px); padding: 24px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 70px 20px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 180px !important; }
  #datetime { display: none; }
}
