/* Premium dark theme CSS based on the extension */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0d0f14;
  --bg2: #13161d;
  --bg3: #1a1e27;
  --surface: #1e2330;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text: #e8eaf0;
  --muted: #7a8099;
  --accent: #6ee7b7;
  --accent2: #34d399;
  --accent-dim: rgba(110,231,183,0.12);
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Syne', sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: linear-gradient(rgba(110,231,183,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(110,231,183,0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: 0;
}
.container {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto; padding: 5rem 2rem;
}
header {
  display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 5rem;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.profile-pic {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent);
  padding: 4px; margin-bottom: 1.5rem;
  box-shadow: 0 0 30px var(--accent-dim);
}
h1 {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
h1 span { color: var(--accent); }
.bio {
  color: var(--muted); max-width: 500px; font-size: 1.1rem; margin-bottom: 1.5rem;
}
.social-links {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--text); background: var(--bg2); border: 1px solid var(--border);
  padding: 0.6rem 1.2rem; border-radius: 20px; text-decoration: none;
  font-family: var(--mono); font-size: 0.85rem; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.social-links a:hover {
  background: var(--surface); border-color: rgba(110,231,183,0.3); color: var(--accent);
  transform: translateY(-2px);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.project-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; transition: all 0.3s ease; text-decoration: none;
  display: flex; flex-direction: column; height: 100%;
  animation: fadeUp 0.8s 0.2s ease both;
}
.project-card:hover {
  transform: translateY(-5px); border-color: rgba(110,231,183,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4); background: var(--bg3);
}
.project-card h3 {
  color: var(--text); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.project-card h3 svg {
  width: 20px; height: 20px; color: var(--accent); transition: transform 0.2s;
}
.project-card:hover h3 svg { transform: translateX(3px) translateY(-3px); }
.project-card p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.6; flex-grow: 1;
}
.tags {
  display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.tag {
  background: var(--accent-dim); color: var(--accent);
  font-family: var(--mono); font-size: 0.75rem; padding: 0.25rem 0.75rem;
  border-radius: 20px; border: 1px solid rgba(110,231,183,0.1);
}
