@font-face{
  font-family: "Cornella";
  src: url("/MILKYWAY/public/fonts/Cornella-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "SuperWonder";
  src: url("/MILKYWAY/public/fonts/SuperWonder.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --font-body: "SuperWonder", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-logo: "Cornella", serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

html { scrollbar-gutter: stable; }
html { overflow-y: scroll; }

*, *::before, *::after {
  box-sizing: border-box;
}

body{
  margin: 0;
  background-color: #FFE6E6;
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: calc(var(--footer-h, 86px) + env(safe-area-inset-bottom));
}

.header {
  width: 100%;
}

.topbar {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  background: #FFAAAC;
  padding: 5px 10px;
}

.topbar-spacer {
  width: 52px;
  height: 52px;
}

.hamburger {
  width: 52px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; 
  cursor: pointer;
  padding: 0;
}

.hamburger__line {
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;            
  min-width: 0;       
}

.logo-img{
  width: 40px;          
  height: 40px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-text{
  font-family: var(--font-logo);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.subbar {
  background: #ffffff;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.group-12 {
  font-size: 12px;
  font-weight: 500;
}

.school {
  font-size: 12px;
  font-weight: 500;
}

.footer-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  z-index: 1000;
}

.footer-container a.is-active .image-title{
  color: #ff6f7a;
  font-weight: 800;
}

.footer-container a.is-active img{
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 12px rgba(255, 111, 122, 0.35));
}

.footer-container a.is-active{
  position: relative;
}

.footer-container a.is-active::after{
  content: "";
  position: absolute;
  bottom: 4px;
  left: 18%;
  right: 18%;
  height: 3px;
  border-radius: 999px;
  background: #ff6f7a;
}


.footer-container a {
  text-decoration: none;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-container img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.image-title {
  margin: 0;
  font-size: 10px;
  color: #757575;
}

.page {
  position: relative;
  padding-left: 16px !important;
  padding-right: 16px !important;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: 0 !important;
}

@media (min-width: 768px){
  .page{
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}


@media (min-width: 768px) {
  .page {
    max-width: 720px;
  }
}

@media (min-width: 1200px) {
  .page {
    max-width: 900px;
  }
}

.page-title-wrap{
  text-align: center;
  padding: 10px 0 6px;
  margin: 0px;
}

.page-title{
  margin: 0;
  font-family: var(--font-body);
  font-size: 22px;
  color: #ff6f7a;
  font-weight: 400;
  font-style: italic;  
}

.page-subtitle{
  margin: 4px 0 0;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  line-height: 1.2;
}

.hero {
  margin-top: 12px;
}

.hero-card {
  position: relative;
  background: #FFAAAC; 
  padding: 4px;         
  border-radius: 24px;
}

.hero-img {
  width: 100%;
  height: 210px;         
  display: block;
  border-radius: 18px;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-quote {
  position: absolute;
  left: 22px;             
  bottom: 20px;
  max-width: 78%;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}


.feature-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-container {
  background-color: #fff;
  border-radius: 20px;
  padding: 14px; 
  box-shadow: 
  0 4px 10px rgba(0, 0, 0, 0.06),
  1px 3px rgba(0, 0, 0, 0.04);;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.card-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 14px;
  background: #FFAAAC;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card-text h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.card-text p {
  margin: 2px 0 0;
  font-size: 11px;
  color: #6b7280;
}

.daily-tip {
  margin-top: 20px;
  padding: 20px; 
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 1px 3px rgba(0, 0, 0, 0.04);
}

.daily-tip h2 {
  margin: 0 0 8px;
  font-size: 16px;
}

.daily-tip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}


.locator-page {
  padding-bottom: 110px; 
}

.locator-topbar {
  background: #FFAAAC;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

.back-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
}

.locator-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-text {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.locator-title {
  text-align: center;
  padding: 10px 16px 6px;
}

.locator-title h1 {
  margin: 6px 0 2px;
  font-size: 20px;
  color: #ff6f7a; 
  font-weight: 700;
  font-style: italic;
}

.locator-title p {
  margin: 0;
  font-size: 11px;
  color: #6b7280;
}

.locator-search {
  padding: 10px 16px 0;
  margin-bottom: 20px;
}

.search-pill {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.search-ic{
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;  
  opacity: 0.7;
}

.search-icon{
  width: 100%;
  height: 100%;
  display: block; 
  object-fit: contain;
}

.gps-btn {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
}

.target-location {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}


.search-pill input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 12px;
}

.map-card {
  padding: 10px 10px ;
  background: #FFAAAC;
  border-radius: 20px;
  overflow: hidden;  
}

#map {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;   
}

.mode-row {
  padding: 10px 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mode-btn {
  flex: 1;
  border: none;
  background: #ff9ea0;
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(255, 158, 160, 0.35);
}

.mode-btn.is-active {
  background: #ff6f7a;
}

.places-list {
  padding: 12px 16px 0;
  display: grid;
  gap: 12px;
}

.place-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  cursor: pointer;
}

.place-name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.place-meta {
  font-size: 11px;
  color: #6b7280;
  display: grid;
  gap: 6px;
}

.pac-container {
  border-radius: 14px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  overflow: hidden;
  z-index: 99999 !important; 
  font-family: Arial, Helvetica, sans-serif;
}

.pac-item {
  padding: 10px 12px !important;
  cursor: pointer;
}

.pac-item:hover {
  background: rgba(255, 170, 172, 0.12) !important;
}

.pac-item-query {
  font-size: 13px;
  font-weight: 700;
}

.pac-matched {
  font-weight: 800;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 2000;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(360px, 88vw);

  background: linear-gradient(
    to bottom,
    #FF9B9D 25%,
    #FFE6E6 100%
  );

  transform: translateX(-105%);
  transition: transform 220ms ease;
  z-index: 2100;
  box-shadow: 12px 0 30px rgba(0,0,0,0.15);
  overflow: hidden;
  border-radius: 20px;
}


.menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-top {
  background: transparent;
  padding: 22px 18px 18px;
}


.menu-brand {
  text-align: center;
}

.menu-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.9;
}

.menu-title{
  font-family: 'Caveat', cursive;
  font-size: 42px;
  font-weight: 700;
  color: #ff6f7a;
}

.menu-section {
  padding: 16px 18px;
  display: grid;
  gap: 12px;
}

.menu-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff9ea0;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 158, 160, 0.35);
}

.menu-nav.is-active {
  background: #ff6f7a;
}

.menu-nav-ic {
  font-size: 18px;
  line-height: 1;
}

.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .menu-drawer {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .menu-overlay,
  .menu-drawer {
    transition: none;
  }
}

.feedback-page {
  display: grid;
  gap: 16px;
}

.feedback-summary .rating-card {
  background: #f3f3f3;
  border-radius: 22px;
  padding: 26px 18px;
  text-align: center;
}

.rating-icon {
  font-size: 38px;
  margin-bottom: 6px;
}

.rating-label {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.rating-value {
  margin: 6px 0 0;
}

.rating-score {
  font-size: 24px;
  font-weight: 800;
  color: #ff6f7a;
}

.rating-max {
  font-size: 14px;
  color: #9ca3af;
}

.rating-count {
  margin-top: 4px;
  font-size: 11px;
  color: #9ca3af;
}

.feedback-stars {
  background: #f3f3f3;
  border-radius: 22px;
  padding: 24px 18px;
  text-align: center;
}

.feedback-stars h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.tap-text {
  margin: 6px 0 14px;
  font-size: 12px;
  color: #9ca3af;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 30px;
}

.star {
  cursor: pointer;
  color: #c4c4c4;
  transition: color 0.15s ease, transform 0.12s ease;
}

.star:hover {
  transform: scale(1.15);
}

.star.active {
  color: #ff6f7a;
}

.star:active {
  transform: scale(0.9);
}

.feedback-likes {
  background: #fff;
  border-radius: 22px;
  padding: 18px 16px;
}

.feedback-likes h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
}

.like-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.like-card {
  border: none;
  border-radius: 16px;
  padding: 26px 10px;
  background: #FFE6E6;
  font-weight: 700;
  cursor: pointer;
}

.like-card.is-selected {
  background: #ff9ea0;
  color: #fff;
}

.like-card {
  border: none;
  border-radius: 16px;
  padding: 26px 10px;
  background: #FFE6E6;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.like-card:hover {
  background: #ffd1d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.like-card.is-selected {
  background: #ff9ea0;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 158, 160, 0.45);
}

.feedback-submit {
  margin-top: 14px;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  background: #ff6f7a;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 111, 122, 0.25);
}

.feedback-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.feedback-thanks {
  display: none;
  margin-top: 12px;
  font-size: 12px;
  color: #ff6f7a;
  text-align: center;
}

.thanks-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.20);
  display: none;
  place-items: center;
  z-index: 5000;
  padding: 18px;
}

.thanks-overlay.is-open {
  display: grid;
}

.thanks-modal {
  width: min(420px, 92vw);
  background: #f3dede; 
  border-radius: 22px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.thanks-icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(255, 111, 122, 0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.thanks-heart {
  font-size: 34px;
  color: #ff6f7a;
  line-height: 1;
}

.thanks-title {
  margin: 6px 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}

.thanks-text {
  margin: 0;
  font-size: 13px;
  color: #374151;
  line-height: 1.45;
}

.thanks-close {
  margin-top: 16px;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  background: #ff6f7a;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 111, 122, 0.25);
}

.watch-page {
  display: grid;
  gap: 12px;
  align-content: start;
}

.watch-head {
  text-align: center;
  padding-top: 4px;
}

.watch-head h1 {
  margin: 0;
  font-size: 22px;
  color: #ff6f7a;
  font-weight: 800;
  font-style: italic;
}

.watch-head p {
  margin: 4px 0 0;
  font-size: 11px;
  color: #9ca3af;
}

.watch-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 12px 12px;
  align-items: center;
}

.watch-chips::-webkit-scrollbar {
  display: none;
}

.watch-chips .chip {
  flex: 0 0 auto;
  padding: 6px 12px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.watch-chips .chip.is-active {
  background: #ff6f7a;
  color: #fff;
}

@media (min-width: 768px) {
  .watch-chips {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.watch-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.watch-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
  align-self: start;
}

.watch-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 92px;
  background: #eee;
}

.watch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(88%);
}

.watch-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #ff6f7a;
  z-index: 2
}

.watch-dur {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
}

.watch-meta {
  display: grid;
  align-content: center;
  gap: 6px;
}

.watch-title {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.watch-author {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
  font-weight: 600;
}

.watch-desc{
  margin: 0;
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.watch-view-page{
  display: grid;
  gap: 10px;
}

.watch-top{
  display: flex;
  align-items: center;
}

.watch-view-page{
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.watch-player{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}

.watch-player video{
  width: 100%;
  height: auto;
  max-height: 55vh;
  display: block;
  object-fit: contain;
}

.watch-view-title{
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  color: #111827;
}

.watch-view-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.watch-author-row{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.watch-view-author{
  color: #ff6f7a;
  font-weight: 900;
  font-size: 13px;
}

.watch-desc-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.watch-desc-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.watch-desc-label{
  font-size: 12px;
  font-weight: 900;
  color: rgba(17,24,39,0.7);
}

.watch-desc-toggle{
  border: none;
  background: transparent;
  color: #ff6f7a;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}

.watch-desc-toggle:active{
  transform: scale(0.98);
}

/* Description text */
.watch-view-desc{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.watch-desc-card.is-open .watch-view-desc{
  -webkit-line-clamp: unset;
  overflow: visible;
}

.watch-back{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #ff6f7a;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.watch-back:active{
  transform: scale(0.98);
}

.articles-page{
  padding-top: 10px;
}

.articles-head{
  text-align: center;
  padding: 12px 0 6px;
}

.articles-head h1{
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  color: #ff6f7a;
  font-family: 'Pacifico', 'Brush Script MT', cursive;
}

.articles-head p{
  margin: 2px 0 0;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.ribbon-pink{ background: #ff7fd6; }
.ribbon-red{ background: #ff4b4b; }
.ribbon-purple{ background: #b58bff; }

.article-cats{
  margin: 0;
  padding: 0;
  display: block;
}

.article-cat{
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.article-cat-img{
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  filter: brightness(90%);
}

.article-cat-ribbon{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.ribbon-pink{ background: #ff7fd6; }
.ribbon-red{ background: #ff4b4b; }
.ribbon-purple{ background: #b58bff; }

.articles-cat-hero{
  position: relative;
  overflow: hidden;
  margin: 0 -16px 14px;
}

.articles-cat-hero-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.articles-cat-back{
  left: 100px;
  top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: rgba(0,0,0,0.35);
  padding: 7px 10px;
  border-radius: 999px;
}

.articles-grid-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 14px 10px 10px;
}

.article-card{
  display: block;
  text-decoration: none;
  color: inherit;
  height: 230px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  overflow: hidden;
}

.article-card-img{
  position: relative;
  width: 100%;
  height: 140px;
  background: #fff;
  border: 2px solid rgba(255,111,122,0.35);
  border-radius: 18px;
  overflow: hidden;
}

.article-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-img-fallback{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #111827;
  background: #fff;
}

.article-card-desc{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  padding: 10px;
  background: rgba(255,127,214,0.92);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  border-radius: 0 0 16px 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.article-card-meta{
  padding: 10px 10px 12px;
  text-align: center;
  height: 90px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-card-title{
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-author{
  font-size: 9px;
  font-weight: 800;
  color: rgba(17,24,39,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articles-empty{
  grid-column: 1 / -1;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 420px){
  .articles-grid-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

.theme-intro{
  background: linear-gradient(135deg, #ff8fcf, #ff6fae);
}

.theme-problems{
  background: linear-gradient(135deg, #ff6b6b, #e63946);
}

.theme-nutrition{
  background: linear-gradient(135deg, #6ddf9c, #38b000);
}

.theme-tips{
  background: linear-gradient(135deg, #c19cff, #8b5cf6);
}

.theme-latch{
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

.articles-cat-ribbon{
  color: #fff;
}

.articles-cat-page .article-card-desc{
  background: rgba(0,0,0,0.65);
}

.articles-cat-page.theme-intro .article-card-desc{ background: rgba(255,111,174,0.92); }
.articles-cat-page.theme-problems .article-card-desc{ background: rgba(230,57,70,0.92); }
.articles-cat-page.theme-nutrition .article-card-desc{ background: rgba(56,176,0,0.92); }
.articles-cat-page.theme-tips .article-card-desc{ background: rgba(139,92,246,0.92); }
.articles-cat-page.theme-latch .article-card-desc{ background: rgba(251,133,0,0.92); }

.articles-cat-page.theme-intro .article-card-img{ border-color: rgba(255,111,174,0.55); }
.articles-cat-page.theme-problems .article-card-img{ border-color: rgba(230,57,70,0.55); }
.articles-cat-page.theme-nutrition .article-card-img{ border-color: rgba(56,176,0,0.55); }
.articles-cat-page.theme-tips .article-card-img{ border-color: rgba(139,92,246,0.55); }
.articles-cat-page.theme-latch .article-card-img{ border-color: rgba(251,133,0,0.55); }

.about-page{
  padding: 0;
  margin: 0;
  background: #ffe9ee;
  min-height: 100vh;
  padding-bottom: 92px;
}

.about-hero{
  position: relative;
  width: 100%;
  background: linear-gradient(
    180deg,
    #ff97a7 0%,
    #ffb4c2 40%,
    #ffd2dc 70%,
    #ffe9ee 100%
  );

  padding: 18px 14px 150px;
  overflow: hidden;
}

.about-back{
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5;

  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.about-hero-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 28px;
}

.about-logo{
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  opacity: 0.98;
  margin: 0 0 6px 0;
}

.about-title{
  margin: 0;
  font-family: 'Pacifico', 'Brush Script MT', cursive;
  font-size: 44px;
  font-weight: 500;
  color: #ff4f6d;
  line-height: 1.05;
}

.about-subtitle{
  margin: 6px 0 0;
  font-family: 'Pacifico';
  font-size: 28px;
  font-weight: 500;
  color: rgba(255,79,109,0.92);
  line-height: 1.05;
}

.about-team{
  margin-top: -120px;
  padding: 0 16px;
}

.team-grid-top{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  justify-items: center;
  align-items: start;
  margin-bottom: 12px;
}

.team-grid-bottom{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  justify-items: center;
  align-items: start;
}

.team-card{
  width: 100%;
  max-width: 160px;
  text-align: center;
}

.team-avatar{
  width: 96px;
  height: 96px;
  border-radius: 999px;
  margin: 0 auto 8px;
  padding: 6px;

  background: radial-gradient(
    circle at 35% 25%,
    #ffe1e7 0%,
    #ff86a1 55%,
    #ff5a7a 100%
  );

  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.team-avatar img{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 4px solid rgba(255,255,255,0.9);
}

.team-avatar-feature img{
  border-width: 5px;
}

.team-name{
  font-size: 11px;
  font-weight: 900;
  color: #ff4f6d;
  line-height: 1.15;
  word-break: keep-all;
}

.team-role{
  margin-top: 2px;
  font-size: 9px;
  font-weight: 800;
  color: rgba(17,24,39,0.60);
}

.about-box{
  margin: 16px 16px 18px;
  background: rgba(255, 120, 145, 0.20);
  border: 1px solid rgba(255, 79, 109, 0.24);
  border-radius: 16px;
  padding: 12px 12px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-box p{
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 800;
  color: rgba(255,79,109,0.92);
}

/* Small phones */
@media (max-width: 380px){
  .about-title { 
    font-size: 40px; 
  }
  .about-subtitle { 
    font-size: 50px; 
  }

  .about-team { 
    margin-top: -112px; 
  }

  .team-grid-top{ 
    gap: 18px; 
  }

  .team-grid-bottom{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 16px;

  max-width: 520px;
  margin: 0 auto;
}

  .team-card{ max-width: 148px; }
  .team-avatar{ width: 88px; height: 88px; }
  .team-avatar-feature{ width: 104px; height: 104px; }
}

.page.about-page{
  padding-top: 0 !important;
}
.about-hero{
  overflow: visible !important;
}

.about-team{
  position: relative;
  z-index: 50;
}

.about-hero{
  position: relative;
  z-index: 1;
}

.page.about-page{
  padding-bottom: 120px !important; 
}

.about-box{
  margin-bottom: 24px !important;
}

.bottom-nav,
.navbar,
.tabbar,
.mobile-nav{
  z-index: 9999;
}

:root{
  --footer-h: 86px; 
}

.page{
  padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom)) !important;
}

.page.about-page{
  padding-bottom: calc(var(--footer-h) + 24px + env(safe-area-inset-bottom)) !important;
}

.footer-container{
  height: var(--footer-h);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.about-box{
  margin-bottom: 18px !important;
}

:root{
  --footer-h: 86px;
}

.footer-container{
  height: var(--footer-h);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.lang-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: none;
  place-items: end center;
  z-index: 6000;
  padding: 16px;
}

.lang-modal.is-open{ display: grid; }

.lang-sheet{
  width: min(420px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
  overflow: hidden;
}

.lang-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lang-title{
  font-weight: 900;
  color: #111827;
}

.lang-close{
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
}

.lang-options{
  display: grid;
  gap: 10px;
  padding: 14px;
}

.lang-option{
  width: 100%;
  border: 2px solid rgba(255,111,122,0.25);
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
}

.lang-option.is-active{
  background: #ff6f7a;
  color: #fff;
  border-color: #ff6f7a;
}

.menu-drawer{
  height: 100dvh;
  overflow: hidden;
}

.menu-inner{
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
}

@supports (padding: max(0px)) {
  .menu-inner{
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

button.menu-btn{
  appearance: none;
  -webkit-appearance: none;
  border: none !important;
  outline: none !important;
  background: #fff;
  font: inherit;
}

button.menu-btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(255,111,122,0.35), 0 6px 14px rgba(0,0,0,0.06);
}

@media (min-width: 900px){
  .page{
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

.menu-section .menu-btn,
.menu-section a.menu-btn,
.menu-section button.menu-btn{
  font-family: inherit !important; 
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.menu-section button.menu-btn{
  appearance: none;
  -webkit-appearance: none;
  border: none !important;
  outline: none !important;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-section a.menu-btn{
  display: block;
  width: 100%;
  text-align: center;
}

.articles-cat-page .articles-grid-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px 0 10px;
}

@media (min-width: 900px){
  .articles-cat-page .articles-grid-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.article-link-card{
  display: block;
  text-decoration: none;
  color: inherit;

  background: #fff;
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  min-width: 0;
}

.article-snippet{
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 12px 0;
}

.article-meta{
  display: grid;
  gap: 4px;
}

.article-title{
  font-size: 13px;
  font-weight: 900;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-source{
  font-size: 11px;
  color: rgba(17,24,39,0.55);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-card-feature{
  transform: none !important;
}

.team-avatar-feature{
  width: 96px !important;
  height: 96px !important;
  padding: 6px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10) !important;
}

.team-avatar-feature img{
  border-width: 4px !important;
}

.didk-page{
  background: #fdecef;
  min-height: 100vh;
}

.didk-hero{
  background: #ff9aa7;
  padding: 14px 16px 18px;
  position: relative;
}

.didk-back{
  position: absolute;
  left: 12px;
  top: 12px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
}

.didk-hero-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.didk-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.didk-title{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #ff3b5f;
  font-family: 'Caveat', cursive;
}

.didk-subtitle{
  margin: 0;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
}

.didk-cards{
  padding: 14px;
  display: grid;
  gap: 14px;
}

.didk-card{
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.didk-card-btn{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.didk-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.didk-bar{
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Caveat', cursive;
}

.didk-bar--trivia{ background: #a100ff; }
.didk-bar--facts{ background: #ff0050; }

.didk-chevron{
  position: absolute;
  right: 14px;
  font-size: 22px;
  transition: transform 180ms ease;
}

.didk-card.is-open .didk-chevron{
  transform: rotate(180deg);
}

.didk-panel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height 220ms ease;
  background: #fff;
}

.didk-panel-inner{
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.didk-item{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  background: #f6f7fb;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.acc-card{
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.acc-btn{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.acc-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.acc-bar{
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Caveat', cursive;
}

.acc-chevron{
  position: absolute;
  right: 14px;
  font-size: 22px;
  transition: transform 180ms ease;
}

.acc-card.is-open .acc-chevron{
  transform: rotate(180deg);
}

.acc-panel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height 220ms ease;
  background: #fff;
}

.acc-inner{
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.acc-item{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  background: #f6f7fb;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.didk-cat-btn{
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.article-cat-ribbon{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.didk-chev{
  position: absolute;
  right: 14px;
  transition: transform 180ms ease;
}
.didk-acc.is-open .didk-chev{
  transform: rotate(180deg);
}

.didk-panel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height 220ms ease;
  background: transparent;
}
.didk-panel-inner{
  padding: 10px 4px 0;
  display: grid;
  gap: 10px;
}
.didk-item{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.intro-page{
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffd1d8 0%, #ffe9ee 55%, #ffd1d8 100%);
}

.intro-wrap{
  display: grid;
  place-items: center;
  gap: 10px;
  animation: introFade 900ms ease both;
}

.intro-logo{
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: introPop 900ms cubic-bezier(.2,.9,.2,1) both;
}

.intro-title{
  font-family: 'Caveat', cursive;
  font-size: 42px;
  font-weight: 700;
  color: #ff4f6d;
  letter-spacing: 0.5px;
  animation: introUp 900ms ease 180ms both;
}

.intro-sub{
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  animation: introUp 900ms ease 260ms both;
}

@keyframes introPop{
  from { transform: scale(.75); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes introUp{
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes introFade{
  from { opacity: 0; }
  to   { opacity: 1; }
}

.place-meta{
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.meta-row{
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

.meta-ic{
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
  opacity: 0.9;
}

.page-loader{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  background: rgba(255, 230, 230, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.page-loader.is-active{
  opacity: 1;
  pointer-events: auto;
}

.page-loader__box{
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.page-loader__spinner{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid rgba(255, 111, 122, 0.25);
  border-top-color: rgba(255, 111, 122, 1);
  animation: loaderSpin 0.8s linear infinite;
}

.page-loader__text{
  font-size: 12px;
  font-weight: 800;
  color: rgba(17,24,39,0.7);
  letter-spacing: 0.2px;
}

@keyframes loaderSpin{
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
  .page-loader{ transition: none; }
  .page-loader__spinner{ animation: none; }
}

.page-title{
  margin: 0;
  line-height: 1.1;
}

.watch-head,
.articles-head,
.locator-title{
  margin: 0 !important;
  padding: 0 !important;
}

.watch-head h1,
.articles-head h1,
.locator-title h1{
  margin: 0 !important;
}

.watch-head p,
.articles-head p,
.locator-title p{
  margin: 4px 0 0 !important;
}

.article-view-page{
  padding-top: 10px;
}

.article-view-head{
  position: relative;
  padding-top: 16px; 
}

.article-back{
  position: absolute;
  left: 0;
  top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #ff6f7a;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;

  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.article-back:active{
  transform: scale(0.98);
}

.article-overview{
  margin: 10px 0 12px;
  background: rgba(255,255,255,0.75);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.article-content{
  background: #fff;
  border-radius: 18px;
  padding: 14px 14px;
  font-size: 12px;
  line-height: 1.65;
  color: #111827;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}

.didk-cat-page{
  padding-top: 12px;
}

.didk-cat-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  color: #ff6f7a;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.didk-cat-title{
  margin: 14px 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #111827;
}

.didk-facts{
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}

.didk-fact{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.65;
  color: #111827;
}

.didk-fact:last-child{
  margin-bottom: 0;
}

.didk-fact em,
.didk-fact i{
  font-style: italic;
  font-weight: 900;
}

.page-head{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 0 6px;
}

.page-back{
  width: 50px;
  height: 30px;       
  border-radius: 400px;       
  display: flex;           
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  color: #ff6f7a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;           
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}



.page-head-spacer{
  width: 44px;
  height: 44px;
}
.page-title-wrap--left{
  text-align: left;
  padding: 0;
}

.page-title-wrap--center{
  text-align: center;
  padding: 0;
}

.page-title-wrap--left .page-title{
  margin: 0;
  line-height: 1.1;
}

.page-title-wrap--left .page-subtitle{
  margin: 2px 0 0;
}

.page-title-wrap--center .page-title{
  margin: 0;
  line-height: 1.1;
}

.page-title-wrap--center .page-subtitle{
  margin: 2px 0 0;
}

.didk-cat-hero{
  position: relative;
  padding: 20px 0 10px;
}

.articles-cat-back{
  position: absolute;
  top: 8px;
  left: 12px;
  display: inline-block;
  padding: 8px 14px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.didk-cat-hero-title{
  text-align: center;
}

.didk-cat-hero-title .page-title{
  margin: 0;
}

.didk-cat-hero-title .page-subtitle{
  margin: 2px 0 0;
}

@media (min-width: 1100px) {

  .footer-container {
    display: none !important;
  }

  .topbar,
  .subbar,
  .topbar-spacer {
    display: none !important;
  }


  .menu-overlay {
    display: none !important;
    pointer-events: none !important;
  }

  .menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    width: 290px !important;
    transform: none !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    z-index: 5000 !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
  }

  .menu-inner {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .menu-top {
    padding: 18px 18px 18px !important;
    background: linear-gradient(90deg, #ff7e86 0%, #ffb2a8 100%) !important;
  }

  .menu-brand {
    text-align: left !important;
  }

  .menu-logo {
    display: none !important; 
  }

  .menu-title {
    margin: 0 !important;
    font-family: 'Itim', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
  }

  .menu-subtitle {
    margin: 6px 0 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.95) !important;
  }

  .menu-section {
    padding: 14px 14px !important;
    display: grid !important;
    gap: 10px !important;
  }

  .menu-bottom {
    margin-top: 0 !important;
    padding: 10px 14px 14px !important;
    display: grid !important;
    gap: 10px !important;
    text-align: center;
    align-items: center;
    padding-bottom: 12px !important;
  }

  

  .menu-btn,
  .menu-nav,
  .menu-section a.menu-btn,
  .menu-section button.menu-btn,
  .menu-bottom a.menu-nav {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    background: #FF8F91 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    border: 1px solid transparent !important;
  }

  .menu-nav-ic {
    width: 18px !important;
    min-width: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.75 !important;
    font-size: 18px !important;
  }

  .menu-btn:hover,
  .menu-nav:hover {
    background: rgba(255, 111, 122, 0.08) !important;
  }

  .menu-nav.is-active,
  .menu-btn.is-active {
    background: linear-gradient(90deg, #ff6f7a 0%, #ffb7a6 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 111, 122, 0.25) !important;
  }

  .menu-nav.is-active .menu-nav-ic,
  .menu-btn.is-active .menu-nav-ic {
    opacity: 1 !important;
  }

  .menu-inner {
    position: relative !important;
  }

  .menu-inner .made-with-love,
  .menu-inner .menu-footer {
    margin-top: auto !important;
    padding: 14px 14px 18px !important;
    color: rgba(0,0,0,0.55) !important;
    font-size: 12px !important;
  }

  .page {
    max-width: none !important;
    width: calc(100% - 290px) !important;
    margin: 0 0 0 290px !important;
    padding: 28px 34px !important;
    padding-bottom: 28px !important;
  }

  .hero {
    margin-top: 0 !important;
  }

  .hero-card {
    border-radius: 26px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .hero-img {
    height: 420px !important;
    border-radius: 26px !important;
    filter: brightness(75%) !important;
  }

  .hero-quote {
    left: 26px !important;
    bottom: 22px !important;
    font-size: 13px !important;
    max-width: 62% !important;
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    margin-top: 18px !important;
  }

  .feature-container {
    border-radius: 18px !important;
    padding: 14px !important;
  }

  .card-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 14px !important;
  }

  .card-text h3 {
    font-size: 13px !important;
  }

  .card-text p {
    font-size: 11px !important;
  }

  .daily-tip {
    margin-top: 18px !important;
    border-radius: 18px !important;
    padding: 22px !important;
  }

  .watch-chips {
    justify-content: center !important;
  }

  .watch-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
    align-content: start !important;
  }

  .watch-card {
    grid-template-columns: 1fr !important;
    border-radius: 18px !important;
  }

  .watch-thumb {
    height: 150px !important;
  }

  .articles-cat-hero {
    margin: 0 0 14px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .articles-cat-hero-img {
    height: 300px !important;
  }

  .article-cat-img {
    height: 240px !important;
  }

  .locator-page #map {
    height: 420px !important;
  }

  .feedback-page {
    gap: 18px !important;
  }
}


.menu-nav-ic{
  width: 18px !important;
  min-width: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 10px !important;
}

.menu-nav.is-active,
.menu-btn.is-active{
  width: 100% !important;
  padding: 14px 16px !important;
}

@media (min-width: 1100px){
  .menu-section .menu-btn{
    box-shadow: none !important;
    background: transparent !important;
    padding: 12px 6px !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 1099px){

  .menu-section .menu-btn,
  .menu-bottom .menu-nav{
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    font-weight: 600;
  }

  .menu-bottom .menu-nav{
    background: #FF8F91;
    color: #fff;
  }

}

@media (min-width: 1100px){

  .menu-section .menu-btn,
  .menu-bottom .menu-nav{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;

    background: transparent;
    color: #7b4b4f;
    font-weight: 700;
  }

}

.menu-bottom a.menu-nav .menu-nav-ic{
  display: none !important;
}

@media (min-width: 1100px){

  .locator-shell{
    display: grid;
    grid-template-columns: 1fr 420px; 
    grid-template-rows: auto 1fr;
    gap: 18px 22px;
    align-items: start;
  }

.locator-top{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 420px; 
  gap: 18px;
  align-items: center;
}

@media (min-width: 1100px){

  .locator-results,
  .mode-row{
    width: 100% !important;
    justify-self: stretch !important;
    align-self: center !important;
  }

  .mode-row{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .mode-btn{
    width: 100% !important;
  }

  .places-list{
    padding: 0 !important;
    margin: 0 !important;
  }
}

  .locator-search,
  .mode-row,
  .map-card,
  .places-list{
    margin: 0 !important;
  }

  .locator-search{ padding: 0 !important; }
  .mode-row{ padding: 0 !important; }

  .search-pill{
    border-radius: 999px !important;
    padding: 12px 14px !important;
  }
  .search-pill input{
    font-size: 13px !important;
  }

  .mode-row{
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mode-btn{
    height: 44px !important;
    border-radius: 999px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .locator-map{ grid-column: 1; }
  .map-card{
    padding: 7px !important;
    border-radius: 22px !important;
  }
  #map{
    height: 420px !important;
    border-radius: 18px !important;
  }

  .locator-results{ grid-column: 2; }
  .places-list{
    padding: 0 !important;
    display: grid !important;
    gap: 14px !important;

    max-height: 420px;
    overflow: auto;
    padding-right: 6px !important;
  }

  .place-card{
    border-radius: 18px !important;
    padding: 14px !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06) !important;
  }
}

.locator-page .page-title-wrap{
  margin-bottom: 6px;
}

.locator-page .locator-search,
.locator-page .mode-row,
.locator-page .places-list{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.locator-page .search-pill{
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
}

.locator-page .search-pill input{
  font-size: 13px;
  min-width: 0;
}

.locator-page .mode-row{
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.locator-page .mode-btn{
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.locator-page .map-card{
  padding: 10px;       
  border-radius: 20px;
  margin-top: 12px;
}

.locator-page #map{
  height: 320px;         
  border-radius: 16px;
}

.locator-page .places-list{
  margin-top: 12px;
}

@media (max-width: 1099px){

  .menu-drawer{
    width: min(360px, 88vw) !important;
    height: 100vh !important;
    border-radius: 20px !important;
    overflow: hidden !important;

    background: linear-gradient(to bottom, #FF9B9D 25%, #FFE6E6 100%) !important;
    box-shadow: 12px 0 30px rgba(0,0,0,0.15) !important;
    border-right: none !important;
  }

  .menu-inner{
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .menu-top{
    padding: 22px 18px 18px !important;
    background: transparent !important;
  }

  .menu-brand{
    text-align: center !important;
  }

  .menu-title{
    text-align: center !important;
  }

  .menu-subtitle{
    text-align: center !important;
  }

  .menu-section{
    padding: 16px 18px !important;
    display: grid !important;
    gap: 12px !important;
  }

  .menu-section .menu-btn,
  .menu-section a.menu-btn,
  .menu-section button.menu-btn{
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #111827 !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06) !important;
    border: none !important;
    text-decoration: none;
  }

  .menu-bottom{
    margin-top: auto !important;
    padding: 10px 18px 18px !important;
    display: grid !important;
    gap: 10px !important;
  }

  .menu-bottom .menu-nav{
    justify-content: center !important;
    text-align: center !important;
    background: #FF8F91 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(255, 158, 160, 0.35) !important;
  }

  .menu-bottom .menu-nav .menu-nav-ic{
    display: inline-flex !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 1100px){

}

.page.intro-page{
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 0 !important;
}

.intro-page{
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 0 !important;
  max-width: none !important;

  display: grid !important;
  place-items: center !important;
}

body.is-intro{
  padding-bottom: 0 !important;
  overflow: hidden !important;
  background: #ffe9ee !important;
}

body.is-intro .menu-drawer,
body.is-intro .menu-overlay,
body.is-intro .topbar,
body.is-intro .subbar,
body.is-intro .footer-container{
  display: none !important;
}

body.is-intro .page.intro-page{
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 999999 !important;
}

.didk-cat-title{
  margin: 0;
  padding: 18px 12px;
  text-align: center;
  background: #ffe9ee;     
  border-radius: 0;         
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.6px;
  color: #ff6f7a;        
  line-height: 1.1;
}

.didk-cat-page{
  padding-top: 0 !important;
}

.didk-cat-hero{
  position: relative;
  margin: 0 -16px 16px;
  padding: 18px 16px 18px;
  background: #fde6ea;       
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.didk-cat-hero .articles-cat-back{
  position: absolute;
  top: 12px;
  left: 12px;
}

.didk-cat-hero-inner{
  display: grid;
  justify-items: center;
  gap: 6px;
  padding-top: 10px; 
}

.didk-cat-kicker{
  font-size: 22px;
  font-style: italic;
  color: rgba(255, 79, 109, 0.85);
  line-height: 1;
}

.didk-cat-title{
  margin: 0;
  font-family: 'Caveat', cursive;
  font-size: 44px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2px;
  color: #ff4f6d;
  line-height: 1;
}

.didk-facts{
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
  max-width: 860px;
  margin: 0 auto;
}

.didk-fact{
  margin: 0;
  padding: 14px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif; 
  font-size: 14px;
  line-height: 1.85;
  color: #111827;
}

.didk-fact + .didk-fact{
  border-top: 1px solid rgba(0,0,0,0.06);
}

.didk-fact em,
.didk-fact i,
.didk-fact strong,
.didk-fact b{
  font-style: italic;
  font-weight: 900;
  color: #ff4f6d;
}

.didk-facts a{
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
}

@media (max-width: 420px){
  .didk-cat-title{ font-size: 36px; }
  .didk-cat-kicker{ font-size: 20px; }
  .didk-facts{ padding: 16px; }
  .didk-fact{ font-size: 13px; line-height: 1.8; }
}

@media (min-width: 1100px){
  .didk-cat-hero{
    margin: 0 0 18px;
    border-radius: 14px;
  }
  .didk-facts{
    padding: 22px 24px;
  }
  .didk-fact{
    font-size: 15px;
  }
}

.didk-cat-page{
  padding-top: 16px;
}

.didk-cat-hero{
  margin: 0 -16px 14px;
  padding: 18px 16px 14px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  position: relative;
}

.didk-cat-hero .articles-cat-back{
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

.didk-cat-title{
  margin: 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 34px;
  font-weight: 700;
  color: #ff4f6d;
  font-style: italic;
  letter-spacing: 0.2px;
}

.didk-facts{
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
  max-width: 860px;
  margin: 0 auto;
}

.didk-fact{
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);

  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
}

.didk-fact:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.didk-fact strong,
.didk-fact b,
.didk-fact em:first-child,
.didk-fact i:first-child{
  color: #ff4f6d;
  font-weight: 900;
}

.didk-fact em,
.didk-fact i{
  font-style: italic;
  font-weight: 900;
}

.didk-fact a{
  color: #ff4f6d;
  font-weight: 800;
  text-decoration: underline;
  word-break: break-word;
}

@media (min-width: 1100px){
  .didk-cat-page{
    padding-top: 18px;
  }
  .didk-cat-hero{
    margin: 0 0 16px;
    padding: 22px 22px 16px;
    border-radius: 16px;
  }
  .didk-cat-title{
    font-size: 40px;
  }
  .didk-facts{
    padding: 22px 26px;
    border-radius: 20px;
  }
  .didk-fact{
    font-size: 15px;
    padding: 16px 0;
  }
}

.didk-heading{
  margin: 26px 0 14px;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  border-bottom: 2px solid rgba(255,79,109,0.25);
  padding-bottom: 6px;
}

.didk-fact{
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
}

.didk-fact:last-child{
  border-bottom: 0;
}

.didk-myth-line{
  margin: 18px 0 8px;
  font-size: 18px;    
  line-height: 1.35;
  font-weight: 800;
  color: #111827;
}

.didk-myth-num{
  color: #ff4f6d;
  font-style: italic;
  font-weight: 900;
}

.didk-myth-label{
  color: #ff4f6d;
  font-style: italic;
  font-weight: 900;
}

.didk-myth-body{
  font-weight: 700;
}

.didk-fact-line{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
}

.didk-fact-label{
  color: #ff4f6d;
  font-style: italic;
  font-weight: 900;
}

.didk-fact-body{
  font-weight: 500;
}


.didk-facts{
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}

.didk-paragraph{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.75;
  color: #111827;
}

.didk-paragraph:last-child{
  margin-bottom: 0;
}

.didk-block{
  padding: 14px 2px;
}

.didk-block + .didk-block{
  border-top: 1px solid rgba(17,24,39,0.08);
}

.didk-block-title{
  font-size: 20px;     
  line-height: 1.35;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.didk-num{
  color: #ff4f6d;
  font-weight: 900;
  font-style: italic;
}

.didk-title-text{
  font-weight: 600;
}

.didk-block-body{
  margin-top: 8px;        
  font-size: 15px;
  line-height: 1.75;
  color: #111827;
}

.didk-block-body--extra{
  margin-top: 8px;
}

.didk-tag{
  font-weight: 900;
  font-style: italic;
}

.didk-tag--myth{
  color: #ff4f6d;
}

.didk-tag--fact{
  color: #ff4f6d;
}

.didk-ref-title{
  margin: 50px 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}

.didk-facts a{
  color: #ff4f6d;
  font-weight: 800;
  text-decoration: underline;
  word-break: break-word;
}

.didk-facts{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
}

.didk-paragraph{
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
}
.didk-paragraph:last-child{ border-bottom: 0; }

.didk-trivia{
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.9;
  font-style: italic;
  color: #374151;
}
.didk-trivia:last-child{ border-bottom: 0; }

.didk-trivia-tag{
  color: #ff4f6d;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;    
  letter-spacing: 0.2px;
}
.didk-trivia-body{
  color: #374151;
}

.didk-block{
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.didk-block:last-child{ border-bottom: 0; }

.didk-block-title{
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 18px;         
  line-height: 1.35;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.didk-num{
  color: #ff4f6d;
  font-style: italic;
  font-weight: 900;
}

.didk-tag{
  font-weight: 900;
  font-style: italic;
}

.didk-tag--myth,
.didk-tag--fact{
  color: #ff4f6d;
}

.didk-block-body{
  margin-top: 10px;    
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}

.didk-fact-body{
  font-weight: 500;
}

.didk-ref-title{
  margin: 50px 0 6px;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}

.didk-facts a{
  color: #ff4f6d;
  font-weight: 800;
  text-decoration: underline;
  word-break: break-word;
}

@media (min-width: 768px) and (max-width: 1099px){
  .page{
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

button,
a.menu-btn,
a.menu-nav,
a.watch-back,
a.article-back,
a.didk-cat-back,
a.articles-cat-back,
.page-back,
.back-btn,
.mode-btn,
.gps-btn,
.lang-option,
.feedback-submit,
.thanks-close,
.like-card,
.watch-chips .chip,
.footer-container a,
.place-card,
.didk-item,
.acc-item,
.didk-card-btn,
.acc-btn {
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) {

  button:hover,
  a.menu-btn:hover,
  a.menu-nav:hover,
  a.watch-back:hover,
  a.article-back:hover,
  a.didk-cat-back:hover,
  a.articles-cat-back:hover,
  .page-back:hover,
  .back-btn:hover,
  .mode-btn:hover,
  .gps-btn:hover,
  .lang-option:hover,
  .feedback-submit:hover,
  .thanks-close:hover,
  .like-card:hover,
  .watch-chips .chip:hover,
  .footer-container a:hover,
  .place-card:hover,
  .didk-item:hover,
  .acc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
    filter: brightness(1.02) saturate(1.05);
  }

  a.watch-back:hover,
  a.article-back:hover,
  .page-back:hover,
  .back-btn:hover,
  a.menu-btn:hover,
  .watch-chips .chip:hover,
  .lang-option:hover {
    border-color: rgba(255,111,122,0.35);
    box-shadow:
      0 12px 26px rgba(0,0,0,0.10),
      0 0 0 3px rgba(255,111,122,0.12);
  }

  .mode-btn:hover,
  .feedback-submit:hover,
  .thanks-close:hover {
    filter: brightness(1.03) saturate(1.1);
    box-shadow:
      0 14px 28px rgba(255,111,122,0.22),
      0 0 0 3px rgba(255,111,122,0.16);
  }

  .watch-chips .chip.is-active:hover,
  .menu-nav.is-active:hover,
  .lang-option.is-active:hover {
    transform: translateY(-1px);
    filter: brightness(1.02) saturate(1.05);
    box-shadow:
      0 12px 24px rgba(255,111,122,0.22),
      0 0 0 3px rgba(255,111,122,0.14);
  }

  .footer-container a:hover {
    transform: translateY(-1px);
    box-shadow: none;
    filter: none;
  }
  .footer-container a:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
  }
  .footer-container a:hover .image-title {
    color: #ff6f7a;
    font-weight: 800;
  }

  .place-card:hover,
  .didk-item:hover,
  .acc-item:hover {
    background: rgba(255,255,255,0.92);
  }
}

button:active,
a.menu-btn:active,
a.menu-nav:active,
a.watch-back:active,
a.article-back:active,
a.didk-cat-back:active,
a.articles-cat-back:active,
.page-back:active,
.back-btn:active,
.mode-btn:active,
.gps-btn:active,
.lang-option:active,
.feedback-submit:active,
.thanks-close:active,
.like-card:active,
.watch-chips .chip:active,
.footer-container a:active,
.place-card:active,
.didk-item:active,
.acc-item:active {
  transform: scale(0.98);
}

button:focus-visible,
a.menu-btn:focus-visible,
a.menu-nav:focus-visible,
a.watch-back:focus-visible,
a.article-back:focus-visible,
a.didk-cat-back:focus-visible,
a.articles-cat-back:focus-visible,
.page-back:focus-visible,
.back-btn:focus-visible,
.mode-btn:focus-visible,
.gps-btn:focus-visible,
.lang-option:focus-visible,
.feedback-submit:focus-visible,
.thanks-close:focus-visible,
.like-card:focus-visible,
.watch-chips .chip:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,111,122,0.28),
    0 10px 22px rgba(0,0,0,0.08);
}

button:disabled,
.feedback-submit:disabled {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (min-width: 1100px){

  .page.about-page{
    padding: 22px 26px !important;
    min-height: calc(100vh) !important;
    height: calc(100vh) !important;
    overflow: hidden !important;
    background: #ffe9ee !important;
    display: grid !important;
    grid-template-rows: auto 1fr auto;
    gap: 18px !important;
  }

  .about-hero{
    padding: 12px 0 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .about-hero-inner{
    padding-top: 0 !important;
    gap: 10px;
  }

  .about-logo{
    width: 200px !important;
    height: auto !important;
    max-width: 260px;
    margin: 0 auto !important;
  }

  .about-subtitle{
    margin: 0 !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    color: #ff4f6d !important;
    line-height: 1.1 !important;
  }

  .about-team{
    margin-top: 0 !important;
    padding: 0 !important;

    display: grid;
    align-content: center;
    justify-items: center;
  }

  .team-grid-top{
    gap: 28px !important;
    margin-bottom: 18px !important;
  }

  .team-grid-bottom{
    gap: 28px !important;
  }

  .team-avatar{
    width: 120px !important;
    height: 120px !important;
    padding: 7px !important;
  }

  .team-avatar-feature{
    width: 128px !important;
    height: 128px !important;
  }

  .team-name{
    margin-top: 8px;
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #ff2f58 !important; 
    line-height: 1.2 !important;
  }

  .team-role{
    font-size: 12px !important;
    font-weight: 800 !important;
    color: rgba(17,24,39,0.72) !important;
  }

  .about-box{
    margin: 0 auto !important;
    width: min(900px, 100%) !important;
    background: rgba(255, 255, 255, 0.70) !important;
    border: 1px solid rgba(255, 79, 109, 0.18) !important;
    border-radius: 18px !important;
    padding: 16px 18px !important;
    max-height: 170px;
    overflow: hidden;
  }

  .about-box p{
    margin: 0 !important;
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: rgba(17,24,39,0.85) !important;
    font-weight: 600 !important;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (min-width: 1100px){

  .about-box{
    max-width: 800px !important;  
    width: 100% !important;

    padding: 28px 34px !important; 

    border-radius: 22px !important;

    max-height: none !important; 
    overflow: visible !important; 
  }

  .about-box p{
    font-size: 17px !important;  
    line-height: 1.9 !important;   
    font-weight: 500 !important;
  }

}
@media (min-width: 1100px){

  .page.about-page{
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
  }

}

@media (max-width: 1099px){
  .menu-bottom .menu-nav{
    justify-content: center !important;
    text-align: center !important;
  }

  .menu-bottom .menu-button-color{
    text-align: center !important;
  }
}

:root{
  --sidebar-w: 320px;
}

@media (min-width: 1100px){

  .menu-drawer{
    width: var(--sidebar-w) !important;
    background: linear-gradient(to bottom, #FF9B9D 25%, #FFE6E6 100%) !important;
    box-shadow: 12px 0 30px rgba(0,0,0,0.15) !important;
    border-right: none !important;
    overflow: hidden !important;
  }

  .menu-drawer a{
    text-decoration: none !important;
  }

  .menu-inner{
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px !important;
  }

  .menu-top{
    padding: 22px 18px 18px !important;
    background: transparent !important;
  }

  .menu-brand{
    text-align: center !important;
  }

  .menu-logo{
    display: block !important;
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto !important;
  }

  .menu-title{
    text-align: center !important;
    font-family: 'Caveat', cursive !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #ff6f7a !important;
    margin: 0 !important;
  }

  .menu-subtitle{
    text-align: center !important;
    color: rgba(255,255,255,0.9) !important;
  }

  .menu-section{
    padding: 16px 18px !important;
    display: grid !important;
    gap: 12px !important;
  }

  .menu-section .menu-btn,
  .menu-section a.menu-btn,
  .menu-section button.menu-btn{
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;

    background: #fff !important;
    color: #111827 !important;

    padding: 12px 14px !important;
    border-radius: 12px !important;

    box-shadow: 0 6px 14px rgba(0,0,0,0.06) !important;
    border: none !important;
  }

  .menu-section .menu-nav-ic{
    display: none !important;
  }

  .menu-bottom{
    margin-top: auto !important;
    padding: 10px 18px 18px !important;
    display: grid !important;
    gap: 10px !important;
  }

  .menu-bottom .menu-nav{
    justify-content: center !important;
    text-align: center !important;
    background: #ff9ea0 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(255, 158, 160, 0.35) !important;
    border-radius: 12px !important;
  }

  .menu-bottom .menu-nav .menu-nav-ic{
    display: none !important;
  }

  .page{
    margin-left: var(--sidebar-w) !important;
    width: calc(100% - var(--sidebar-w)) !important;
  }
}

.menu-bottom .menu-nav{
  justify-content: center !important; 
  text-align: center !important;      
}

.menu-bottom .menu-nav *{
  text-align: center !important;
}

.menu-bottom .menu-nav .menu-nav-ic{
  display: none !important;
}

@media (max-width: 1099px){
  .menu-bottom .menu-nav{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .menu-bottom .menu-nav span,
  .menu-bottom .menu-nav p,
  .menu-bottom .menu-nav strong{
    text-align: center !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 1099px){

  .menu-drawer{
    height: 100dvh !important;
  }

  .menu-inner{
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: calc(120px + env(safe-area-inset-bottom)) !important;
  }

  .menu-inner::after{
    content: "";
    display: block;
    height: 120px;
  }
}