/* Base styles */
body {
  background-color: #ffffff;
  color: #0d0e0e;
  font-family: "Inter", sans-serif;
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

body.dark-mode {
  background-color: #111111;
  color: #c1c3c6;
}

/* Sidebar */
.sidebar {
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  overflow: hidden;
  z-index: 100;
}
body.dark-mode .sidebar {
  background-color: #171717;
}

/* Sidebar inner wrapper */
.sb-main {
  padding: 0px 4px;
}
.sb-main + .sb-main {
  margin-top: 26px;
}

/* Sidebar groups */
.sb-group {
  padding: 0 8px;
}

/* Sidebar titles */
.sb-title {
  margin: 16px 0 8px 0;
  padding: 0 15px 0 10px;
  display: flex;
  align-items: center;
}
.sb-title.first-title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/MH-blackLogo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
body.dark-mode .sb-title.first-title::before {
  background-image: url("/images/MH-whiteLogo.png");
}

.sb-title h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6c6c6c;
}
body.dark-mode .sb-title h5 {
  color: #a1a1a1;
}

/* Sidebar tabs */
.sb-tabs {
  padding: 6px 14px;
  margin-bottom: 6px;
  border-radius: 10px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.sb-tabs:hover,
.sb-tabs.active {
  background-color: #ffffff;
  box-shadow: 0 1px 3px #00000066;
  border-radius: 8px;
}
body.dark-mode .sb-tabs:hover,
body.dark-mode .sb-tabs.active {
  background-color: #1d1f20;
  box-shadow: 0 1px 3px #00000066;
}
.sb-tabs a {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #0d0e0e;
  text-decoration: none;
}
body.dark-mode .sb-tabs a {
  color: #a3a3a3;
}
.sb-tabs a span:first-child {
  margin-right: 10px;
}
.sb-tabs.active a {
  color: #0d0e0e;
  font-weight: 600;
}
body.dark-mode .sb-tabs.active a {
  color: #ffffff;
}
.sb-tabs svg {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  vertical-align: middle;
  stroke-width: 1;
}
.sb-tabs .sb-icon {
  margin-right: 8px;
}
.sb-tabs .sb-external-icon {
  position: absolute;
  right: 10px;
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

.sb-empty-container {
  padding: 15px;
  height: 100%;
}

/* Theme switcher */
.theme-switch {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-switch input {
  display: none;
}
.slider {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  border-radius: 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow: inset 0 0 4px #00000088;
}
body.dark-mode .slider {
  background-color: #2c2c2c;
  box-shadow: inset 0 0 5px #ffffff88;
}
.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.25s;
  z-index: 1;
}
body.dark-mode .slider::before {
  background-color: #0d0e0e;
}
input:checked + .slider::before {
  transform: translateX(20px);
}
.theme-icon {
  width: 12px;
  height: 12px;
  stroke: #2c2c2c;
  z-index: 2;
  transition: opacity 0.2s, stroke 0.2s;
}
body.dark-mode .theme-icon {
  stroke: #fff;
}
#moon-icon {
  opacity: 1;
}
#sun-icon {
  opacity: 0;
}
body.dark-mode #moon-icon {
  opacity: 0;
}
body.dark-mode #sun-icon {
  opacity: 1;
}

/* Page content */
.page-content {
  margin-left: 220px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.title-content {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 3;
}
.secondary-content {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.secondary-content p {
  text-align: center;
}
.empty-container {
  padding: 30px;
  height: 100%;
}
.empty-container.sm {
  padding: 15px;
  height: 100%;
}
.empty-container.lg {
  padding: 60px;
  height: 100%;
}
.empty-container.xl {
  padding: 120px;
  height: 100%;
}

.footer {
  margin-left: 220px;
  padding: 20px 0;
  background-color: #dbdee1;
  color: #a9abae;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: calc(100% - 220px);
}
body.dark-mode .footer {
  background-color: #0d0e0e;
  color: #c1c3c6;
}

/* Typing effect */
.typing {
  margin: 0 auto;
  overflow: hidden;
  font-family: monospace;
  font-size: 32px;
  font-weight: bold;
  color: #111313;
}
body.dark-mode .typing {
  color: #ffffff;
}
.typing::after {
  content: "|";
  display: inline-block;
  vertical-align: bottom;
  animation: blink-caret 0.5s infinite;
  font-weight: normal;
}
@keyframes blink-caret {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* =============================
   Profile Card Container
============================= */
.profile-wrapper {
  position: relative;
  width: 320px;
  height: 420px;
  margin: 80px auto;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow around the card */
/* Iridescent shimmer glow animation */
@keyframes iridescentGlow {
  0% {
    box-shadow: 0 0 40px 20px rgba(147, 86, 255, 0.45),
      0 0 80px 40px rgba(90, 230, 255, 0.25),
      0 0 120px 60px rgba(255, 180, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px 20px rgba(90, 230, 255, 0.45),
      0 0 80px 40px rgba(255, 180, 255, 0.25),
      0 0 120px 60px rgba(147, 86, 255, 0.15);
  }
  100% {
    box-shadow: 0 0 40px 20px rgba(147, 86, 255, 0.45),
      0 0 80px 40px rgba(90, 230, 255, 0.25),
      0 0 120px 60px rgba(255, 180, 255, 0.1);
  }
}

/* Apply shimmer to the existing glow element */
.profile-glow {
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: rgba(147, 86, 255, 1);
  box-shadow: 0 0 40px 20px rgba(147, 86, 255, 0.45),
    0 0 80px 40px rgba(147, 86, 255, 0.25),
    0 0 120px 60px rgba(147, 86, 255, 0.1);
  filter: blur(10px);
  z-index: 1;
  animation: iridescentGlow 8s ease-in-out infinite;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

/* The main 3D card */
.profile-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  z-index: 2;
}

/* The inner wrapper for flip */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 18px;
}

/* Flip trigger */
.card-inner.flipped {
  transform: rotateY(180deg);
}

/* Shared card faces */
.card-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* FRONT FACE */
.card-front {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(180, 120, 255, 0.3);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
  transform: rotateY(0deg);
}

/* BACK FACE */
.card-back {
  background: rgba(20, 20, 20, 0.95);
  color: #ccc;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  font-size: 12px;
  font-family: "Inter", monospace;
  line-height: 1.5;
  text-align: center;
}

/* Iridescent staggered diagonal logo pattern */
.logo-tiles {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background-image: url("/images/null.svg"), url("/images/null.svg"),
    url("/images/null.svg"), url("/images/null.svg"), url("/images/null.svg");
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: 0% 25%, 0% 75%, 100% 0%, 100% 50%;
  opacity: 0.15;
  transform: rotate(15deg);
  mix-blend-mode: screen;
  filter: brightness(1.3) contrast(1.3) saturate(150%);
}

/* Foil sheen overlay */
.foil-sheen {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.05) 70%,
      rgba(255, 255, 255, 0.15) 100%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 3px,
      transparent 6px
    );
  background-size: 200% 200%, 300% 300%;
  filter: blur(1px) saturate(180%) brightness(1.3);
  opacity: 0.25;
  transition: background-position 0.2s ease-out;
}

/* =============================
   Subtle Micro-Sheen Animation
============================= */
.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(255, 255, 255, 0) 80%
  );
  background-size: 200% 200%;
  mix-blend-mode: soft-light;
  animation: microSheen 12s linear infinite;
  z-index: 3;
  pointer-events: none;
  opacity: 0.25;
}

@keyframes microSheen {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Profile photo */
.photo-wrap {
  position: relative;
  z-index: 5;
  transform: translateZ(50px);
  transition: transform 0.2s ease;
}

.profile-photo {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
}

/* Bottom typing title */
.profile-title {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateZ(40px);
  font-size: 16px;
  font-family: "Inter", monospace;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.2s ease-out;
}

/* Typing animation caret */
.typing::after {
  content: "|";
  animation: blink 0.8s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* =============================
   Tilted photo grid 
============================= */
.tilted-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tilted-card {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #151515;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
}
.tilted-card:hover {
  z-index: 10;
}
.tilted-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  pointer-events: none;
}
.tilted-card .image-tag {
  position: absolute;
  top: 30px;
  left: 12px;
  z-index: 15;
  pointer-events: none;
  background: none;
}
.tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  transform: translateZ(40px);
  transition: transform 0.3s ease;
}
.tilted-card:hover .tag-icon {
  transform: translateZ(50px);
}
.tag-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
}

/* =============================
   Minimal Iridescent Tooltip
============================= */
.iridescent-tooltip {
  position: absolute;
  z-index: 99;
  padding: 6px 16px;
  border-radius: 10px;
  background: linear-gradient(
    120deg,
    rgba(147, 86, 255, 0.9),
    rgba(90, 230, 255, 0.9),
    rgba(255, 180, 255, 0.9)
  );
  background-size: 300% 300%;
  box-shadow: 0 0 10px rgba(147, 86, 255, 0.6), 0 0 25px rgba(90, 230, 255, 0.3),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
  animation: tooltipIridescence 4s ease-in-out infinite,
    tooltipFloat 5s ease-in-out infinite alternate;
  backdrop-filter: blur(10px);
  pointer-events: none;
  transition: opacity 1.2s ease;
  transform: translateX(-50%);
}

.iridescent-tooltip span {
  font-family: "Inter", monospace;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Animated shifting gradient shimmer */
@keyframes tooltipIridescence {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Subtle floating motion */
@keyframes tooltipFloat {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    transform: translateX(-50%) translateY(-4px) scale(1.02);
  }
}

.iridescent-tooltip.fade-out {
  opacity: 0;
}

/* ======================
   MOBILE RESPONSIVENESS
=========================*/
@media (max-width: 1024px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: -220px;
    width: 220px;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .sidebar.open {
    left: 0;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
  }

  /* Hamburger / X toggle */
  .menu-toggle {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 1100;
    background: #ffffff;
    border: 1px solid #dbdee1;
    border-radius: 10px;
    color: #c1c3c6;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  body.dark-mode .menu-toggle {
    background: rgba(25, 25, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  /* Move X icon next to “Portfolio” text */
  .menu-toggle.open {
    left: 170px; /* tweak to match “Portfolio” alignment */
    top: 22px;
    background: #ffffff;
    border: 1px solid #dbdee1;
    border-radius: 10px;
    color: #c1c3c6;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  body.dark-mode .menu-toggle.open {
    background: rgba(25, 25, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  /* Page content spacing */
  .page-content {
    margin-left: 0;
    padding-top: 60px;
  }
}

/* Desktop rules */
@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }

  .sidebar {
    left: 0;
  }

  .page-content {
    margin-left: 220px;
    padding-top: 0;
  }
}

/* Mobile footer full width */
@media (max-width: 1024px) {
  .footer {
    margin-left: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #0d0d0d;
    z-index: 900;
  }
  /* Hide footer when sidebar opens */
  .footer.sidebar-open {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
}

/* =============================
   Page Title Wrapper + Logo
============================= */
.page-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  z-index: 10;
  position: relative;
}

.page-logo {
  width: 40px;
  height: 40px;
  background-image: url("/images/MH-blackLogo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.3s ease;
}

body.dark-mode .page-logo {
  background-image: url("/images/MH-whiteLogo.png");
}

/* Hover tilt for flair */
.page-title-wrapper:hover .page-logo {
  transform: rotate(-8deg) scale(1.05);
  filter: drop-shadow(0 0 6px rgba(147, 86, 255, 0.6));
}

/* Title styling */
.page-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: inherit;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When sidebar is closed (visible state) */
.sidebar-closed .page-title,
.sidebar-closed .page-logo {
  opacity: 1;
  transform: translateY(0);
}

/* Bounce in when showing */
.sidebar-closed .page-title.puppet,
.sidebar-closed .page-logo {
  animation: puppetDropBounce 1.1s cubic-bezier(0.25, 1.25, 0.5, 1) forwards;
}

/* Slide up when sidebar opens */
.page-title.exiting,
.page-logo.exiting {
  animation: puppetSlideUp 0.6s ease forwards;
}

/* Keyframes */
@keyframes puppetDropBounce {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  60% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes puppetSlideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

/* Hide floating page title on desktop */
@media (min-width: 1025px) {
  .page-title-wrapper {
    display: none !important;
  }
}

/* Show it only when sidebar is closed on mobile */
@media (max-width: 1024px) {
  .page-title-wrapper {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  body.sidebar-closed .page-title-wrapper {
    opacity: 1;
    pointer-events: auto;
  }
}


/* =============================
   Roadmap Styling
============================= */
.roadmap-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  text-align: center;
}

/* Title + subtitle */
.roadmap-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.roadmap-subtitle {
  color: #b0b0b0;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Legend section */
.roadmap-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

.legend-dot.todo {
  background: #e71d36;
  color: #e71d36;
}

.legend-dot.pending {
  background: #ff9f1c;
  color: #ff9f1c;
}

.legend-dot.in-progress {
  background: #2ec4b6;
  color: #2ec4b6;
}

/* Roadmap container */
.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 24px;
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  transition: transform 0.25s ease, background 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-4px);
  background: rgba(147, 86, 255, 0.08);
}

/* Status indicator (always left-aligned) */
.roadmap-status {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
  align-self: flex-start;
}

.roadmap-status.todo {
  background: #e71d36;
  color: #e71d36;
}

.roadmap-status.pending {
  background: #ff9f1c;
  color: #ff9f1c;
}

.roadmap-status.in-progress {
  background: #2ec4b6;
  color: #2ec4b6;
}

/* Center content but keep dots on left */
.roadmap-content {
  flex: 1;
  text-align: center;
}

.roadmap-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.roadmap-content p {
  font-size: 14px;
  color: #b8b8b8;
  margin: 0;
  line-height: 1.6;
}

/* Extra Notes */
.roadmap-notes {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 22px 26px;
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-notes h4 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.roadmap-notes code {
  color: #84a9ff;
  font-family: "JetBrains Mono", monospace;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 13px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .roadmap-section {
    padding: 24px 20px;
  }

  .roadmap-title {
    font-size: 1.6rem;
  }

  .roadmap-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }

  .roadmap-status {
    margin-bottom: 0;
    align-self: center;
  }

  .roadmap-content {
    text-align: center;
    flex: 1;
  }

  .roadmap-legend {
    gap: 16px;
    font-size: 13px;
  }
}
