:root {
  --bg-deep: #22262b;
  --bg-mid: #343941;
  --panel: rgba(58, 63, 70, 0.72);
  --panel-border: rgba(255, 255, 255, 0.14);
  --text-main: #f2f0ec;
  --text-muted: #c0b8b0;
  --accent-cyan: #d9642a;
  --accent-teal: #f08a4a;
  --accent-amber: #ffb177;
  --shadow: 0 18px 40px rgba(12, 14, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(240, 138, 74, 0.14) 0%, rgba(240, 138, 74, 0) 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, #1b1e22 0%, var(--bg-deep) 38%, var(--bg-mid) 100%);
  padding: 0 1rem 2.5rem;
  position: relative;
  overflow-x: hidden;
}

.background-grid {
  display: none;
}

.ambient-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.ambient-glow-left {
  left: -60px;
  top: -30px;
  background: rgba(240, 138, 74, 0.11);
}

.ambient-glow-right {
  right: -40px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.main-nav-wrap,
.content,
.site-footer {
  width: min(980px, 100%);
  margin: 0 auto;
}

.main-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.72rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.46rem 0.72rem;
  backdrop-filter: blur(6px);
  background: rgba(41, 45, 51, 0.76);
  box-shadow: 0 10px 24px rgba(12, 14, 18, 0.18);
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0.4rem 0.42rem;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text-main);
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.48rem;
  white-space: nowrap;
  padding: 0.2rem 0.3rem;
  text-decoration: none;
  color: #f7f4ef;
  font-family: "Orbitron", "Exo 2", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.main-nav > .brand-link {
  color: #f7f4ef;
}

.brand-mark {
  width: 18px;
  height: 18px;
  opacity: 0.86;
  filter: drop-shadow(0 2px 8px rgba(240, 138, 74, 0.35));
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.main-nav a {
  color: #d8d3cc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 0.38rem 0.66rem;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-menu ul a:hover,
.nav-menu ul a:focus-visible {
  background: rgba(240, 138, 74, 0.2);
  color: #fff8f4;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.18rem;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #cbc4bc;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  padding: 0.34rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-btn.active {
  background: rgba(240, 138, 74, 0.26);
  color: #fff8f4;
}

.kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Orbitron", "Exo 2", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  margin: 0.32rem 0;
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  text-shadow: none;
}

.subtitle {
  margin: 0;
  color: var(--text-muted);
  max-width: 64ch;
}

.content {
  display: grid;
  gap: 1rem;
  padding-top: 1.2rem;
}

#home,
#projects,
#about,
#contact {
  scroll-margin-top: 5.2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  margin-top: 0.35rem;
  animation: rise-in 0.5s ease-out;
}

.hero-copy {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    var(--panel);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(12, 14, 18, 0.16);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
}

.hero-copy h1 {
  margin: 0.22rem 0 0.45rem;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-logo {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, rgba(240, 138, 74, 0.2) 0%, rgba(240, 138, 74, 0) 55%),
    radial-gradient(circle at 72% 80%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(160deg, rgba(24, 28, 32, 0.94), rgba(37, 42, 48, 0.94));
  padding: 1rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.hero-logo img {
  width: min(100%, 280px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(5, 12, 20, 0.56));
  animation: fox-pulse 3.4s ease-in-out infinite;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(12, 14, 18, 0.16);
  backdrop-filter: blur(4px);
  padding: 1.3rem;
  animation: rise-in 0.65s ease-out;
}

.panel-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-headline h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(240, 138, 74, 0.1);
  border: 1px solid rgba(217, 100, 42, 0.2);
  color: #ffd7bf;
  border-radius: 10px;
  padding: 0.28rem 0.58rem;
  white-space: nowrap;
}

.projects-intro {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.38rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  color: #e2ddd7;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: rgba(240, 138, 74, 0.64);
  background: rgba(240, 138, 74, 0.14);
}

.filter-btn.active {
  border-color: rgba(240, 138, 74, 0.78);
  background: rgba(240, 138, 74, 0.12);
  color: #fff8f4;
}

.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.project-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(240, 138, 74, 0.7);
  background: rgba(72, 77, 84, 0.58);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.project-card:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 138, 74, 0.48);
  box-shadow: 0 12px 24px rgba(12, 14, 18, 0.16);
}

.project-card.is-hidden {
  display: none;
}

.project-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.project-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.project-card p {
  margin: 0.75rem 0 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.project-version-meta {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd7bf;
}

.project-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  padding: 0.26rem 0.5rem;
  font-weight: 700;
  border: 1px solid;
}

.project-tag-core {
  color: #ffd5bc;
  border-color: rgba(240, 138, 74, 0.55);
  background: rgba(240, 138, 74, 0.16);
}

.project-tag-secondary {
  color: #ece7e1;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.project-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.project-modal {
  width: min(720px, calc(100vw - 2rem));
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text-main);
}

.project-modal::backdrop {
  background: rgba(11, 13, 16, 0.6);
  backdrop-filter: blur(8px);
}

.project-modal[open] {
  display: grid;
}

.project-modal-surface {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(47, 52, 58, 0.94);
  box-shadow: 0 24px 48px rgba(8, 10, 13, 0.32);
  padding: 1.3rem;
}

.project-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff8f4;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.project-modal-header {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-right: 3rem;
}

.project-modal-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem;
}

.project-modal-kicker {
  margin: 0 0 0.25rem;
  color: var(--accent-amber);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.project-modal-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.project-modal-description {
  margin: 1rem 0 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.project-modal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.project-modal-section-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f3ece5;
}

.project-modal-meta {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.project-modal-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.38rem;
}

.project-modal-meta-row dt {
  margin: 0;
  color: #cfc5bb;
  font-size: 0.82rem;
}

.project-modal-meta-row dd {
  margin: 0;
  color: #f1e9e1;
  font-weight: 600;
  text-align: right;
}

.project-modal-changelog {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
}

.project-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.5rem 0.82rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.16s ease, filter 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary {
  background: rgba(217, 100, 42, 0.96);
  color: #fff8f4;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-main);
}

.no-results {
  display: none;
  margin: 0.25rem 0 0;
  color: var(--text-muted);
}

.no-results.visible {
  display: block;
}

.changelog-explorer {
  margin-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.changelog-explorer h3 {
  margin: 0;
  font-size: 1rem;
}

.changelog-explorer-intro {
  margin: 0.35rem 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.changelog-filters {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.changelog-filter-field {
  display: grid;
  gap: 0.32rem;
}

.changelog-filter-field label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d7cec4;
}

.changelog-filter-field input,
.changelog-filter-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  padding: 0.48rem 0.58rem;
  font: inherit;
}

.changelog-filter-field input::placeholder {
  color: #b8afa5;
}

.changelog-filter-search {
  grid-column: span 2;
}

.changelog-filter-actions {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
}

.changelog-feed-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.changelog-project-group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(45, 49, 55, 0.48);
  padding: 0.72rem;
}

.changelog-project-group h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.changelog-entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.46rem;
}

.changelog-entry-item {
  border-left: 2px solid rgba(240, 138, 74, 0.56);
  padding-left: 0.55rem;
}

.changelog-entry-meta {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f4c3a0;
}

.changelog-entry-summary {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: #e7e1da;
}

.changelog-empty {
  margin: 0;
  color: var(--text-muted);
}

.changelog-pagination {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.changelog-page-label {
  margin: 0;
  font-size: 0.82rem;
  color: #d5cdc3;
}

.site-footer {
  margin-top: 1.25rem;
  color: #a9a29a;
  font-size: 0.84rem;
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer a {
  color: #ffd2b3;
}

.contact-links {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.about-panel p,
.contact-panel p {
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal-modal-surface {
  display: grid;
  gap: 0.85rem;
}

.legal-modal-heading {
  padding-right: 2.8rem;
}

.legal-list {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.legal-list div {
  display: grid;
  gap: 0.2rem;
}

.legal-list dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #f0cdb7;
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
  color: var(--text-main);
  line-height: 1.5;
}

.legal-list dd a {
  color: #ffd2b3;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(42, 46, 52, 0.95);
  box-shadow: 0 16px 34px rgba(5, 8, 13, 0.4);
  backdrop-filter: blur(8px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  padding: 0.95rem 1rem;
}

.cookie-banner h2 {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner p {
  margin: 0.48rem 0 0;
  color: #d9d2ca;
  line-height: 1.45;
  font-size: 0.88rem;
}

.cookie-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-height: 42px;
}

@keyframes fox-pulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  body {
    padding: 0 0.6rem 2rem;
  }

  .main-nav-wrap {
    padding-top: 0.5rem;
  }

  .main-nav {
    flex-wrap: wrap;
    align-items: center;
    padding: 0.5rem 0.65rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.4rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0.15rem;
    width: 100%;
  }

  .nav-menu ul li a {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 1rem;
  }

  .lang-switch {
    align-self: center;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 1.1rem;
  }

  h1 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }

  .panel {
    border-radius: 14px;
    padding: 1rem;
  }

  .panel-headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .filter-bar {
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: 0.42rem 0.58rem;
  }


  .changelog-filters {
    grid-template-columns: 1fr;
  }

  .changelog-filter-search,
  .changelog-filter-actions {
    grid-column: span 1;
  }

  .changelog-filter-actions {
    justify-content: flex-start;
  }

  .changelog-pagination {
    flex-wrap: wrap;
  }
  .project-card {
    padding: 0.9rem;
  }

  .project-card-head {
    gap: 0.5rem;
  }

  .project-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links .btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .legal-list dt {
    font-size: 0.74rem;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    border-radius: 12px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.68rem 1rem;
  }

  .project-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    margin: 0;
    overflow-y: auto;
  }

  .project-modal-surface {
    border-radius: 0;
    min-height: 100%;
    padding: 1rem;
  }

  .project-modal-header {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.8rem;
    padding-right: 2.7rem;
  }

  .project-modal-logo {
    width: 56px;
    height: 56px;
  }

  .project-modal-actions {
    justify-content: stretch;
  }

  .project-modal-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
