:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-2: #fafafa;
  --bg-3: #f3f3f5;
  --bg-4: #e8e8ec;
  --surface-tint: rgba(15, 15, 25, 0.04);
  --surface-tint-2: rgba(15, 15, 25, 0.08);
  --border: rgba(15, 15, 25, .08);
  --border-2: rgba(15, 15, 25, .14);
  --text: #0c0c14;
  --text-2: #555560;
  --text-3: #8b8b95;
  --amber: #d68910;
  --amber-bg: #f5a623;
  --green: #15a467;
  --blue: #2563eb;
  --red: #dc2626;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
}

button, input, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: 58px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav-wrapper {
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--amber-bg);
  color: #111;
  border-radius: 10px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
}

.brand-copy {
  color: var(--text);
}

.brand-copy span {
  color: var(--amber);
}

.nav-links a {
  color: var(--text-2);
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.mobile-menu-btn {
  border: none;
  background: transparent;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-2);
}

.page-shell {
  padding: 2rem 1rem 4rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  max-width: 840px;
  margin: 0 auto 2.5rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(61, 214, 140, 0.12);
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero h1 {
  margin: 1.5rem 0 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero em {
  color: var(--amber);
  text-decoration: underline var(--amber);
  font-style: normal;
}

.hero-copy {
  max-width: 730px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-stats {
  margin-top: 2rem;
  gap: 1rem;
  color: var(--text-2);
}

.hero-stats div {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  border-radius: 18px;
  min-width: 160px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.tool-card {
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.card-shell {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 1.75rem;
  box-shadow: 0 12px 40px rgba(15,15,25,.06);
}

.input-panel {
  display: grid;
  gap: 1rem;
}

.input-label-row {
  font-size: 0.9rem;
  color: var(--text-2);
}

.input-label-row label {
  font-weight: 500;
}

.char-count {
  color: var(--text-3);
}

.char-count.active {
  color: var(--amber);
}

.input-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

#scramble-input {
  width: 100%;
  min-height: 76px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem 1.3rem;
  background: var(--bg-3);
  color: var(--text);
  font-family: 'Fira Code', monospace;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

#scramble-input::placeholder {
  color: var(--text-3);
}

#unscramble-btn {
  min-width: 170px;
  border: none;
  border-radius: 22px;
  background: var(--amber-bg);
  color: #111;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(245,166,35,.25);
}

#unscramble-btn .spinner-border {
  color: #111;
  margin-left: 0.6rem;
}

.filter-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  transition: all .2s ease;
}

.filter-pill.active,
.filter-pill:hover {
  color: var(--amber);
  border-color: rgba(245,166,35,.4);
  background: rgba(245,166,35,.08);
}

.tabs-bar {
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-2);
  padding: 0.7rem 0;
  font-weight: 700;
  position: relative;
}

.tab-button.active {
  color: var(--text);
  border-color: var(--amber);
}

.tab-button .badge {
  margin-left: 0.5rem;
  background: var(--surface-tint);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  color: var(--text-2);
}

.tab-button .badge.blue {
  background: rgba(37,99,235,.14);
  color: var(--blue);
}

.gpt-badge {
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: var(--surface-tint);
  color: var(--text-2);
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
}

.meta-bar {
  margin-top: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.92rem;
}

.meta-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.copy-all-btn {
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  transition: background .2s ease;
}

.copy-all-btn:hover {
  background: var(--bg-3);
}

.results-panel {
  min-height: 320px;
}

.panel {
  display: none;
  padding: 1rem 0;
}

.panel.active {
  display: block;
}

.word-group {
  margin-bottom: 1.75rem;
}

.group-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 0.84rem;
}

.group-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.word-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Fira Code', monospace;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.word-chip:hover {
  transform: translateY(-1px);
  background: rgba(214,137,16,.1);
  border-color: rgba(214,137,16,.4);
  color: var(--amber);
}

.word-chip.copied {
  background: rgba(21,164,103,.12);
  border-color: rgba(21,164,103,.4);
  color: var(--green);
}

.ai-chip {
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.22);
  color: var(--blue);
}

.ai-chip:hover {
  background: rgba(37,99,235,.14);
  border-color: rgba(37,99,235,.4);
  color: var(--blue);
}

.loading-state {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.loading-dots {
  display: flex;
  gap: 0.6rem;
}

.loading-dot {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
}

.loading-dot:nth-child(2) { animation-delay: 0.15s; }
.loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
}

.empty-state {
  display: none;
  text-align: center;
  color: var(--text-2);
  padding: 3rem 1rem;
}

.empty-state.active {
  display: block;
}

.empty-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  color: var(--text-2);
}

.empty-state h3 {
  margin-bottom: 0.75rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.empty-state p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-3);
}

.ad-carousel {
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-3);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.promo-banner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border-2);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  isolation: isolate;
}

.promo-banner:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  box-shadow: 0 16px 40px rgba(15,15,25,.1);
}

.banner-copy {
  padding: 2.2rem 2.2rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  background: var(--bg-2);
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-tint);
  border: 1px solid var(--border);
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 0.72rem;
  width: fit-content;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-bg);
  box-shadow: 0 0 8px rgba(245,166,35,.5);
}

.banner-copy h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.banner-copy p {
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  max-width: 44ch;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  width: fit-content;
  transition: background .2s ease, transform .2s ease;
}

.banner-cta svg {
  width: 18px;
  height: 18px;
}

.promo-banner:hover .banner-cta {
  transform: translateX(4px);
}

.banner-art {
  position: relative;
  overflow: hidden;
}

/* ManyFace banner — social-feed cards */
.banner-manyface .banner-art {
  background: var(--bg-3);
  border-right: 1px solid var(--border);
}

.banner-manyface .feed-stack {
  position: absolute;
  inset: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
}

.feed-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(15,15,25,.04);
}

.feed-card.fc1, .feed-card.fc3 {
  grid-template-columns: auto 1fr auto;
}

.feed-card.fc2 {
  padding: 0;
  overflow: hidden;
}

.feed-card.fc1 { transform: translateX(-2%) rotate(-1.5deg); }
.feed-card.fc2 { transform: translateX(3%) rotate(1deg); }
.feed-card.fc3 { transform: translateX(-1%) rotate(-0.5deg); }

.fc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-bg);
}

.fc-avatar.small {
  width: 30px;
  height: 30px;
  background: var(--blue);
}

.fc-meta {
  display: grid;
  gap: 0.4rem;
}

.fc-line {
  height: 7px;
  border-radius: 6px;
  background: rgba(15,15,25,.18);
}

.fc-line.w30 { width: 30%; opacity: .55; }
.fc-line.w40 { width: 40%; opacity: .55; }
.fc-line.w55 { width: 55%; }
.fc-line.w70 { width: 70%; }

.fc-heart {
  width: 22px;
  height: 22px;
  background: var(--red);
  -webkit-mask: radial-gradient(circle at 30% 30%, #000 50%, transparent 51%) 0 0/50% 50% no-repeat,
                radial-gradient(circle at 70% 30%, #000 50%, transparent 51%) 100% 0/50% 50% no-repeat,
                linear-gradient(#000, #000) 0 50%/100% 50% no-repeat;
          mask: radial-gradient(circle at 30% 30%, #000 50%, transparent 51%) 0 0/50% 50% no-repeat,
                radial-gradient(circle at 70% 30%, #000 50%, transparent 51%) 100% 0/50% 50% no-repeat,
                linear-gradient(#000, #000) 0 50%/100% 50% no-repeat;
  opacity: .85;
}

.fc-photo {
  display: block;
  width: 100%;
  height: 110px;
  background: var(--bg-4);
}

.fc-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem 0.85rem;
}

.fc-pill {
  width: 38px;
  height: 14px;
  border-radius: 999px;
  background: rgba(15,15,25,.12);
}

.fc-pill.ghost {
  margin-left: auto;
  background: rgba(15,15,25,.08);
  width: 22px;
}

.fc-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(15,15,25,.3);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.fc-dot:nth-of-type(2) { right: 1.4rem; }
.fc-dot:nth-of-type(3) { right: 1.8rem; }

/* ManyProducts banner — shop product grid */
.banner-manyproducts .banner-art {
  background: var(--bg-3);
  border-right: 1px solid var(--border);
}

.banner-manyproducts .shop-grid {
  position: absolute;
  inset: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
}

.shop-card {
  position: relative;
  border-radius: 16px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15,15,25,.04);
  overflow: hidden;
}

.sc-image {
  display: block;
  width: 100%;
  height: 60%;
  border-radius: 10px;
  background: var(--bg-4);
}

.sc-image.alt { background: var(--bg-3); }
.sc-image.alt2 { background: var(--bg-4); }
.sc-image.alt3 { background: var(--bg-3); }

.sc-line {
  height: 7px;
  border-radius: 6px;
  background: rgba(15,15,25,.18);
}

.sc-line.w50 { width: 50%; }
.sc-line.w55 { width: 55%; }
.sc-line.w65 { width: 65%; }
.sc-line.w70 { width: 70%; }

.sc-price {
  width: 35%;
  height: 9px;
  border-radius: 6px;
  background: var(--green);
}

.sc-tag {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .04em;
  font-family: 'Fira Code', monospace;
}

.sc-tag.new {
  background: var(--green);
  color: #fff;
}

@media (max-width: 768px) {
  .promo-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .banner-art {
    aspect-ratio: 16 / 9;
  }
  .banner-copy {
    padding: 1.6rem;
  }
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--text-3);
  opacity: 1;
  transition: width .3s ease, background .3s ease;
}

.carousel-indicators .active {
  width: 34px;
  background: var(--amber);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.grid-card {
  background: var(--bg-2);
  padding: 2rem;
  border: 1px solid var(--border);
}

.grid-card:hover {
  background: var(--bg-3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-icon.amber { background: rgba(245,166,35,.15); color: var(--amber); }
.feature-icon.blue { background: rgba(37,99,235,.12); color: var(--blue); }
.feature-icon.green { background: rgba(21,164,103,.12); color: var(--green); }
.feature-icon.purple { background: rgba(124,58,237,.12); color: #7c3aed; }

.grid-card h4 {
  margin-bottom: 0.85rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.grid-card p {
  color: var(--text-2);
  line-height: 1.75;
}

.how-it-works {
  margin-bottom: 2.5rem;
}

.how-it-works h2 {
  margin-bottom: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,.12);
  border-radius: 14px;
  color: var(--amber);
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.step-card h5 {
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-2);
  line-height: 1.7;
}

.game-tags {
  margin-bottom: 3rem;
}

.tag-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.tag-sub {
  color: var(--text-2);
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-item[open] {
  border-color: var(--border-2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Fira Code', monospace;
  font-size: 1.3rem;
  color: var(--amber);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item > div {
  padding: 0 1.3rem 1.2rem;
}

.faq-item p {
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tags-row span {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer {
  padding: 2.5rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 46ch;
  line-height: 1.75;
  font-size: 0.95rem;
}

.footer h4 {
  margin-bottom: 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

.footer p,
.footer ul,
.footer a,
.footer span {
  color: var(--text-2);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer a {
  transition: color .2s ease;
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 0.5rem;
  color: var(--text-3);
  font-size: 0.9rem;
}

.footer-tag {
  color: var(--text-3);
}

@media (max-width: 991px) {
  .footer-grid, .steps-row, .hero-stats {
    grid-template-columns: 1fr;
  }
  .filters, .meta-bar {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-shell {
    padding-top: 1rem;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .input-group {
    grid-template-columns: 1fr;
  }
  .tabs, .meta-copy {
    flex-direction: column;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
}
