:root {
  color-scheme: dark;
  --color-bg:            #0d0a1e;
  --color-surface:       rgba(255, 255, 255, 0.055);
  --color-surface-hover: rgba(124, 92, 252, 0.15);
  --color-accent:        #a78bfa;
  --color-accent-vivid:  #7c5cfc;
  --color-accent-hover:  #c4b5fd;
  --color-accent-light:  rgba(167, 139, 250, 0.16);
  --color-text-primary:  #f1eeff;
  --color-text-secondary:#9d8ec0;
  --color-border:        rgba(255, 255, 255, 0.10);
  --color-border-accent: rgba(124, 92, 252, 0.50);

  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  --shadow-hover: 0 8px 40px rgba(100, 60, 240, 0.38);
  --shadow-btn:   0 2px 8px rgba(0, 0, 0, 0.30);

  --transition-fast: 140ms ease;
  --transition-base: 220ms ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  line-height: 1.5;
  min-height: 100dvh;
}

/* ─── Page wrapper ───────────────────────────────────────────────── */

.page-wrapper {
  position: relative;
  min-height: 100dvh;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 900px 650px at 75% -5%,  rgba(124, 92, 252, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 650px 500px at -8% 90%,  rgba(168, 85, 247, 0.22) 0%, transparent 65%),
    radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
  padding: var(--space-10) var(--space-4) var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* ─── Profile header ─────────────────────────────────────────────── */

.profile-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-3);
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 0 5px rgba(124, 92, 252, 0.40),
    0 8px 40px rgba(124, 92, 252, 0.60);
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.profile-handle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.profile-tagline {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-top: var(--space-1);
}

/* ─── Social icons ───────────────────────────────────────────────── */

.social-icons {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.social-icon-btn:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124, 92, 252, 0.40);
}

.social-icon-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
}

/* ─── Links container ────────────────────────────────────────────── */

.links-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ─── Featured link ──────────────────────────────────────────────── */

.featured-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.22) 0%, rgba(168, 85, 247, 0.16) 100%);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-md);
  color: var(--color-accent-hover);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(124, 92, 252, 0.28), var(--shadow-card);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.featured-link:hover {
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.35) 0%, rgba(168, 85, 247, 0.28) 100%);
  box-shadow: 0 8px 40px rgba(124, 92, 252, 0.50), var(--shadow-card);
  transform: translateY(-2px);
}

.featured-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.featured-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.featured-text {
  flex: 1;
}

.featured-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─── Link section card — glassmorphism ──────────────────────────── */

.link-section {
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  padding: var(--space-4) var(--space-5) var(--space-2);
}

/* ─── Accordion toggle button ────────────────────────────────────── */

.section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: left;
  transition: background-color var(--transition-fast), opacity var(--transition-fast);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.section-toggle:hover {
  background-color: rgba(124, 92, 252, 0.08);
  opacity: 1;
}

.section-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}

.section-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.section-toggle-label {
  flex: 1;
}

.toggle-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(167, 139, 250, 0.22);
  white-space: nowrap;
  letter-spacing: 0;
  text-transform: none;
  flex-shrink: 0;
}

.chevron {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-accent);
}

[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* ─── Accordion content ──────────────────────────────────────────── */

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  overflow: hidden;
  transition:
    grid-template-rows var(--transition-base),
    visibility 0s var(--transition-base);
}

.accordion-content.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition:
    grid-template-rows var(--transition-base),
    visibility 0s;
}

.accordion-content > * {
  min-height: 0;
}

/* ─── Link list — vertical stack ────────────────────────────────── */

.link-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4) var(--space-4);
}

.link-section:not(.link-section--accordion) .link-list {
  padding-top: 0;
}

/* ─── 2-column grid ──────────────────────────────────────────────── */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4) var(--space-4);
}

.link-section:not(.link-section--accordion) .grid-2 {
  padding-top: 0;
}

/* ─── Grid link cards ────────────────────────────────────────────── */

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4) var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  min-height: 72px;
  box-shadow: var(--shadow-btn);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.link-card:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.link-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

.link-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── Link buttons — pill stack ──────────────────────────────────── */

.link-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px var(--space-5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  box-shadow: var(--shadow-btn);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.link-btn:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.link-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

.link-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── Badge image cards (2-col grid for featured courses) ───────── */

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  text-align: center;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.badge-card:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.badge-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.badge-card .cert-badge,
.badge-card .cert-img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  max-width: 140px;
  border-radius: var(--radius-sm);
}

.badge-card .badge-code {
  font-size: 1.25rem;
}

.badge-card-name {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text-primary);
}

/* Full-width vertical variant — image on top, text below, bigger image */
.badge-card--full {
  grid-column: 1 / -1;
}

.badge-card--full .cert-img,
.badge-card--full .cert-badge {
  width: auto;
  height: 90px;
  max-width: 100%;
  aspect-ratio: unset;
}

.badge-card--full .badge-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ─── Course carousel ────────────────────────────────────────────── */

.course-carousel {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--space-2) var(--space-4) var(--space-4);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.course-carousel::-webkit-scrollbar {
  display: none;
}

.course-card {
  flex: 0 0 130px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  text-align: center;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.course-card:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.course-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── Cert badge (CSS placeholder — swap with <img class="cert-img"> for real badges) */

.cert-badge {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.course-card .cert-badge,
.course-card .cert-img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  flex-shrink: 1;
}

.badge-code {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.cert-badge--azure {
  background: linear-gradient(145deg, #0050A0 0%, #0078D4 100%);
  color: #fff;
}

.course-name {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text-primary);
}

/* ─── Footer ─────────────────────────────────────────────────────── */

.page-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--space-10);
}

/* ─── Theme toggle ───────────────────────────────────────────────── */

.theme-toggle {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-btn);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}

.theme-toggle:hover {
  color: var(--color-text-primary);
  transform: rotate(20deg) scale(1.10);
  box-shadow: 0 4px 20px rgba(124, 92, 252, 0.35);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Dark mode: show sun (click → go light) */
.icon-sun  { display: block; }
.icon-moon { display: none; }

/* Light mode: show moon (click → go dark) */
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* ─── Light Mode — Apple bright Liquid Glass ─────────────────────── */
/*
 * Glass is reserved for floating controls (toggle, social icons).
 * Content cards use near-opaque white — layered, not smoky.
 */

[data-theme="light"] {
  color-scheme: light;

  --color-bg:             #F5F5F7;
  --color-surface:        rgba(255, 255, 255, 0.92);  /* opaque content surface */
  --color-surface-hover:  #ffffff;
  --color-accent:         #7C3AED;                    /* violet, labels & active only */
  --color-accent-vivid:   #6D28D9;
  --color-accent-hover:   #5B21B6;
  --color-accent-light:   rgba(124, 58, 237, 0.08);
  --color-text-primary:   #1D1D1F;                    /* Apple primary text */
  --color-text-secondary: #6E6E73;                    /* Apple secondary text */
  --color-border:         rgba(0, 0, 0, 0.07);        /* soft separator */
  --color-border-accent:  rgba(124, 58, 237, 0.22);

  --shadow-card:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
  --shadow-hover:
    0 4px 12px rgba(0, 0, 0, 0.09),
    0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-btn:
    0 1px 3px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Bright, clean background — barely-there hint of lavender, no drama */
[data-theme="light"] .page-wrapper {
  background-color: #F5F5F7;
  background-image:
    radial-gradient(ellipse 700px 500px at 85% 0%,  rgba(167, 139, 250, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 5%  95%, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  background-size: auto, auto;
}

/* Avatar — crisp white ring, subtle violet halo */
[data-theme="light"] .avatar {
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 5px rgba(124, 58, 237, 0.16),
    0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Handle pill — solid white, grey border */
[data-theme="light"] .profile-handle {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

/* Section cards — mostly opaque white panels, NOT glass */
[data-theme="light"] .link-section {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

/* Featured CTA — pure white, violet accent border */
[data-theme="light"] .featured-link {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.22);
  color: var(--color-accent-vivid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 6px 20px rgba(124, 58, 237, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

[data-theme="light"] .featured-link:hover {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.36);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(124, 58, 237, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* Content buttons — white, separator border, inner highlight */
[data-theme="light"] .link-btn {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .link-card,
[data-theme="light"] .badge-card,
[data-theme="light"] .course-card {
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Floating controls — glass treatment (these float above content) */
[data-theme="light"] .social-icon-btn {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.75);
  color: #1D1D1F;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

[data-theme="light"] .social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.80);
  border-color: rgba(255, 255, 255, 0.90);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.75);
  color: #1D1D1F;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.80);
  border-color: rgba(255, 255, 255, 0.90);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

/* Accordion hover — barely-there grey wash */
[data-theme="light"] .section-toggle:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Pill badge */
[data-theme="light"] .toggle-badge {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.14);
}

/* ─── Desktop ────────────────────────────────────────────────────── */

@media (min-width: 640px) {
  .avatar {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 2rem;
  }

  .profile-tagline {
    font-size: 0.875rem;
  }
}

/* ─── Reduced motion ─────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .featured-link:hover,
  .link-card:hover,
  .link-btn:hover,
  .badge-card:hover,
  .course-card:hover,
  .social-icon-btn:hover,
  .theme-toggle:hover {
    transform: none;
  }
}
