.threed_story .headline,
.threed_story .description,
.threed_story .bottom_side > .button_base > div,
.recent_destination .title_link,
.recent_destination .flex_info {
  visibility: hidden !important;
}

.kheto-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 40px 0;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 40px;
}
.kheto-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
  gap: 100px;
  will-change: transform;
}
.kheto-marquee-slide img {
  height: 750px;
  max-height: 85vh;
  width: auto;
  border-radius: 36px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  object-fit: contain;
  /* Add hardware acceleration for smoother rendering */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
@keyframes scroll-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 50px), 0, 0); }
}

.face-cards-section {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-top: 100px;
  margin-bottom: 100px;
}

.face-cards-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.face-cards-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: face-cards-scroll-left 40s linear infinite;
  will-change: transform;
}

.face-cards-track.reverse {
  animation: face-cards-scroll-right 40s linear infinite;
}

.face-card {
  width: 200px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transform: translateZ(0);
}

.face-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.face-card .city-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 15px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  font-family: inherit;
  letter-spacing: 1px;
}

@keyframes face-cards-scroll-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 10px), 0, 0); }
}

@keyframes face-cards-scroll-right {
  0% { transform: translate3d(calc(-50% - 10px), 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.kheto-bento-section {
  width: 100vw;
  max-width: 1200px;
  margin: 100px auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.kheto-bento-header {
  text-align: center;
  margin-bottom: 60px;
}

.kheto-bento-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -1px;
}

.kheto-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.bento-box {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.bento-box:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-wide {
  grid-column: span 3;
  grid-row: span 1;
}

@media screen and (max-width: 900px) {
  .kheto-bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; grid-row: span 1; }
  .bento-medium { grid-column: span 1; grid-row: span 1; }
  .bento-wide { grid-column: span 1; grid-row: span 1; }
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-content h3 {
  font-size: 28px;
  color: #111;
  margin-bottom: 12px;
  font-weight: 700;
}

.bento-large .bento-content h3 {
  font-size: 40px;
}

.bento-content p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin: 0;
}

.bento-glow {
  position: relative;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.bento-box:hover .bento-glow {
  opacity: 1;
}

/* Bento Grid Mockups */
.bento-mockup {
  position: relative;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.bento-box:hover .bento-mockup {
  transform: translate(-50%, -10px) scale(1.05);
}

.bento-mockup-large {
  top: 5%;
  height: 70%;
  max-width: 80%;
}

.bento-box:hover .bento-mockup-large {
  transform: translate(-50%, -15px) scale(1.05);
}

.bento-mockup-medium {
  top: -5%;
  height: 75%;
}

.bento-mockup-wide {
  top: 50%;
  transform: translateY(-50%);
  height: 140%;
  max-width: none;
}

.bento-mockup-wide-1 {
  left: 65%;
  z-index: 1;
}

.bento-mockup-wide-2 {
  left: 85%;
  z-index: 2;
  margin-top: 40px;
}

.bento-box:hover .bento-mockup-wide-1 {
  transform: translateY(-50%) scale(1.05) rotate(-5deg);
}

.bento-box:hover .bento-mockup-wide-2 {
  transform: translateY(-50%) scale(1.05) rotate(5deg);
}

.wide-content {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .wide-content {
    width: 100%;
  }
  .bento-mockup-wide {
    display: none;
  }
}



/* Interactive Live Map Preview */
.kheto-live-map-preview {
  width: 100vw;
  max-width: 1200px;
  margin: 100px auto 100px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.map-preview-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-preview-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.map-preview-header p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}

.map-container-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #111;
}

#kheto-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-overlay-ui {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  gap: 30px;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ui-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ui-stat .val {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.ui-stat .lbl {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Glowing Map Marker CSS */
.map-glow-marker {
  width: 20px;
  height: 20px;
  background: #ff3366;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 15px #ff3366, 0 0 30px #ff3366;
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #ff3366, 0 0 20px #ff3366, 0 0 0 0 rgba(255, 51, 102, 0.4); }
  70% { box-shadow: 0 0 10px #ff3366, 0 0 20px #ff3366, 0 0 0 15px rgba(255, 51, 102, 0); }
  100% { box-shadow: 0 0 10px #ff3366, 0 0 20px #ff3366, 0 0 0 0 rgba(255, 51, 102, 0); }
}

@media screen and (max-width: 900px) {
  .map-container-wrapper { height: 400px; }
  .map-overlay-ui { bottom: 20px; padding: 10px 20px; gap: 15px; }
  .ui-stat .val { font-size: 18px; }
}

/* Responsive Logo */
#main_logo_container {
  top: 40px;
  left: 40px;
}
#main_logo {
  height: 65px;
}
#main_logo_container .logo-text {
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  #main_logo_container {
    top: 20px;
    left: 20px;
  }
  #main_logo {
    height: 40px;
  }
  #main_logo_container .logo-text {
    font-size: 14px;
  }
}
