:root {
  /* Palette only */
  --bg: #0B0F14;
  --panel: #141826;
  --text: #FFFFFF;
  --muted: #FFFFFF;
  --accent: #FF4D9D;
  --highlight: #FFC857;
  --border: #141826;
  --shadow: #141826;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1120px;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Light theme uses the same palette */
:root[data-theme="light"] {
  --bg: #FFFFFF;
  --panel: #FFFFFF;
  --text: #0B0F14;
  --muted: #0B0F14;
  --border: #141826;
  --shadow: #141826;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

:root[data-theme="light"] html { color-scheme: light; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--border);
  z-index: 999;
}

.skip:focus {
  left: 12px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.muted {
  opacity: 0.78;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
}

/* Subtle grid overlay (palette-only) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, var(--border) 0 1px, var(--bg) 1px 52px),
    repeating-linear-gradient(90deg, var(--border) 0 1px, var(--bg) 1px 52px);
  opacity: 0.2;
  z-index: -3;
  pointer-events: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header[data-elevated="true"] {
  box-shadow: 0 10px 0 0 var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brandMark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.brandText {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.navLinks {
  display: none;
  gap: 10px;
  align-items: center;
}

.navLinks a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  opacity: 0.84;
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.navLinks a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.navLinks a[aria-current="true"] {
  border-color: var(--accent);
  opacity: 1;
}

.navRight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.iconBtn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms var(--ease-out);
}

.iconBtn:hover { transform: translateY(-1px); }

.iconBtn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.btnIcon {
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* Mobile nav */
.mobileNav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, calc(100% - 60px));
  border-left: 1px solid var(--border);
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 260ms var(--ease-out);
  z-index: 80;
  pointer-events: none;
}

.mobileNavInner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobileNavInner a {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
}

body[data-menu-open="true"] .mobileNav {
  transform: translateX(0);
  pointer-events: auto;
}

body[data-menu-open="true"]::after {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg);
  opacity: 0.72;
  z-index: 70;
}

/* Sections */
.section {
  padding: 70px 0;
}

.sectionHead {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.sectionHead h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.02em;
}

.sectionHead p {
  margin: 0;
  opacity: 0.78;
}

/* Hero */
.hero {
  padding: 56px 0 18px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.title {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.titleAccent {
  color: var(--accent);
}

.subtitle {
  margin: 12px 0 0;
  font-size: 16px;
  max-width: 65ch;
  opacity: 0.82;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms var(--ease-out);
}

.btn:hover { transform: translateY(-1px); }

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.btn.primary:hover {
  background: var(--highlight);
  border-color: var(--highlight);
  color: var(--bg);
}

.btn.ghost {
  background: var(--bg);
}

.btn.small {
  padding: 10px 12px;
  font-size: 13px;
}

/* Hover glow via pseudo element (palette only) */
.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
  pointer-events: none;
}

.btn:hover::after { opacity: 0.35; }

.heroBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 600;
  opacity: 0.9;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--highlight);
}

.heroRight {
  display: grid;
}

.glassCard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.glassCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--panel);
  opacity: 0.88;
}

.glassCard::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  opacity: 0.18;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.glassCard > * {
  position: relative;
  z-index: 1;
}

.profileRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  object-fit: cover;
}

.profileName {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.profileMeta {
  opacity: 0.78;
  font-size: 13px;
  margin-top: 2px;
}

.miniGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.miniStat {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 16px;
  padding: 12px;
}

.miniLabel {
  opacity: 0.8;
  font-size: 12px;
}

.miniValue {
  margin-top: 6px;
  font-weight: 800;
  color: var(--highlight);
}

/* Media placeholders (no random images/videos) */
.mediaPlaceholder {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(135deg, var(--bg) 0 18px, var(--panel) 18px 36px);
}

.mediaPlaceholderInner {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 0.92;
}

/* Cards & grids */
.card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--highlight);
  opacity: 0.06;
  pointer-events: none;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 10px 0 0;
  opacity: 0.8;
}

.cardTitle {
  margin: 0 0 8px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gridCards {
  display: grid;
  gap: 14px;
}

.card.highlight {
  background: var(--bg);
}

/* Projects */
.projectsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.projectCard {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  transition: transform 220ms var(--ease-out);
}

.projectCard[data-live="true"] {
  border-color: var(--accent);
}

.projectActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.projectLive {
  margin-left: auto;
}

.projectCard:hover {
  transform: translateY(-2px);
}

.projectMedia {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  height: 160px;
}

.projectMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projectTop {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.projectTop h3 { margin: 0; }

.badge {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.92;
}

.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
}

/* GitHub */
.ghProfile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ghName { font-weight: 900; }

.ghMeta { opacity: 0.78; font-size: 13px; margin-top: 2px; }

.ghActions { margin-top: 12px; }

.statsRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  padding: 12px;
}

.statLabel { opacity: 0.8; font-size: 12px; }

.statValue { margin-top: 6px; font-weight: 900; color: var(--highlight); }

.hint {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.74;
}

.contrib {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

.contribCell {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.contribCell[data-level="1"] { background: var(--panel); }
.contribCell[data-level="2"] { background: var(--highlight); }
.contribCell[data-level="3"] { background: var(--accent); }

.reposHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.reposHead h3 { margin: 0; letter-spacing: -0.01em; }

.reposNote { opacity: 0.76; font-size: 13px; }

.reposGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.repoCard {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  display: grid;
  gap: 10px;
}

.repoTop {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.repoName {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.repoDesc { opacity: 0.8; }

.repoDesc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.repoName {
  display: inline-block;
  max-width: 100%;
}

.repoMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metaPill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.92;
}

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0.35;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--highlight);
  opacity: 0.12;
  transform: translateX(-100%);
  animation: shimmer 1.2s linear infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

/* Skills */
.skillsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.skill {
  margin-top: 12px;
}

.skillTop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.bar {
  height: 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  margin-top: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 900ms var(--ease-out);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 14px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.tItem {
  position: relative;
  padding-left: 28px;
}

.tDot {
  position: absolute;
  left: 4px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.tCard {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.tTop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.tRole { font-weight: 900; }

.tDate { opacity: 0.78; font-size: 13px; }

/* Form */
.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

label span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--highlight);
}

.linkGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.stackCard {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.stackTitle {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.stackTable {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stackTable th,
.stackTable td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.stackTable th:first-child,
.stackTable td:first-child {
  width: 34%;
}

.stackTable thead th {
  opacity: 0.9;
}

.stackTable tbody tr:last-child td {
  border-bottom: 0;
}

.stackTable a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.stackTable a:hover,
.stackTable a:focus-visible {
  border-bottom-color: var(--accent);
}

.stackPills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stackTable .pill {
  padding: 7px 10px;
  font-size: 12px;
}

.stackTable a.pill {
  border-bottom: 0;
}

.linkCard {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 800;
}

.linkCard:hover { border-color: var(--accent); }

.linkIcon {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  opacity: 0.82;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footerLeft {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.footerName {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footerSocial {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.linksMedia {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  height: 140px;
}

.linksMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Modal */
.modal {
  border: none;
  padding: 0;
  max-width: min(920px, calc(100% - 28px));
  width: 100%;
  border-radius: var(--radius-lg);
  background: transparent;
}

.modal::backdrop {
  background: var(--bg);
  opacity: 0.9;
}

.modalInner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  position: relative;
}

.modalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.modalBody {
  display: grid;
  grid-template-columns: 1fr;
}

.modalMedia {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  min-height: 220px;
}

.modalMedia img,
.modalMedia video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.modalContent {
  padding: 18px;
}

.modalActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Reveal animations */
[data-reveal] {
  transform: translateY(14px);
  opacity: 0;
  transition: transform 520ms var(--ease-out), opacity 520ms var(--ease-out);
}

.is-visible[data-reveal] {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transition: none; transform: none; opacity: 1; }
  .fill { transition: none; }
  .btn { transition: none; }
  .projectCard { transition: none; }
  .skeleton::after { animation: none; }
}

@media (min-width: 920px) {
  .navLinks { display: inline-flex; }
  #menuToggle { display: none; }

  .heroGrid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: start;
  }

  .grid2 { grid-template-columns: 1fr 1fr; }

  .projectsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reposGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .skillsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .modalBody {
    grid-template-columns: 1.1fr 0.9fr;
  }

  body[data-menu-open="true"]::after { display: none; }

  .modalMedia {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

/* Icons (mask SVGs, inherit currentColor) */
[data-icon="github"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 .5C5.65.5.5 5.8.5 12.35c0 5.25 3.45 9.7 8.25 11.25.6.1.8-.27.8-.58v-2.1c-3.35.75-4.05-1.4-4.05-1.4-.55-1.45-1.35-1.85-1.35-1.85-1.1-.8.08-.78.08-.78 1.2.1 1.85 1.27 1.85 1.27 1.1 1.95 2.9 1.4 3.6 1.08.1-.82.45-1.4.8-1.72-2.7-.32-5.55-1.4-5.55-6.25 0-1.38.48-2.5 1.25-3.38-.12-.33-.55-1.65.12-3.42 0 0 1.03-.35 3.38 1.3.98-.28 2.02-.42 3.05-.42s2.08.14 3.05.42c2.35-1.65 3.38-1.3 3.38-1.3.67 1.77.25 3.1.12 3.42.78.88 1.25 2 1.25 3.38 0 4.88-2.85 5.92-5.58 6.25.47.43.88 1.25.88 2.55v3.78c0 .32.2.7.82.58 4.78-1.55 8.23-6 8.23-11.25C23.5 5.8 18.35.5 12 .5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 .5C5.65.5.5 5.8.5 12.35c0 5.25 3.45 9.7 8.25 11.25.6.1.8-.27.8-.58v-2.1c-3.35.75-4.05-1.4-4.05-1.4-.55-1.45-1.35-1.85-1.35-1.85-1.1-.8.08-.78.08-.78 1.2.1 1.85 1.27 1.85 1.27 1.1 1.95 2.9 1.4 3.6 1.08.1-.82.45-1.4.8-1.72-2.7-.32-5.55-1.4-5.55-6.25 0-1.38.48-2.5 1.25-3.38-.12-.33-.55-1.65.12-3.42 0 0 1.03-.35 3.38 1.3.98-.28 2.02-.42 3.05-.42s2.08.14 3.05.42c2.35-1.65 3.38-1.3 3.38-1.3.67 1.77.25 3.1.12 3.42.78.88 1.25 2 1.25 3.38 0 4.88-2.85 5.92-5.58 6.25.47.43.88 1.25.88 2.55v3.78c0 .32.2.7.82.58 4.78-1.55 8.23-6 8.23-11.25C23.5 5.8 18.35.5 12 .5z"/></svg>');
}

[data-icon="arrow"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M13.5 5l7 7-7 7-1.4-1.4 4.6-4.6H3v-2h13.7l-4.6-4.6L13.5 5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M13.5 5l7 7-7 7-1.4-1.4 4.6-4.6H3v-2h13.7l-4.6-4.6L13.5 5z"/></svg>');
}

[data-icon="menu"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M4 6h16v2H4V6zm0 5h16v2H4v-2zm0 5h16v2H4v-2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M4 6h16v2H4V6zm0 5h16v2H4v-2zm0 5h16v2H4v-2z"/></svg>');
}

[data-icon="close"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3 1.4 1.4z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3 1.4 1.4z"/></svg>');
}

[data-icon="theme"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 18a6 6 0 0 1-6-6c0-2.7 1.8-5 4.3-5.8.5-.2 1 .4.7.9A4.5 4.5 0 0 0 15 12c0 2.5-2 4.5-4.5 4.5-.5 0-1-.1-1.5-.3-.5-.2-1 .2-.9.7.3.7.9 1.1 1.9 1.1zm9-6a9 9 0 1 1-9-9c.6 0 .9.7.5 1.1A7 7 0 1 0 19.9 12c-.4.4.1 1 .7.8.2-.1.3-.4.4-.8z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 18a6 6 0 0 1-6-6c0-2.7 1.8-5 4.3-5.8.5-.2 1 .4.7.9A4.5 4.5 0 0 0 15 12c0 2.5-2 4.5-4.5 4.5-.5 0-1-.1-1.5-.3-.5-.2-1 .2-.9.7.3.7.9 1.1 1.9 1.1zm9-6a9 9 0 1 1-9-9c.6 0 .9.7.5 1.1A7 7 0 1 0 19.9 12c-.4.4.1 1 .7.8.2-.1.3-.4.4-.8z"/></svg>');
}

[data-icon="spark"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 2l1.7 6.3L20 10l-6.3 1.7L12 18l-1.7-6.3L4 10l6.3-1.7L12 2zm8 9l.8 3.1L24 15l-3.2.9L20 19l-.8-3.1L16 15l3.2-.9L20 11z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 2l1.7 6.3L20 10l-6.3 1.7L12 18l-1.7-6.3L4 10l6.3-1.7L12 2zm8 9l.8 3.1L24 15l-3.2.9L20 19l-.8-3.1L16 15l3.2-.9L20 11z"/></svg>');
}

/* Simple social icons */
[data-icon="x"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M18.9 2H22l-6.8 7.8L23.2 22h-6.6l-5.1-7-6.1 7H2.3l7.3-8.3L.8 2h6.8l4.6 6.2L18.9 2zm-1.2 18h1.8L6.9 3.9H5L17.7 20z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M18.9 2H22l-6.8 7.8L23.2 22h-6.6l-5.1-7-6.1 7H2.3l7.3-8.3L.8 2h6.8l4.6 6.2L18.9 2zm-1.2 18h1.8L6.9 3.9H5L17.7 20z"/></svg>');
}

[data-icon="ig"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm10 2H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm-5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5zM17.8 6.2a1 1 0 1 1-1 1 1 1 0 0 1 1-1z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm10 2H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm-5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5zM17.8 6.2a1 1 0 1 1-1 1 1 1 0 0 1 1-1z"/></svg>');
}

[data-icon="mail"] {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z"/></svg>');
}
