  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* IMPORTANT: Set this to transparent or black */
    background-color: black;
    /* Or transparent if you want the underlying page background to show */
    /* If you set it to transparent, ensure your main page background is what you want */
  }

  .mindwox {
    position: absolute;
    z-index: 99999;
    width: 100px;
    bottom: 8px;
    left: 20px;
  }

  .AIIS {

    position: absolute;
    top: 20px;
    width: 60px;
    z-index: 999999;
    left: 20px;

  }

  .aiis-full-form {
    position: absolute;
    top: 26px;
    /* vertically align with logo */
    left: 90px;
    /* to the right of logo */
    z-index: 999999;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Your specific SVG path styling */
  .cesium-svgPath-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    /* This should work if the layers below are transparent */
    /* Ensure no other properties are overriding transparency, like opacity < 1 or a filter that makes it opaque */
  }

  .bg-image {
    background-image: url('img/home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: white;
    text-align: center;
  }

  .content-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    padding: 40px 30px;
    color: white;
    background: linear-gradient(1deg, #041243, #132b7100);
    z-index: 999;
    text-align: center;
    display: block;
    /* make sure it's initially visible */
  }

  .content {
    position: absolute;
    bottom: 50px;
    /* adjust vertical position from bottom */
    left: 50%;
    transform: translateX(-50%);
  }

  .buttonComponent button {
    background: #1e44ab;
    color: white;
    border: 1px solid #0069ff;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin: 5px;
    width: 165px;
    /* text-decoration: none; */
  }

  .gradient-btn {
    /*background: linear-gradient(135deg, #344EAD, #6F96D1);*/
    background: #1e44ab;
    color: white;
    border: 1px solid #0069ff;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
  }

  .gradient-btn:hover {
    background: #091F5B;
    transform: scale(1.02);
    color: white;
  }

  .logo {
    width: 80px;
  }

  .audio-control {
    position: absolute;
    top: 20px;
    right: 80px;
    z-index: 1000;
  }

  .audio-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 20px;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .audio-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .Home-control {
    position: absolute;
    top: 20px;
    right: 140px;
    z-index: 1000;
  }

  .Home-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 20px;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .Home-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .Info-control {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  .Info-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 20px;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .Info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }

  .particles-bg::before,
  .particles-bg::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 40px 40px;
    animation: moveParticles 30s linear infinite;
    opacity: 0.3;
  }

  .particles-bg::after {
    animation-direction: reverse;
    background-size: 60px 60px;
    opacity: 0.15;
  }

  @keyframes moveParticles {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(-50%, -50%);
    }
  }



  #cesiumContainer {
    width: 100%;
    height: 100%;
    display: block;
    /* Make sure Cesium container also has no unexpected background */
    background-color: transparent;
    /* Good practice, though Cesium canvas usually covers it */
  }

  /* Autoplay anchored card */
  #autoPlayCard {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    /* don't steal mouse during autoplay */
  }

  .auto-card {
    display: flex;
    gap: 10px;
    max-width: 360px;
    background: #d7e1ff;
    color: #020202;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .auto-card-media img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
  }

  .auto-card-body h3 {
    margin: 0 0 4px;
    font-size: 20px;
    color: #091F5B;
  }

  .auto-card-body p {
    margin: 0 0 6px;
    font-size: 16px;
    color: #454545;
  }

  .auto-latlon {
    font-style: italic;
    color: #666;
  }

  .map-zoom-controls {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 20px;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  @media (max-width: 768px) {
    .map-zoom-controls {
      right: 12px;
      bottom: 80px;
      /* above bottom filter bar on mobile */
      gap: 6px;
    }

    .zoom-btn {
      padding: 6px 12px;
      font-size: 18px;
    }
  }

  .cesium-viewer .cesium-widget-credits {
    display: none;
  }

  #infoCard {
    position: absolute;
    top: 160px;
    right: 20px;
    z-index: 1000;
    background: #ffffff00;
    border-radius: 10px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); */
    padding: 20px;
    width: 380px;
    /* height: 500px; */
    display: none;
    font-family: sans-serif;
  }

  .actionBtn {
    padding: 5px 7px;
    font-size: 12px;
    background: transparent;
    color: #091F5B;
    border: 2px solid #091F5B;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    /* width: 100%; */
    margin: 3px;
  }

  .ActionButtons {
    display: flex;
    margin-bottom: 12px;
  }

  .left-buttons,
  .right-buttons {
    display: flex;

  }

  .actionBtn:hover {
    background: #091F5B;
    color: #fff;
  }

  /* This is your existing button style */
  .ActionButtons .actionBtn {
    background-color: Transparent;
    color: #091F5B;
    border: 1px solid #091F5B;
    /* other styles... */
  }

  /* This new rule defines the style for the active button */
  .ActionButtons .actionBtn.active {
    background-color: #091F5B;
    color: white;

    /* Optional: You might want a slightly different border or text color */
  }

  .latlon-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }

  .latlon-editor {
    display: none;
    background: rgba(9, 31, 91, 0.05);
    border: 1px solid rgba(9, 31, 91, 0.15);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
  }

  .latlon-editor label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #091F5B;
    margin-bottom: 4px;
  }

  .latlon-editor input {
    width: 100%;
    padding: 6px 8px;
    font-size: 13px;
    border: 1px solid rgba(9, 31, 91, 0.3);
    border-radius: 6px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #091F5B;
  }

  .latlon-editor-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }

  .latlon-btn {
    font-size: 11px;
    padding: 5px 10px;
  }

  .latlon-btn.primary {
    background: #091F5B;
    color: #fff;
    border-color: #091F5B;
  }

  .latlon-btn.primary:hover {
    background: #132f81;
  }

  .latlon-btn.secondary {
    background: transparent;
    color: #091F5B;
    border-color: #091F5B;
  }

  .latlon-btn.secondary:hover {
    background: rgba(9, 31, 91, 0.08);
    color: #091F5B;
  }

  .latlon-status {
    font-size: 12px;
    margin-top: 4px;
    display: none;
  }

  .latlon-status--success {
    color: #0f5132;
  }

  .latlon-status--error {
    color: #842029;
  }

  .card h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #091F5B;
  }

  .card p {
    margin: 0 0 15px;
    font-size: 14px;
    color: #454545;
  }

  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    color: #3b3535;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
  }

  .liquid-glass {
    background: #d7e1ff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    color: #020202;
    height: auto;
  }

  @media (max-width: 768px) {
    #infoCard {
      position: absolute;
      bottom: 60px !important;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background: #ffffff00;
      border-radius: 10px;
      padding: 0px;
      top: auto;
      width: 90vw;
      display: none;
      font-family: sans-serif;
    }

    .content-box {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      height: 100vh;
      padding: 20px;
      color: white;
      background: linear-gradient(1deg, #041243, #132b7100);
      z-index: 999;
      text-align: center;
      display: block;
    }

    .content {
      position: absolute;
      bottom: 100px;
      width: 80vw;
      left: 50%;
      transform: translateX(-50%);
    }

    .display-3 {
      font-size: 29px;
      font-weight: 600;
      line-height: 1.2;
    }

    .lead {
      font-size: 1rem;
      font-weight: 300;
    }
  }

  .search-container {
    position: absolute;
    top: 17px;
    right: 210px;
    z-index: 1000;
  }

  #searchInput {
    width: 250px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
  }

  #searchDropdown {
    position: absolute;
    top: 42px;
    right: 0;
    width: 250px;
    max-height: 300px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 15%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  }

  .search-option {
    padding: 8px 12px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .search-option:last-child {
    border-bottom: none;
  }

  .search-option:hover,
  .search-option.active {
    background: #1e44ab;
  }

  #searchInput::placeholder {
    color: rgba(255, 255, 255, 0.7);
    /* Lighter white for the placeholder */
    opacity: 1;
    /* Override the default opacity for some browsers */
  }

  /* Add some responsiveness for the search box */
  @media (max-width: 768px) {
    .search-container {
      top: 80px;
      left: 10px;
      width: calc(100% - 20px);
    }

    #searchInput {
      width: 100%;
    }

    #searchDropdown {
      top: 50px;
      left: 0;
      right: auto;
      width: 100%;
      max-height: 40vh;
    }

    .AIIS {
      position: absolute;
      top: 20px;
      width: 45px;
      z-index: 999999;
      left: 20px;
    }

    .aiis-full-form {
      top: 24px;
      left: 74px;
      font-size: 12px;
      padding: 5px 8px;
    }
  }

  #lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050d23ed;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
  }

  /* Project Description Modal */
  #projectDescriptionOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffdb;
    /* background-color: rgba(0, 0, 0, 90%); */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
  }

  .project-description-modal {
    position: relative;
    /* width: min(700px, 92vw); */
    /* background: transparent; */
    /* color: #ffffff; */
    position: relative;
    /* width: min(700px, 92vw); */
    /* background: transparent; */
    /* color: #ffffff; */
    width: 65%;
    max-height: 80vh;
    overflow: auto;
    /* background: #d7e1ff; */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    /* border-radius: 16px; */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    padding: 20px 24px;
    color: #020202;

  }

  .project-description-modal.dark {
    /* background: #d7e1ff; */
    /* background: transparent; */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-description-modal h3 {
    margin: 0 0 10px;
    /* color: #091F5B; */
    color: #000;
    text-align: center;
    font-size: 42px;
    padding: 12px;
  }

  .project-description-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .project-description-voice-btn {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    background: #091F5B;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(9, 31, 91, 0.2);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .project-description-voice-btn:active {
    transform: scale(0.96);
  }

  .project-description-voice-btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
  }

  .project-description-modal.dark .project-description-voice-btn {
    background: #091F5B;
    color: #ffffff;
  }

  .project-description-modal.dark h3 {
    color: #000;
    /* color: #091F5B; */
    padding: 12px;
  }

  .project-description-content p {
    margin: 0 0 8px;
    font-size: 22px;
    color: #000000;
    /* color: #ffffffd5; */
    font-weight: 200;
    text-align: center;
  }

  .project-description-modal.dark .project-description-content p,
  .project-description-modal.dark .project-description-content .line {
    color: #000000;
  }

  .close-description {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 26px;
    /* color: #091F5B; */
    color: #000000;
    cursor: pointer;
  }

  .project-description-modal.dark .close-description {
    color: #000000;
  }

  /* Fade-in animation for project summary/description content */
  @keyframes projectFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .project-description-content.fade-in {
    opacity: 0;
    animation: projectFadeIn 400ms ease-out forwards;
  }

  /* Line-by-line sentence reveal */
  @keyframes projectLineFade {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .project-description-content .line {
    opacity: 0;
    animation: projectLineFade 450ms ease-out forwards;
    text-align: center;
    font-size: 22px;
    font-weight: 200;
    margin: 0 0 8px;
  }

  /* Typewriter caret for active line */
  @keyframes caretBlink {
    50% {
      opacity: 0;
    }
  }

  .project-description-content .line.typing::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 3px;
    background: currentColor;
    animation: caretBlink 1s step-end infinite;
    vertical-align: -0.15em;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .project-description-modal {
      width: 92vw;
      max-height: 84vh;
      padding: 16px 16px;
    }

    .project-description-content p,
    .project-description-content .line {
      font-size: 18px;
    }
  }

  #lightboxImage {
    max-width: 90%;
    max-height: 80vh;
    border: 4px solid white;
    border-radius: 10px;
  }

  .close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
  }

  .nav-arrow {
    font-size: 48px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    user-select: none;
  }

  .left-arrow {
    left: 20px;
  }

  .right-arrow {
    right: 20px;
  }

  /* Bottom Filter Bar */
  #bottomFilterBar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    /* background: rgba(255, 255, 255, 50%); */
    /* border: 1px solid rgba(255,255,255,0.2); */
    background: none;
    border-radius: 12px;
    padding: 10px 12px;
    /* box-shadow: 0 6px 22px rgba(0,0,0,0.35); */
    /*backdrop-filter: blur(10px);*/
    /*-webkit-backdrop-filter: blur(10px);*/
  }

  .filter-btn {
    /* background: #d7e1ff; */
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 65%);
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    background: rgb(255 255 255 / 20%);
    backdrop-filter: blur(14px);

  }

  .filter-btn:hover {
    background: #1e44ab;
    color: #fff;
  }

  .filter-btn.active {
    background: #1e44ab;
    border-color: #1e44ab;
    color: #fff;
  }

  @media (max-width: 768px) {
    #bottomFilterBar {
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
      gap: 6px;
      padding: 6px;
    }

    .filter-btn {
      padding: 6px 10px;
      font-size: 12px;
    }
  }

  /* Desktop Exploration Overlay Panel */
  #desktopExplorationOverlay,
  #vrExplorationOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .desktop-exploration-panel {
    /* background: #d7e1ff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3); */
    padding: 30px;
    max-width: 70%;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease-out;
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .desktop-exploration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(255 255 255 / 18%);
  }

  .desktop-exploration-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
  }

  .close-desktop-exploration {
    background: rgba(9, 31, 91, 0.1);
    border: 1px solid rgba(9, 31, 91, 0.3);
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-desktop-exploration:hover {
    background: #091F5B;
    color: white;
    transform: scale(1.1);
  }

  .desktop-exploration-content {
    display: grid;
    height: auto;
    max-height: 100vh;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 10px 0 10px 0;
    overflow-y: auto;
  }

  /* Tablet and Small Laptop Responsive Grid */
  @media (max-width: 1024px) {
    .desktop-exploration-panel {
      max-width: 90%;
      padding: 25px;
    }

    .desktop-exploration-content {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
  }

  .menu-card {
    /* background: rgb(231, 231, 231); */
    background: #e5ebff;
    border: 1px solid rgba(9, 31, 91, 0.2);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* height: 480px; */
    height: 380px;
    display: flex;
    flex-direction: column;
  }

  .menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(9, 31, 91, 0.2);
    border-color: #091F5B;
  }

  .menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
  }

  .menu-card:hover::before {
    left: 100%;
  }

  .menu-card-thumbnail {
    width: 100%;
    height: 175px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
  }

  .menu-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .menu-card:hover .menu-card-thumbnail img {
    transform: scale(1.05);
  }

  .menu-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
  }

  .menu-card-content h4 {
    margin: 0 0 8px;
    color: #091F5B;
    font-size: 22px;
    font-weight: 600;
    /* text-align: center; */
    /* justify-content: center; */
  }

  .menu-card-content p.menu-card-desc {
    margin: 0 0 10px;
    color: #454545;
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
  }

  .menu-card-content p.menu-card-desc.expanded {
    display: block;
    overflow-y: auto;
    padding-right: 5px;
  }

  .show-more-btn {
    background: none;
    border: none;
    color: #0069ff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    text-align: left;
    display: inline-block;
    align-self: flex-start;
  }

  .show-more-btn:hover {
    text-decoration: underline;
  }

  .menu-card-btn {
    background: #091F5B;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
  }



  .menu-card-btn:hover {
    background: #1e44ab;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(9, 31, 91, 0.3);
  }

  .menu-card.locked {
    position: relative;
    opacity: 0.7;
  }

  .menu-card.locked .menu-card-btn {
    background: #5f6f9b;
    cursor: not-allowed;
    pointer-events: none;
  }

  .menu-card.locked .menu-card-btn:hover {
    background: #5f6f9b;
    transform: none;
    box-shadow: none;
  }

  .menu-card.locked .locked-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(9, 31, 91, 0.1);
    color: #091F5B;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .menu-card.locked .locked-badge .material-icons {
    font-size: 14px;
  }

  /* Mobile responsiveness for desktop exploration panel */
  @media (max-width: 768px) {
    .desktop-exploration-panel {
      width: 95%;
      max-width: 95%;
      padding: 20px;
      max-height: 85vh;
    }

    .desktop-exploration-header h3 {
      font-size: 24px;
    }

    .desktop-exploration-content {
      grid-template-columns: 1fr;
      gap: 15px;
      max-height: 65vh;
    }

    .menu-card {
      padding: 15px;
    }

    .menu-card-thumbnail {
      height: 180px;
      /* Better image visibility on mobile */
    }

    .menu-card-content h4 {
      font-size: 18px;
    }

    .menu-card-content p {
      font-size: 14px;
    }
  }