@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Noto+Serif+Bengali:wght@400;500;600;700&family=Amiri:wght@400;700&display=swap');

:root {
  --hkmm-gold: #d4af37;
  --hkmm-bright: #f8d77a;
  --hkmm-sand: #fff2c9;
  --hkmm-pale: #fdf8e6;
  --hkmm-navy: #0b1b4d;
  --hkmm-royal: #3056e3;
  --hkmm-sky: #8ed0ff;
  --hkmm-orange: #ffa500;
  --hkmm-green: #1f7a3d;
  --hkmm-ink: #0c1225;
  --hkmm-muted: #51607f;
  --hkmm-white: #ffffff;
  --hkmm-shadow: 0 28px 60px rgba(10, 18, 41, 0.16);
  --hkmm-radius: 22px;
  --hkmm-border: rgba(11, 27, 77, 0.12);
  --hkmm-glass: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hind Siliguri", "Noto Serif Bengali", system-ui, -apple-system, sans-serif;
  color: var(--hkmm-ink);
  min-height: 100vh;
  background: #f5f7ff;
}

body.hkmm-public {
  background:
    radial-gradient(circle at 15% -10%, rgba(212, 175, 55, 0.25), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(142, 208, 255, 0.28), transparent 45%),
    linear-gradient(180deg, #fffaf0 0%, #f7f8ff 55%, #ffffff 100%);
}

body.hkmm-portal {
  background: #f4f6fb;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Leadership tabs */
.hkmm-tabs {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(18, 34, 73, 0.08);
  box-shadow: 0 18px 40px rgba(10, 24, 61, 0.08);
}

.hkmm-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hkmm-tabs__btn {
  border: 1px solid rgba(18, 34, 73, 0.15);
  background: #ffffff;
  color: #172554;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hkmm-tabs__btn.is-active {
  background: #0f2a63;
  color: #ffffff;
  border-color: transparent;
}

.hkmm-tabs__panel {
  display: none;
  animation: hkmmFadeIn 0.25s ease;
}

.hkmm-tabs__panel.is-active {
  display: block;
}

.hkmm-tabs__hint {
  color: #4b5563;
  font-size: 0.95rem;
}

.hkmm-teacher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hkmm-teacher-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(18, 34, 73, 0.1);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.hkmm-teacher-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #bfdbfe);
  color: #1f2a44;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.hkmm-teacher-card__meta {
  font-size: 0.85rem;
  color: #475569;
}

.hkmm-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hkmm-page {
  position: relative;
  z-index: 2;
}

/* Atmosphere + 3D depth */
.hkmm-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hkmm-atmosphere__layer {
  position: absolute;
  inset: -8%;
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease;
}

.hkmm-atmosphere__layer--grid {
  background-image:
    linear-gradient(120deg, rgba(11, 27, 77, 0.06) 1px, transparent 1px),
    linear-gradient(210deg, rgba(11, 27, 77, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 30% 40%, #000 40%, transparent 75%);
}

.hkmm-atmosphere__layer--halo {
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.22), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(48, 86, 227, 0.18), transparent 60%);
}

.hkmm-atmosphere__layer--paths {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(31, 122, 61, 0.08) 0,
    rgba(31, 122, 61, 0.08) 2px,
    transparent 2px,
    transparent 18px
  );
  mix-blend-mode: multiply;
}

/* Cursor trail */
.hkmm-cursor-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hkmm-cursor-trail span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0));
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.2);
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

/* Preloader */
.hkmm-preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #0c1b47, #050914);
  display: grid;
  place-items: center;
  color: var(--hkmm-bright);
  z-index: 1000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hkmm-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hkmm-preloader__core {
  position: relative;
  width: 110px;
  height: 110px;
}

.hkmm-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.45);
  animation: hkmm-spin 1.6s linear infinite;
}

.hkmm-preloader__ring--mid {
  inset: 14px;
  border-color: rgba(255, 215, 0, 0.65);
  animation-duration: 2.2s;
}

.hkmm-preloader__ring--inner {
  inset: 28px;
  border-color: rgba(142, 208, 255, 0.7);
  animation-duration: 2.8s;
}

.hkmm-preloader__spark {
  position: absolute;
  inset: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(31, 122, 61, 0.8));
  animation: hkmm-pulse 1.4s ease-in-out infinite;
}

.hkmm-preloader__label {
  margin-top: 18px;
  text-align: center;
  display: grid;
  gap: 4px;
  font-weight: 600;
}

.hkmm-preloader__label strong {
  font-family: "Noto Serif Bengali", serif;
  letter-spacing: 0.02em;
}

@keyframes hkmm-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hkmm-pulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* Header */
.hkmm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 27, 77, 0.1);
  box-shadow: 0 18px 45px rgba(9, 20, 56, 0.12);
  isolation: isolate;
}

.hkmm-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.75),
    rgba(212, 175, 55, 0.75) 18px,
    rgba(48, 86, 227, 0.2) 18px,
    rgba(48, 86, 227, 0.2) 36px
  );
  opacity: 0.75;
}

.hkmm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 18px 0 14px;
}

.hkmm-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 320px;
  order: 1;
}

.hkmm-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hkmm-brand__text {
  display: grid;
  gap: 4px;
}

.hkmm-brand__text h1 {
  font-family: "Noto Serif Bengali", serif;
  font-size: 20px;
  margin: 0;
  color: var(--hkmm-navy);
  line-height: 1.35;
  letter-spacing: 0.01em;
  word-spacing: 0.08em;
}

.hkmm-brand__affiliation {
  display: block;
  font-size: 15px;
  color: var(--hkmm-green);
  font-weight: 600;
  line-height: 1.35;
}

.hkmm-brand__location {
  display: block;
  font-size: 12px;
  color: var(--hkmm-muted);
}

.hkmm-menu {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 6px;
  font-weight: 600;
  color: var(--hkmm-navy);
  order: 3;
  padding-bottom: 6px;
}

.hkmm-menu a {
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hkmm-menu a::after {
  content: none;
}

.hkmm-menu a:hover::after,
.hkmm-menu a.is-active::after {
  width: 0;
}

.hkmm-menu a:hover {
  background: rgba(48, 86, 227, 0.12);
  transform: translateY(-1px);
}

.hkmm-menu a.is-active {
  background: linear-gradient(120deg, rgba(48, 86, 227, 0.18), rgba(212, 175, 55, 0.18));
  box-shadow: inset 0 0 0 1px rgba(48, 86, 227, 0.18);
}

.hkmm-menu__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hkmm-menu__trigger {
  border: 0;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--hkmm-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hkmm-menu__trigger:hover {
  background: rgba(48, 86, 227, 0.12);
  transform: translateY(-1px);
}

.hkmm-menu__item--accent .hkmm-menu__trigger {
  background: linear-gradient(120deg, rgba(48, 86, 227, 0.18), rgba(212, 175, 55, 0.2));
  box-shadow: inset 0 0 0 1px rgba(48, 86, 227, 0.2);
}

.hkmm-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 8px);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 18px 45px rgba(10, 18, 41, 0.16);
  min-width: 260px;
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.hkmm-menu__dropdown a {
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--hkmm-navy);
}

.hkmm-menu__dropdown a:hover {
  background: rgba(48, 86, 227, 0.12);
}

.hkmm-menu__item--dropdown:hover .hkmm-menu__dropdown,
.hkmm-menu__item--dropdown:focus-within .hkmm-menu__dropdown {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.hkmm-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 2;
}

.hkmm-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(11, 27, 77, 0.2);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--hkmm-navy);
}

.hkmm-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 12px;
}

.hkmm-mobile.is-open {
  display: flex;
}

.hkmm-mobile a {
  font-weight: 600;
  color: var(--hkmm-navy);
  padding: 6px 0;
}

.hkmm-mobile__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hkmm-muted);
  margin-top: 10px;
}

.hkmm-lang {
  display: inline-flex;
  border: 1px solid rgba(11, 27, 77, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.hkmm-lang a {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hkmm-navy);
}

.hkmm-lang a.is-active {
  background: var(--hkmm-navy);
  color: var(--hkmm-white);
}

/* Header ticker */
.hkmm-header__ticker {
  background: linear-gradient(90deg, rgba(11, 27, 77, 0.98), rgba(23, 37, 84, 0.98));
  color: #ffffff;
  border-top: 1px solid rgba(11, 27, 77, 0.08);
  padding-bottom: 4px;
}

.hkmm-ticker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 12px;
}

.hkmm-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hkmm-ticker__track {
  overflow: hidden;
  flex: 1;
}

.hkmm-ticker__items {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: hkmm-marquee 28s linear infinite;
}

.hkmm-ticker__item {
  color: #ffffff;
  font-weight: 500;
}

.hkmm-ticker__item:hover {
  color: var(--hkmm-bright);
}

.hkmm-ticker__cta {
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hkmm-ticker:hover .hkmm-ticker__items {
  animation-play-state: paused;
}

@keyframes hkmm-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hkmm-ticker__items {
    animation: none;
  }
}

/* Buttons */
.hkmm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hkmm-btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.hkmm-btn--primary {
  background: linear-gradient(120deg, var(--hkmm-navy), var(--hkmm-royal));
  color: var(--hkmm-white);
  box-shadow: 0 12px 30px rgba(11, 27, 77, 0.22);
}

.hkmm-btn--ghost {
  border-color: rgba(11, 27, 77, 0.2);
  color: var(--hkmm-navy);
  background: transparent;
}

.hkmm-btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.hkmm-btn:hover {
  transform: translateY(-2px);
}

/* Hero */
.hkmm-hero {
  position: relative;
  padding: 90px 0 50px;
  overflow: hidden;
}

.hkmm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hkmm-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.72) saturate(1.05);
  transform: scale(1.06);
}

.hkmm-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
}

.hkmm-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hkmm-hero__intro {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 20px 40px rgba(11, 27, 77, 0.12);
  backdrop-filter: blur(6px);
}

.hkmm-hero__badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 215, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hkmm-navy);
}

.hkmm-hero__badge[dir="rtl"] {
  font-family: "Amiri", serif;
  font-size: 16px;
  letter-spacing: 0;
}

.hkmm-hero__verse {
  margin-top: 14px;
  font-family: "Amiri", serif;
  font-size: 20px;
  color: var(--hkmm-green);
}

.hkmm-hero__title {
  font-family: "Noto Serif Bengali", serif;
  font-size: clamp(34px, 4.8vw, 54px);
  margin: 16px 0 12px;
  line-height: 1.2;
  color: var(--hkmm-navy);
}

.hkmm-hero__subtitle {
  font-size: 18px;
  max-width: 620px;
  color: var(--hkmm-muted);
}

.hkmm-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 26px;
}

.hkmm-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 10px 20px rgba(11, 27, 77, 0.08);
}

.hkmm-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hkmm-hero__affiliation {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--hkmm-green);
}

.hkmm-hero__media-frame {
  padding: 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 22px 50px rgba(11, 27, 77, 0.18);
  backdrop-filter: blur(10px);
}

.hkmm-hero__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 27, 77, 0.1);
  aspect-ratio: 4 / 3;
  isolation: isolate;
}

.hkmm-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hkmm-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 27, 77, 0.12), rgba(255, 255, 255, 0.08));
  pointer-events: none;
  z-index: 1;
}

.hkmm-hero__stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.hkmm-glass-card {
  background: var(--hkmm-glass);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 18px 40px rgba(11, 27, 77, 0.12);
  display: grid;
  gap: 10px;
}

.hkmm-glass-card__title {
  font-weight: 700;
  color: var(--hkmm-navy);
}

.hkmm-glass-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hkmm-orange);
}

.hkmm-glass-card__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hkmm-orange);
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.15);
}

.hkmm-glass-card__status.is-live {
  color: var(--hkmm-green);
}

.hkmm-glass-card__status.is-live::before {
  background: var(--hkmm-green);
  box-shadow: 0 0 0 4px rgba(31, 122, 61, 0.2);
}

.hkmm-glass-card__text {
  margin: 0;
  color: var(--hkmm-muted);
  font-size: 14px;
}

.hkmm-glass-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--hkmm-muted);
}

.hkmm-glass-card__hint {
  font-size: 13px;
  color: var(--hkmm-muted);
}

.hkmm-glass-card__count {
  font-size: 28px;
  font-weight: 700;
  color: var(--hkmm-navy);
}

/* Spotlight */
.hkmm-section--spotlight {
  padding-top: 36px;
}

.hkmm-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hkmm-slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--hkmm-shadow);
  background: #0b1b4d;
}

.hkmm-slider__frame {
  position: relative;
  min-height: 360px;
  height: 100%;
}

.hkmm-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hkmm-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hkmm-slider__slide img,
.hkmm-slider__slide picture {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hkmm-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 27, 77, 0.65), rgba(11, 27, 77, 0));
}

.hkmm-slider__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #ffffff;
  background: rgba(11, 27, 77, 0.6);
  padding: 12px 16px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  max-width: 70%;
}

.hkmm-slider__tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hkmm-bright);
  margin-bottom: 6px;
}

.hkmm-slider__dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 27, 77, 0.45);
}

.hkmm-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(11, 27, 77, 0.45);
  color: #ffffff;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hkmm-slider__arrow--prev {
  left: 16px;
}

.hkmm-slider__arrow--next {
  right: 16px;
}

.hkmm-slider__arrow:hover {
  background: rgba(11, 27, 77, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.hkmm-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.hkmm-slider__dot.is-active {
  background: var(--hkmm-bright);
  border-color: var(--hkmm-bright);
  transform: scale(1.2);
}

.hkmm-notice-board {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 22px 45px rgba(10, 18, 41, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hkmm-notice-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hkmm-notice-board__head h3 {
  margin: 0;
  font-size: 22px;
  color: var(--hkmm-navy);
}

.hkmm-notice-board__head p {
  margin: 6px 0 0;
  color: var(--hkmm-muted);
  font-size: 14px;
}

.hkmm-notice-board__list {
  display: grid;
  gap: 12px;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.hkmm-notice-board__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 27, 77, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hkmm-notice-board__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 18, 41, 0.12);
}

.hkmm-notice-board__date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hkmm-green);
}

.hkmm-notice-board__title {
  color: var(--hkmm-navy);
  font-weight: 600;
  line-height: 1.35;
}

.hkmm-notice-board__empty {
  color: var(--hkmm-muted);
  padding: 16px;
  text-align: center;
}

/* Section */
.hkmm-section {
  padding: 80px 0;
  position: relative;
}

.hkmm-section--alt {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}

.hkmm-section--principal {
  background: radial-gradient(circle at top left, rgba(15, 42, 79, 0.9), rgba(9, 22, 44, 0.98));
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hkmm-section--principal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.hkmm-principal {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hkmm-principal__photo {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

.hkmm-section--principal .hkmm-section__title {
  color: #ffffff;
  margin-bottom: 12px;
}

.hkmm-section--principal .hkmm-section__lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
}

.hkmm-principal__name {
  margin-top: 12px;
  font-weight: 700;
  color: var(--hkmm-bright);
}

.hkmm-section__head {
  margin-bottom: 28px;
}

.hkmm-section__title {
  font-family: "Noto Serif Bengali", serif;
  font-size: clamp(24px, 3vw, 38px);
  margin: 0 0 16px;
  color: var(--hkmm-navy);
}

.hkmm-section__lead {
  color: var(--hkmm-muted);
  max-width: 720px;
  margin-bottom: 22px;
}

.hkmm-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.hkmm-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--hkmm-radius);
  padding: 24px;
  box-shadow: var(--hkmm-shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hkmm-card--soft {
  background: rgba(255, 255, 255, 0.88);
}

.hkmm-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hkmm-card:hover {
  transform: translateY(-6px);
}

.hkmm-card:hover::after {
  opacity: 1;
}

.hkmm-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--hkmm-navy);
}

.hkmm-card p {
  margin: 0 0 14px;
  color: var(--hkmm-muted);
}

.hkmm-card a {
  font-weight: 600;
  color: var(--hkmm-royal);
}

.hkmm-card input,
.hkmm-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11, 27, 77, 0.15);
  font-family: inherit;
  font-size: 14px;
}

.hkmm-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11, 27, 77, 0.15);
  font-family: inherit;
  font-size: 14px;
  background: var(--hkmm-white);
}

.hkmm-card input[type="checkbox"] {
  width: auto;
}

.hkmm-card input:focus,
.hkmm-card textarea:focus {
  outline: none;
  border-color: var(--hkmm-royal);
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.15);
}

.hkmm-alert {
  margin: 12px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid transparent;
}

.hkmm-alert--success {
  background: rgba(31, 122, 61, 0.12);
  border-color: rgba(31, 122, 61, 0.25);
  color: var(--hkmm-green);
}

.hkmm-alert--error {
  background: rgba(185, 28, 28, 0.12);
  border-color: rgba(185, 28, 28, 0.25);
  color: #b91c1c;
}

.hkmm-alert ul {
  margin: 8px 0 0 18px;
}

.hkmm-form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hkmm-muted);
}

.hkmm-grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.hkmm-checklist {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--hkmm-muted);
}

.hkmm-checklist li {
  list-style: square;
}

.hkmm-admission {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hkmm-admission__poster img {
  border-radius: 24px;
  box-shadow: var(--hkmm-shadow);
  border: 1px solid rgba(11, 27, 77, 0.12);
}

.hkmm-updates {
  display: grid;
  gap: 18px;
}

.hkmm-update {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(11, 27, 77, 0.08);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hkmm-update small {
  color: var(--hkmm-muted);
}

.hkmm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.hkmm-gallery img {
  border-radius: 18px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(11, 27, 77, 0.18);
}

.hkmm-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(11, 27, 77, 0.08);
}

.hkmm-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hkmm-map {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 14px 30px rgba(11, 27, 77, 0.12);
}

.hkmm-map--compact {
  margin-top: 12px;
}

.hkmm-facebook {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 14px 30px rgba(11, 27, 77, 0.12);
}

/* Results page */
.hkmm-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.hkmm-results__status {
  display: grid;
  gap: 12px;
  margin: 18px 0 10px;
}

.hkmm-results__status-title {
  font-weight: 700;
  color: var(--hkmm-navy);
}

.hkmm-results__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hkmm-orange);
}

.hkmm-results__status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hkmm-orange);
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.15);
}

.hkmm-results__status-pill.is-live {
  color: var(--hkmm-green);
}

.hkmm-results__status-pill.is-live::before {
  background: var(--hkmm-green);
  box-shadow: 0 0 0 4px rgba(31, 122, 61, 0.2);
}

.hkmm-results__status-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--hkmm-muted);
  font-size: 13px;
}

.hkmm-result-item__note {
  font-size: 13px;
  color: var(--hkmm-muted);
}

.hkmm-results-panel {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.hkmm-results-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hkmm-results-panel__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 77, 0.18);
  background: rgba(48, 86, 227, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--hkmm-navy);
}

.hkmm-results-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.hkmm-results-panel__card {
  border-radius: 16px;
  border: 1px solid rgba(11, 27, 77, 0.18);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: grid;
  gap: 6px;
}

.hkmm-results-panel__card:hover {
  transform: translateY(-2px);
  border-color: rgba(48, 86, 227, 0.4);
  background: rgba(48, 86, 227, 0.06);
}

.hkmm-results-panel__card.is-active {
  border-color: rgba(48, 86, 227, 0.7);
  background: rgba(48, 86, 227, 0.12);
}

.hkmm-results-panel__title {
  font-weight: 700;
  color: var(--hkmm-navy);
  font-size: 15px;
}

.hkmm-results-panel__hint {
  margin: 4px 0 0;
  color: var(--hkmm-muted);
  font-size: 13px;
}

.hkmm-results-panel__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--hkmm-muted);
}

.hkmm-results-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 77, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.hkmm-results-panel__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hkmm-results-panel__search {
  flex: 1 1 240px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hkmm-results-panel__search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 77, 0.18);
  font-family: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.hkmm-results-panel__table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 27, 77, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.hkmm-results-panel__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hkmm-results-panel__table thead {
  background: rgba(11, 27, 77, 0.08);
}

.hkmm-results-panel__table th,
.hkmm-results-panel__table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(11, 27, 77, 0.08);
}

.hkmm-results-panel__table tbody tr:hover {
  background: rgba(48, 86, 227, 0.06);
}

.hkmm-results-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 122, 61, 0.2);
  background: rgba(31, 122, 61, 0.12);
  color: var(--hkmm-green);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.hkmm-results-panel__empty {
  padding: 18px 16px;
  text-align: center;
  color: var(--hkmm-muted);
}

.hkmm-results-panel__lock {
  border-radius: 16px;
  border: 1px dashed rgba(255, 165, 0, 0.5);
  background: rgba(255, 165, 0, 0.08);
  padding: 14px 16px;
  display: none;
}

.hkmm-results-panel__lock.is-visible {
  display: block;
}

.hkmm-results-panel.is-locked .hkmm-results-panel__grid,
.hkmm-results-panel.is-locked .hkmm-results-panel__toolbar,
.hkmm-results-panel.is-locked .hkmm-results-panel__table {
  opacity: 0.55;
  pointer-events: none;
}

/* Admin + tables */
.hkmm-admin-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.hkmm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hkmm-table th,
.hkmm-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(11, 27, 77, 0.08);
  vertical-align: top;
}

.hkmm-table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hkmm-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(11, 27, 77, 0.1);
  color: var(--hkmm-navy);
}

.hkmm-badge.is-live {
  background: rgba(31, 122, 61, 0.15);
  color: var(--hkmm-green);
}

.hkmm-badge.is-warning {
  background: rgba(255, 165, 0, 0.2);
  color: var(--hkmm-orange);
}

.hkmm-badge.is-muted {
  background: rgba(92, 106, 139, 0.15);
  color: var(--hkmm-muted);
}

.hkmm-settings-group {
  display: grid;
  gap: 18px;
}

.hkmm-setting-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(260px, 2fr) minmax(140px, 0.7fr);
  gap: 16px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(11, 27, 77, 0.12);
}

.hkmm-setting-row:last-child {
  border-bottom: none;
}

.hkmm-setting-key {
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: var(--hkmm-navy);
  word-break: break-word;
}

.hkmm-setting-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--hkmm-navy);
}

.hkmm-comment-list {
  display: grid;
  gap: 16px;
}

.hkmm-comment {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 27, 77, 0.08);
}

.hkmm-comment__date {
  display: inline-block;
  margin-left: 10px;
  color: var(--hkmm-muted);
  font-size: 12px;
}

.hkmm-gallery__item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

/* Footer */
.hkmm-footer {
  background: var(--hkmm-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0 30px;
}

.hkmm-footer__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hkmm-footer h4 {
  margin-top: 0;
  color: var(--hkmm-bright);
}

.hkmm-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.hkmm-footer__affiliation {
  color: var(--hkmm-sand);
}

.hkmm-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hkmm-sand);
}

.hkmm-footer__bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.hkmm-footer__visitor {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.hkmm-footer__visitor-sep {
  opacity: 0.7;
}

/* Auth */
.hkmm-section--auth {
  padding-top: 60px;
}

.hkmm-auth {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: start;
}

.hkmm-auth__card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 27, 77, 0.12);
  box-shadow: 0 25px 55px rgba(10, 18, 41, 0.16);
  overflow: hidden;
}

.hkmm-auth__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hmlogo.png");
  background-repeat: no-repeat;
  background-position: right 24px top 24px;
  background-size: 120px;
  opacity: 0.08;
  pointer-events: none;
}

.hkmm-auth__header {
  margin-bottom: 18px;
}

.hkmm-auth__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(48, 86, 227, 0.15);
  color: var(--hkmm-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hkmm-auth__header h1 {
  margin: 12px 0 6px;
  font-size: 28px;
  color: var(--hkmm-navy);
}

.hkmm-auth__header p {
  margin: 0;
  color: var(--hkmm-muted);
}

.hkmm-auth__form {
  display: grid;
  gap: 18px;
}

.hkmm-auth__field {
  display: grid;
  gap: 8px;
}

.hkmm-auth__field label {
  font-weight: 600;
  color: var(--hkmm-navy);
}

.hkmm-auth__field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(11, 27, 77, 0.15);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 6px 18px rgba(48, 86, 227, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hkmm-auth__field input:focus {
  outline: none;
  border-color: rgba(48, 86, 227, 0.6);
  box-shadow: 0 0 0 4px rgba(48, 86, 227, 0.15);
}

.hkmm-auth__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.hkmm-auth__remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hkmm-muted);
}

.hkmm-auth__link {
  color: var(--hkmm-royal);
  font-weight: 600;
}

.hkmm-auth__submit {
  width: 100%;
}

.hkmm-auth__help {
  background: rgba(11, 27, 77, 0.9);
  color: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(6, 12, 30, 0.3);
}

.hkmm-auth__help h2 {
  margin-top: 0;
}

.hkmm-auth__help-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.hkmm-auth__help-card a {
  color: var(--hkmm-bright);
}

/* Reveal */
.hkmm-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hkmm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hkmm-hero__grid,
  .hkmm-admission {
    grid-template-columns: minmax(0, 1fr);
  }

  .hkmm-principal {
    grid-template-columns: minmax(0, 1fr);
  }

  .hkmm-spotlight {
    grid-template-columns: minmax(0, 1fr);
  }

  .hkmm-slider,
  .hkmm-slider__frame {
    min-height: 280px;
  }

  .hkmm-auth {
    grid-template-columns: minmax(0, 1fr);
  }

  .hkmm-hero__media {
    order: -1;
  }
}

@media (max-width: 900px) {
  .hkmm-menu {
    display: none;
  }

  .hkmm-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hkmm-setting-row {
    grid-template-columns: 1fr;
  }

  .hkmm-admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .hkmm-brand img {
    width: 44px;
    height: 44px;
  }

  .hkmm-ticker {
    flex-direction: column;
    align-items: flex-start;
  }

  .hkmm-ticker__track {
    width: 100%;
  }

  .hkmm-notice-board__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hkmm-notice-board__item {
    grid-template-columns: 1fr;
  }

  .hkmm-hero__stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .hkmm-hero__stack {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .hkmm-card,
  .hkmm-btn {
    transition: none;
  }

  .hkmm-cursor-trail {
    display: none;
  }

  .hkmm-preloader__ring,
  .hkmm-preloader__spark {
    animation: none;
  }
}
