:root {
  /* Default theme = cyber */

  /* background system */
  --bg: #07090f;
  --bg-alt: #10141d;

  /* glass panels with subtle white presence */
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.18);

  /* typography */
  --text: #f5f7ff;
  --muted: #c7cfdd;

  /* neon cyber green */
  --accent: #39ff14;

  /* softer highlight green */
  --accent-strong: #b8fff1;

  /* rgb version for glows */
  --accent-rgb: 57, 255, 20;

  /* layout */
  --max-width: 1160px;
  --radius: 20px;

  /* deeper shadow for dark UI */
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

html[data-theme="studio"] {
  --bg: #f5f5f5;
  --bg-alt: #e8e8e8;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-border: rgba(0, 0, 0, 0.1);
  --text: #111111;
  --muted: #5c5c5c;
  --accent: #000000;
  --accent-strong: #2b2b2b;
  --accent-rgb: 0, 0, 0;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

html[data-theme="canvas"] {
  --bg: #fdf8f1;
  --bg-alt: #f3eadf;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-border: rgba(191, 87, 0, 0.14);
  --text: #2e2218;
  --muted: #705f4f;
  --accent: #bf5700; /* Texas Longhorns orange */
  --accent-strong: #8f3f00;
  --accent-rgb: 191, 87, 0;
  --shadow: 0 18px 40px rgba(120, 84, 42, 0.1);
}

html[data-theme="developer"] {
  --bg: #07111f;
  --bg-alt: #10203a;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #edf3ff;
  --muted: #a8b5d1;
  --accent: #7cc7ff;
  --accent-strong: #2b6fff;
  --accent-rgb: 124, 199, 255;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

html[data-theme="cyber"] {
  --bg: #020304;
  --bg-alt: #0a0f14;

  /* slightly frosted panels so white appears */
  --panel: rgba(255, 255, 255, 0.06);
  --panel-border: rgba(255, 255, 255, 0.14);

  /* readable white text */
  --text: #f8fafc;
  --muted: #a3b0c2;

  /* bright neon green accents */
  --accent: #39ff14;
  --accent-strong: #16c60c;
  --accent-rgb: 57, 255, 20;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.cyber-glow {
  box-shadow: 0 0 8px rgba(57,255,20,0.6),
              0 0 18px rgba(57,255,20,0.4);
}

a:hover {
  text-shadow: 0 0 6px rgba(57,255,20,0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffffff;
}

html[data-theme="studio"] a:hover,
html[data-theme="canvas"] a:hover {
  color: var(--accent-strong);
}

button,
input,
textarea,
select {
  font: inherit;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  animation: drift 16s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(var(--accent-rgb), 0.24);
  top: 8%;
  left: -80px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(var(--accent-rgb), 0.16);
  right: -40px;
  top: 34%;
  animation-delay: -6s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

html[data-theme="studio"] .bg-grid,
html[data-theme="canvas"] .bg-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(30, 30, 30, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 30, 30, 0.06) 1px, transparent 1px);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(20px) translateX(16px);
  }
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--accent-strong);
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), 0.08),
    0 0 14px rgba(var(--accent-rgb), 0.16);
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.layout-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.layout-switcher-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.layout-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.layout-btn {
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.layout-btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.layout-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  border-color: transparent;
}

html[data-theme="studio"] .layout-btn.active,
html[data-theme="canvas"] .layout-btn.active {
  color: #ffffff;
}

.hero {
  max-width: 860px;
  padding: 3rem 0 1.5rem;
}

html[data-theme="studio"] .hero,
html[data-theme="canvas"] .hero {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

html[data-theme="developer"] .hero {
  max-width: 920px;
}

html[data-theme="cyber"] .hero {
  max-width: 900px;
}

.hero-text {
  max-width: 100%;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  line-height: 1.02;
  max-width: 820px;
  margin: 0 0 1rem;
}

html[data-theme="studio"] .hero h1,
html[data-theme="canvas"] .hero h1,
html[data-theme="studio"] .hero-description,
html[data-theme="canvas"] .hero-description {
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  max-width: 760px;
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 1rem;
}

html[data-theme="studio"] .hero-buttons,
html[data-theme="canvas"] .hero-buttons {
  justify-content: center;
}

.hero-note {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 0.4rem;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 0.98;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  border: none;
}

.btn-secondary {
  border: 1px solid var(--panel-border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.8rem 1.25rem;
}

.alt-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

html[data-theme="studio"] .alt-section,
html[data-theme="canvas"] .alt-section {
  background: rgba(255, 255, 255, 0.24);
  border-top: 1px solid rgba(30, 30, 30, 0.04);
  border-bottom: 1px solid rgba(30, 30, 30, 0.04);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.about-grid,
.skills-grid,
.projects-grid {
  display: grid;
  gap: 1.25rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.skills-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

html[data-theme="canvas"] .projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card,
.project-card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

html[data-theme="developer"] .card,
html[data-theme="developer"] .project-card,
html[data-theme="developer"] .contact-card {
  border-radius: 16px;
}

html[data-theme="cyber"] .card,
html[data-theme="cyber"] .project-card,
html[data-theme="cyber"] .contact-card {
  border-radius: 12px;
}

.card h3,
.project-card h3 {
  margin-top: 0;
}

.card p,
.project-card p,
.contact-card p,
.github-intro {
  color: var(--muted);
}

.project-tag {
  margin: 0.2rem 0 0.6rem;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.bullet-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.bullet-list li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.project-preview {
  margin-bottom: 1rem;
}

.browser-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: #0a0f19;
}

.browser-top {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.browser-body {
  height: 190px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.preview-one,
.preview-two,
.preview-three {
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.12), transparent 34%),
    linear-gradient(180deg, #0d1420, #09111a);
}

.preview-nav {
  height: 14px;
  width: 42%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}

.preview-hero {
  height: 54px;
  width: 78%;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.35), rgba(255, 255, 255, 0.06));
  margin-bottom: 1rem;
}

.preview-lines {
  width: 88%;
  height: 60px;
  border-radius: 14px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.12) 0 10px,
      transparent 10px 18px,
      rgba(255, 255, 255, 0.09) 18px 28px,
      transparent 28px 36px,
      rgba(255, 255, 255, 0.07) 36px 46px,
      transparent 46px 60px
    );
}

.preview-sidebar {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 26%;
  height: calc(100% - 2rem);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-content-grid {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: calc(74% - 1rem);
  height: calc(100% - 2rem);
  border-radius: 14px;
  background:
    linear-gradient(
      to bottom,
      rgba(var(--accent-rgb), 0.24) 0 32px,
      transparent 32px 42px,
      rgba(255, 255, 255, 0.08) 42px 76px,
      transparent 76px 86px,
      rgba(255, 255, 255, 0.08) 86px 120px
    );
}

.preview-chart {
  width: 68%;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.3), rgba(255, 255, 255, 0.08));
  margin-bottom: 1rem;
}

.preview-cards {
  width: 100%;
  height: 84px;
  border-radius: 14px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 31%,
      transparent 31% 35%,
      rgba(255, 255, 255, 0.08) 35% 66%,
      transparent 66% 70%,
      rgba(255, 255, 255, 0.08) 70% 100%
    );
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 16px 16px;
}

.github-card {
  padding: 1.5rem;
}

.github-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  min-width: 150px;
}

.stat-box h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.stat-box p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.repo-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.repo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.repo-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.repo-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.repo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  width: min(740px, 100%);
  border-radius: 24px;
  padding: 2rem;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
  border: 1px solid var(--panel-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: #0b1320;
  color: #edf2ff;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-intro {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-card {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--panel-border);
  color: inherit;
  border-radius: 16px;
  padding: 1rem;
  min-height: 74px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.service-card span {
  display: block;
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.09);
}

.service-card.active,
.service-card[aria-pressed="true"] {
  border-color: var(--accent-strong);
  background: rgba(var(--accent-rgb), 0.14);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.16),
    0 12px 28px rgba(var(--accent-rgb), 0.16);
}

.project-form {
  display: grid;
  gap: 0.75rem;
}

.project-form label {
  color: inherit;
  font-weight: 700;
  font-size: 0.95rem;
}

.project-form input,
.project-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  color: inherit;
  font: inherit;
  resize: vertical;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: var(--muted);
}

.project-form input:focus,
.project-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

/* Studio modal */
html[data-theme="studio"] .modal-box {
  background: #fffaf4;
  color: #24170f;
  border: 1px solid rgba(35, 24, 14, 0.1);
  box-shadow: 0 24px 60px rgba(80, 52, 20, 0.18);
}

html[data-theme="studio"] .modal-intro,
html[data-theme="studio"] .modal-close {
  color: rgba(36, 23, 15, 0.68);
}

html[data-theme="studio"] .service-card {
  background: #fff6eb;
  border: 1px solid rgba(35, 24, 14, 0.12);
  color: #24170f;
}

html[data-theme="studio"] .service-card span {
  color: #24170f;
}

html[data-theme="studio"] .service-card:hover {
  background: #fff0df;
  border-color: rgba(var(--accent-rgb), 0.5);
}

html[data-theme="studio"] .service-card.active,
html[data-theme="studio"] .service-card[aria-pressed="true"] {
  background: rgba(var(--accent-rgb), 0.16);
  border-color: var(--accent-strong);
  color: #24170f;
}

html[data-theme="studio"] .project-form input,
html[data-theme="studio"] .project-form textarea {
  background: rgba(36, 23, 15, 0.04);
  border: 1px solid rgba(35, 24, 14, 0.12);
  color: #24170f;
}

/* Canvas modal */
html[data-theme="canvas"] .modal-box {
  background: #fff8ef;
  color: #2b2118;
  border: 1px solid rgba(114, 84, 53, 0.12);
  box-shadow: 0 24px 60px rgba(120, 84, 42, 0.18);
}

html[data-theme="canvas"] .modal-intro,
html[data-theme="canvas"] .modal-close {
  color: rgba(43, 33, 24, 0.7);
}

html[data-theme="canvas"] .service-card {
  background: #fff2e5;
  border: 1px solid rgba(114, 84, 53, 0.14);
  color: #2b2118;
}

html[data-theme="canvas"] .service-card span {
  color: #2b2118;
}

html[data-theme="canvas"] .service-card:hover {
  background: #ffe9d3;
  border-color: rgba(var(--accent-rgb), 0.55);
}

html[data-theme="canvas"] .service-card.active,
html[data-theme="canvas"] .service-card[aria-pressed="true"] {
  background: rgba(var(--accent-rgb), 0.18);
  border-color: var(--accent-strong);
  color: #2b2118;
}

html[data-theme="canvas"] .project-form input,
html[data-theme="canvas"] .project-form textarea {
  background: rgba(43, 33, 24, 0.04);
  border: 1px solid rgba(114, 84, 53, 0.14);
  color: #2b2118;
}

/* Developer and Cyber modal */
html[data-theme="developer"] .modal-box,
html[data-theme="cyber"] .modal-box {
  background: #0b1320;
  color: #edf2ff;
}

body.modal-open {
  overflow: hidden;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.thank-you-card {
  width: min(680px, 100%);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  text-align: center;
}

.thank-you-card h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.thank-you-card p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1rem;
}

.redirect-note {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-right {
    width: 100%;
    align-items: flex-start;
  }

  .layout-switcher {
    align-items: flex-start;
  }

  .layout-buttons {
    justify-content: flex-start;
  }

  .hero {
    text-align: center;
    margin: 0 auto;
  }

  .hero h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .modal-box {
    padding: 1.25rem;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .nav-avatar {
    width: 52px;
    height: 52px;
  }

  .logo {
    font-size: 1rem;
    gap: 10px;
  }

  .layout-switcher-label {
    font-size: 0.75rem;
  }

  .layout-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}
