:root {
  --cyber-bg-1: #08080c;
  --cyber-bg-2: #0c0812;
  --neon-cyan: #00e5c7;
  --neon-magenta: #e8366f;
  --arcade-yellow: #f5c842;
  --text-primary: #eaeaff;
  --text-secondary: #6a6a8a;
  --border-soft: rgba(255, 255, 255, 0.06);
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text-primary) !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cyber-bg-1) !important;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% -5%, rgba(0,229,199,0.08), transparent),
    radial-gradient(ellipse 50% 40% at 85% 105%, rgba(232,54,111,0.06), transparent) !important;
  min-height: 100vh;
}
a { color: var(--neon-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: #7fffd4; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.cyber-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  background: rgba(12,12,18,0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  z-index: 100;
}
.cyber-nav-logo { display: flex; align-items: center; padding: 4px; }
.cyber-nav-logo img { width: 26px; height: 26px; border-radius: 6px; display: block; }
.cyber-nav-links { display: flex; align-items: center; gap: 2px; margin: 0 4px; }
.cyber-nav-link {
  padding: 6px 12px; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.cyber-nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.cyber-nav-link.active { color: var(--text-primary); }
.cyber-nav-actions { display: flex; align-items: center; gap: 6px; }
.cyber-nav-lang {
  padding: 5px 10px; font-size: 11px; font-weight: 600;
  color: var(--text-secondary); border-radius: 6px;
  transition: color 0.2s;
}
.cyber-nav-lang:hover { color: var(--text-primary); }
@media (max-width: 600px) {
  .cyber-nav-links { display: none; }
}

.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 80px 24px 40px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
#hero-net { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1100px; width: 100%; margin: 0 auto;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-chips, .hero-cta, .hero-social { justify-content: center; }
}
.hero-intro {
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-secondary); margin-bottom: 8px;
}
.hero-name.glitch-title {
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700; line-height: 1;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-cyan) 60%, var(--neon-magenta) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glitch-once { animation: glitch 800ms steps(2, end) 1; }
@keyframes glitch {
  0%,100% { filter: none; transform: none; }
  20% { filter: drop-shadow(2px 0 var(--neon-cyan)) drop-shadow(-2px 0 var(--neon-magenta)); transform: skewX(0.3deg); }
  40% { filter: drop-shadow(-2px 0 var(--neon-cyan)) drop-shadow(2px 0 var(--neon-magenta)); transform: skewX(-0.3deg); }
  60% { filter: drop-shadow(1px 0 var(--neon-cyan)) drop-shadow(-1px 0 var(--neon-magenta)); }
}
.hero-tagline { font-size: clamp(16px, 2.5vw, 20px); color: var(--text-secondary); margin: 0 0 20px; }
.hero-rotate-word { display: inline-block; color: var(--neon-cyan); font-weight: 600; transition: opacity 0.3s; min-width: 80px; }
.hero-chips { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.chip { padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; border-radius: 999px; border: 1px solid; }
.chip-cyan { color: var(--neon-cyan); border-color: rgba(0,229,199,0.35); background: rgba(0,229,199,0.06); }
.chip-magenta { color: var(--neon-magenta); border-color: rgba(232,54,111,0.35); background: rgba(232,54,111,0.06); }
.chip-yellow { color: var(--arcade-yellow); border-color: rgba(245,200,66,0.35); background: rgba(245,200,66,0.06); }
.hero-cta { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; font-size: 13px; font-weight: 600;
  border-radius: 10px; border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary); text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-glow.primary { background: linear-gradient(135deg, rgba(0,229,199,0.12), rgba(0,229,199,0.04)); border-color: rgba(0,229,199,0.3); }
.btn-glow.primary:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,229,199,0.2), 0 4px 12px rgba(0,0,0,0.3); }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.hero-social { display: flex; gap: 12px; }
.hero-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; font-size: 16px;
  color: var(--text-secondary); border: 1px solid var(--border-soft); border-radius: 10px;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.hero-social a:hover { color: var(--neon-cyan); border-color: rgba(0,229,199,0.35); transform: translateY(-2px); }

/* Holographic Laptop */
.hero-hologram {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  width: 320px; height: 280px;
}
.holo-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle at center, rgba(0,229,199,0.15) 0%, transparent 70%);
  animation: holoPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes holoPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.holo-rings {
  position: absolute; inset: 0;
  pointer-events: none;
}
.holo-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 200px; height: 200px;
  border: 1px solid rgba(0,229,199,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
  animation: ringRotate 8s linear infinite;
}
.holo-ring:nth-child(2) {
  width: 260px; height: 260px;
  border-color: rgba(232,54,111,0.2);
  animation-duration: 12s; animation-direction: reverse;
}
.holo-ring:nth-child(3) {
  width: 320px; height: 320px;
  border-color: rgba(245,200,66,0.15);
  animation-duration: 16s;
}
@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}
.holo-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.holo-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-cyan);
  animation: particleOrbit 6s linear infinite;
}
.holo-particles span:nth-child(1) { animation-delay: 0s; }
.holo-particles span:nth-child(2) { animation-delay: -0.75s; background: var(--neon-magenta); box-shadow: 0 0 6px var(--neon-magenta); }
.holo-particles span:nth-child(3) { animation-delay: -1.5s; }
.holo-particles span:nth-child(4) { animation-delay: -2.25s; background: var(--arcade-yellow); box-shadow: 0 0 6px var(--arcade-yellow); }
.holo-particles span:nth-child(5) { animation-delay: -3s; }
.holo-particles span:nth-child(6) { animation-delay: -3.75s; background: var(--neon-magenta); box-shadow: 0 0 6px var(--neon-magenta); }
.holo-particles span:nth-child(7) { animation-delay: -4.5s; }
.holo-particles span:nth-child(8) { animation-delay: -5.25s; background: var(--arcade-yellow); box-shadow: 0 0 6px var(--arcade-yellow); }
@keyframes particleOrbit {
  0% { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) translateX(140px) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) rotate(180deg) translateX(140px) scale(0.6); opacity: 0.5; }
  100% { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(360deg) translateX(140px) scale(1); opacity: 1; }
}
.holo-laptop {
  position: relative; z-index: 2;
  cursor: pointer;
  animation: holoFloat 4s ease-in-out infinite;
  transition: transform 0.3s;
}
.holo-laptop:hover { transform: scale(1.05) translateY(-5px); }
@keyframes holoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.holo-screen {
  position: relative;
  width: 240px; height: 150px;
  background: linear-gradient(145deg, #0a0a14, #050508);
  border-radius: 8px 8px 0 0;
  border: 2px solid rgba(0,229,199,0.4);
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(0,229,199,0.3),
    0 0 40px rgba(0,229,199,0.1),
    inset 0 0 30px rgba(0,229,199,0.05);
}
.holo-screen canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.holo-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,0.4);
  opacity: 0; transition: opacity 0.3s;
}
.holo-laptop:hover .holo-overlay { opacity: 1; }
.holo-overlay i { font-size: 32px; color: var(--neon-cyan); }
.holo-overlay span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 1px;
}
.holo-base {
  width: 260px; height: 10px; margin-left: -10px;
  background: linear-gradient(180deg, rgba(0,229,199,0.3), rgba(0,229,199,0.1));
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 10px rgba(0,229,199,0.2);
}
.holo-reflection {
  position: absolute;
  bottom: -60px; left: 50%;
  width: 200px; height: 60px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(0,229,199,0.1), transparent);
  filter: blur(10px);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-hologram { display: none; }
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-secondary); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

.bento-section { padding: 60px 0 80px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bento-card {
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.bento-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.bento-card h2 { margin: 0 0 12px; font-size: 20px; font-weight: 600; }
.bento-card h3 { margin: 0 0 8px; font-size: 13px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.bento-card p { margin: 0 0 6px; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.bento-card p:last-child { margin-bottom: 0; }
.bento-icon { font-size: 24px; margin-bottom: 12px; color: var(--neon-cyan); }
.bento-highlight { color: var(--text-primary); font-weight: 600; }
.bento-link { font-size: 18px; font-weight: 700; display: block; margin-bottom: 4px; }
.bento-building .bento-icon { color: var(--neon-magenta); }
.bento-marathon .bento-icon { color: var(--arcade-yellow); }
@media (max-width: 550px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* Inner Pages Styles */
.page-header {
  text-align: center;
  padding: 40px 0 30px;
}
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px;
}
.page-header p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

/* Project Cards */
.project-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.project-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.project-card:hover {
  border-color: rgba(0,229,199,0.3);
  transform: translateY(-2px);
}
.project-card-content { flex: 1; }
.project-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.project-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 12px;
  line-height: 1.5;
}
.project-card-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
}
.project-card .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,229,199,0.3);
  border-radius: 6px;
  background: rgba(0,229,199,0.05);
  transition: background 0.2s;
}
.project-card .btn-sm:hover { background: rgba(0,229,199,0.1); }

/* Experience Flashcards - Redesigned */
.experience-section {
  padding: 0 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.experience-flashcards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 24px;
}
.flashcard {
  perspective: 1200px;
  height: 320px;
}
.flashcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flashcard:hover .flashcard-inner {
  transform: rotateY(180deg);
}
.flashcard-front, .flashcard-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, rgba(20,20,30,0.9), rgba(12,8,18,0.95));
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.flashcard-front {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.flashcard-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0.6;
}
.flashcard-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, rgba(0,229,199,0.08), rgba(12,8,18,0.95));
  border-color: rgba(0,229,199,0.25);
  justify-content: space-between;
}
.flashcard-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.flashcard-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px !important;
}
.flashcard h2, .flashcard h2.fw-bolder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.flashcard p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 6px;
  line-height: 1.5;
}
.flashcard .experience-date {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 12px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.flashcard-description {
  flex: 1;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 16px !important;
}
.flashcard .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-cyan);
  background: rgba(0,229,199,0.08);
  border: 1px solid rgba(0,229,199,0.3);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.flashcard .button:hover {
  background: rgba(0,229,199,0.15);
  border-color: rgba(0,229,199,0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,229,199,0.2);
}

@media (max-width: 700px) {
  .experience-flashcards {
    grid-template-columns: 1fr;
  }
  .flashcard {
    height: 300px;
  }
}

/* Certificates Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.cert-card {
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s;
}
.cert-card:hover { border-color: rgba(0,229,199,0.3); }
.cert-card i {
  font-size: 28px;
  color: var(--neon-cyan);
  margin-bottom: 12px;
}
.cert-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.cert-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.cert-card .btn-sm {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,229,199,0.3);
  border-radius: 4px;
}

/* Photo Gallery - Auto-scroll Carousel */
.photo-gallery-wrapper {
  overflow: hidden;
  padding: 0 0 60px;
  max-width: 100%;
}
.photo-gallery {
  display: flex;
  gap: 16px;
  animation: scrollGallery 40s linear infinite;
  width: max-content;
}
.photo-gallery:hover {
  animation-play-state: paused;
}
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.photo-item {
  flex-shrink: 0;
  width: calc((100vw - 80px) / 5);
  min-width: 220px;
  max-width: 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, rgba(20,20,30,0.8), rgba(12,8,18,0.9));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  aspect-ratio: 3/4;
}
.photo-item:hover {
  transform: scale(1.05);
  border-color: rgba(0,229,199,0.5);
  box-shadow: 0 12px 40px rgba(0,229,199,0.2), 0 4px 16px rgba(0,0,0,0.4);
  z-index: 10;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-item:hover img {
  transform: scale(1.1);
}
.photo-item .photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .photo-item {
    width: calc((100vw - 60px) / 3);
    min-width: 180px;
  }
}
@media (max-width: 600px) {
  .photo-item {
    width: calc((100vw - 40px) / 2);
    min-width: 150px;
  }
}

.cyber-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--text-secondary);
}
.cyber-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.cyber-footer p { margin: 0; }
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; font-size: 15px;
  color: var(--text-secondary);
  border: 1px solid var(--border-soft); border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-links a:hover { color: var(--neon-cyan); border-color: rgba(0,229,199,0.3); }

.cmdk-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: none; align-items: flex-start; justify-content: center; padding-top: 14vh; z-index: 1000; }
.cmdk-overlay.open { display: flex; }
.cmdk {
  width: min(520px, 94vw);
  background: rgba(14,14,20,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.cmdk-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
}
.cmdk-header i { font-size: 16px; color: var(--neon-cyan); }
.cmdk-header-right { margin-left: auto; }
.cmdk-input {
  width: 100%; padding: 14px 18px;
  background: transparent;
  color: var(--text-primary);
  border: none; outline: none;
  font-size: 15px;
  font-family: inherit;
}
.cmdk-input::placeholder { color: var(--text-secondary); }
.cmdk-list { max-height: 50vh; overflow-y: auto; }
.cmdk-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 14px;
  border-top: 1px solid var(--border-soft);
  transition: background 0.15s;
}
.cmdk-item i { font-size: 15px; color: var(--text-secondary); width: 20px; text-align: center; }
.cmdk-item:hover, .cmdk-item.active { background: rgba(255,255,255,0.05); }
.cmdk-item .cmdk-kbd { margin-left: auto; }
.cmdk-kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  font-size: 11px; font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}

body.crt-theme::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 2px, transparent 3px);
}
body.crt-theme .hero-name.glitch-title {
  animation: crt-flicker 0.1s infinite;
}
@keyframes crt-flicker {
  0%,100% { opacity: 1; }
  50% { opacity: 0.98; }
}
