/* ===== ORBITAL MEMORIAL THEME ===== */
:root {
  --ml-bg: #0a0a0c;
  --ml-card: #111115;
  --ml-text: #e8e6e1;
  --ml-accent: #B1713E;
  --ml-rust: #8A5C2C;
  --ml-cream: #D6B28B;
  --ml-eye: #8E9A63;
  --ml-serif: "Cormorant Garamond", Georgia, serif;
  --ml-sans: "Inter", system-ui, sans-serif;
}

.ml-orbital-body {
  background: var(--ml-bg);
  color: var(--ml-text);
  font-family: var(--ml-sans);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
}

#ml-orbital-app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Header */
#ml-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}
#ml-header * { pointer-events: auto; }

.ml-header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ml-logo {
  font-family: var(--ml-serif);
  font-size: 2.4rem;
  color: var(--ml-accent);
  text-shadow: 0 0 20px rgba(201,168,76,0.15);
  letter-spacing: 1px;
  white-space: nowrap;
}

.ml-subtitle {
  font-family: var(--ml-sans);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,230,225,0.35);
  font-weight: 300;
}

.ml-cta {
  font-family: var(--ml-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(201,168,76,0);
  opacity: 1;
  transition: color 0.5s ease;
  user-select: none;
  cursor: default;
}
.ml-cta.visible {
  color: rgba(201,168,76,0.7);
}
.ml-cta.faded {
  color: rgba(201,168,76,0) !important;
  pointer-events: none;
}

/* Pulse only when visible */
@keyframes mlCtaPulse {
  0%, 100% { color: rgba(201,168,76,0.55); }
  50% { color: rgba(201,168,76,0.8); }
}
.ml-cta.visible:not(.faded) {
  animation: mlCtaPulse 2.5s ease-in-out infinite;
}

.ml-lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(17,17,20,0.6);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 2px;
  cursor: pointer;
  font-family: var(--ml-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ml-text);
  transition: border-color 0.3s;
  overflow: hidden;
}
.ml-lang-toggle:hover {
  border-color: var(--ml-accent);
}

.ml-lang-below {
  margin: 6px auto 2px;
  display: flex;
}

.ml-lang-option {
  position: relative;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 16px;
  transition: color 0.35s;
  user-select: none;
  pointer-events: none;
}
.ml-lang-option.active {
  color: var(--ml-bg);
}

.ml-lang-slider {
  position: absolute;
  top: 2px;
  z-index: 1;
  height: calc(100% - 4px);
  width: calc(50% - 2px);
  background: var(--ml-accent);
  border-radius: 16px;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Orbit Stage */
.ml-orbit-stage {
  position: relative;
  width: 700px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.ml-orbit-stage::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url('merlin_silhouette.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

/* Center star — Merlin's star. Slow, patient pulse. */
.ml-center-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.ml-star-svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.25));
  animation: mlStarBreathe 5s ease-in-out infinite;
}

.ml-star-core {
  animation: mlStarCore 5s ease-in-out infinite;
}

.ml-star-halo-inner {
  animation: mlStarHaloInner 5s ease-in-out infinite;
}

.ml-star-halo-mid {
  animation: mlStarHaloMid 5s ease-in-out infinite;
}

.ml-star-halo-outer {
  animation: mlStarHaloOuter 5s ease-in-out infinite;
}

@keyframes mlStarBreathe {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.85; }
}

@keyframes mlStarCore {
  0%, 100% { opacity: 0.6; r: 4; }
  50%      { opacity: 1; r: 5; }
}

@keyframes mlStarHaloInner {
  0%, 100% { opacity: 0.1; r: 15; }
  50%      { opacity: 0.25; r: 20; }
}

@keyframes mlStarHaloMid {
  0%, 100% { opacity: 0.04; r: 35; }
  50%      { opacity: 0.1; r: 45; }
}

@keyframes mlStarHaloOuter {
  0%, 100% { opacity: 0.02; r: 60; }
  50%      { opacity: 0.05; r: 75; }
}

/* JS-driven orbit tracks — positioned at center, animated via rAF */
.ml-orbit-track {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 2;
  will-change: auto;
}

/* Cat circles */
.ml-cat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--ml-card);
  border: 2px solid var(--ml-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 0 30px rgba(201,168,76,0.08), inset 0 0 30px rgba(0,0,0,0.3);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
}

/* Content stays upright naturally — no counter-rotation needed */
.ml-circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Slow outward pulse on hover */
@keyframes ml-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.06); }
}
.ml-cat-circle:hover {
  transform: translate(-50%, -50%) scale(1.2);
  border-color: var(--ml-rust);
  box-shadow: 0 0 80px rgba(201,168,76,0.4), inset 0 0 40px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
}

/* Spotlight: desaturate non-hovered circles */
.ml-cat-circle.ml-desaturated .ml-circle-vid {
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.4s ease;
}
.ml-cat-circle.ml-desaturated .ml-circle-content {
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.ml-cat-circle:not(.ml-desaturated) .ml-circle-vid {
  filter: none;
  transition: filter 0.4s ease;
}
.ml-cat-circle:not(.ml-desaturated) .ml-circle-content {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Merlin's circle — 30% larger, always in front */
#circle-merlin {
  width: 208px;
  height: 208px;
  overflow: visible;
}
#circle-merlin .ml-circle-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 50%;
  z-index: 0;
  transform: translateZ(0);
}
#circle-merlin .ml-circle-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(26,26,26,0.35);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ml-orbit-outer { z-index: 10; }
#circle-merlin .ml-cat-icon { font-size: 3.6rem; }

/* Sheela's circle — same video treatment */
#circle-sheela {
  width: 208px;
  height: 208px;
  overflow: visible;
}
#circle-sheela .ml-circle-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 50%;
  z-index: 0;
  transform: translateZ(0);
}
#circle-sheela .ml-circle-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(26,26,26,0.35);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Josy's circle — tabby on sofa */
#circle-josy {
  width: 208px;
  height: 208px;
  overflow: visible;
}
#circle-josy .ml-circle-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 50%;
  z-index: 0;
  transform: translateZ(0);
}
#circle-josy .ml-circle-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(26,26,26,0.35);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Name rings */
#circle-merlin .ml-name-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}
#circle-merlin .ml-ring-text {
  font-family: var(--ml-serif);
  font-size: 25px;
  fill: var(--ml-accent);
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.3));
}
#circle-merlin .ml-cat-name { font-size: 2.3rem; }
#circle-merlin .ml-cat-years { font-size: 0.8rem; }

#circle-sheela .ml-name-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}
#circle-sheela .ml-ring-text {
  font-family: var(--ml-serif);
  font-size: 25px;
  fill: var(--ml-accent);
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.3));
}
#circle-sheela .ml-cat-name { font-size: 2.0rem; }
#circle-sheela .ml-cat-years { font-size: 0.75rem; }

/* Trio's circle — three cats together */
#circle-trio {
  width: 208px;
  height: 208px;
  overflow: visible;
}
#circle-trio .ml-circle-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 50%;
  z-index: 0;
  transform: translateZ(0);
}
#circle-trio .ml-circle-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(26,26,26,0.35);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Josy's name ring */
#circle-josy .ml-name-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}
#circle-josy .ml-ring-text {
  font-family: var(--ml-serif);
  font-size: 25px;
  fill: var(--ml-accent);
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.3));
}
#circle-josy .ml-cat-name { font-size: 1.8rem; }
#circle-josy .ml-cat-years { font-size: 0.7rem; }

.ml-cat-icon { font-size: 2.8rem; line-height: 1; margin-bottom: 4px; }
.ml-cat-name {
  font-family: var(--ml-serif);
  font-size: 1.8rem;
  color: var(--ml-accent);
  line-height: 1;
}
.ml-cat-years {
  font-family: var(--ml-sans);
  font-size: 0.65rem;
  opacity: 0.5;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Pawprint seal */
.ml-seal {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.ml-cat-circle:hover .ml-seal { opacity: 1; }
.ml-seal svg { width: 100%; height: 100%; fill: var(--ml-accent); }

/* Bottom bar: lang pill + stats + footer link grouped together */
.ml-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0 12px;
  z-index: 10;
  pointer-events: none;
}
.ml-bottom-bar > * { pointer-events: auto; }
.ml-bottom-bar .ml-stats {
  position: static;
  bottom: auto;
  transform: none;
}
.ml-bottom-bar .ml-footer-link {
  position: static;
  bottom: auto;
  transform: none;
}

/* Stats footer */
.ml-stats {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ml-sans);
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.35;
  z-index: 1;
  text-align: center;
}
.ml-footer-link {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--ml-sans);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.25;
  transition: opacity 0.3s;
}
.ml-footer-link:hover {
  opacity: 0.5;
}
.ml-footer-link a {
  color: var(--ml-text);
  text-decoration: none;
}

.ml-credit {
  position: fixed;
  bottom: 4px;
  right: 20px;
  z-index: 1;
  font-family: var(--ml-serif);
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(201,168,76,0.15);
  transition: color 4s ease;
  pointer-events: none;
}
.ml-credit:hover {
  color: rgba(201,168,76,0.4);
  transition: color 0.6s ease;
}

/* ===== EXPANDED OVERLAY ===== */
.ml-overlay {
  position: fixed;
  z-index: 110;
  background: var(--ml-card);
  border: 2px solid var(--ml-accent);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: default;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Video that plays through the supernova animation */
.ml-orb-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  border-radius: inherit;
}

.ml-overlay .ml-expand-content {
  display: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  overflow: hidden;
}
.ml-overlay.show-content .ml-expand-content {
  display: block;
  overflow: visible;
  animation: mlFadeIn 0.5s 0.3s forwards;
}

@keyframes mlFadeIn { to { opacity: 1; } }

/* Portrait video container */
.ml-expand-portrait {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.ml-expand-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}

.ml-expand-vignette {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(10,10,12,0.55) 80%, rgba(10,10,12,0.85) 100%),
    linear-gradient(to top, rgba(10,10,12,0.7) 0%, transparent 40%);
  pointer-events: none;
}

.ml-expand-title {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  font-family: var(--ml-serif);
  font-size: 3.2rem;
  color: var(--ml-accent);
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 80px rgba(10,10,12,0.6);
  pointer-events: none;
}

.ml-expand-hint {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  font-family: var(--ml-sans);
  font-size: 0.75rem;
  color: rgba(232,230,225,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  pointer-events: none;
}

.ml-explore-link {
  position: fixed;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
  background: var(--ml-accent);
  color: var(--ml-bg) !important;
  font-family: var(--ml-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 36px;
  border-radius: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.3s, box-shadow 0.3s;
}
.ml-explore-link:hover {
  background: var(--ml-accent);
  box-shadow: 0 0 30px rgba(201,168,76,0.35);
  color: var(--ml-bg);
}

.ml-open-book-btn {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(177,113,62,0.5);
  border: 1px solid var(--ml-accent);
  color: var(--ml-text);
  font-family: var(--ml-sans);
  font-size: 0.85rem;
  padding: 10px 28px;
  border-radius: 24px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.ml-open-book-btn:hover {
  background: var(--ml-accent);
  box-shadow: 0 0 30px rgba(201,168,76,0.35);
  color: var(--ml-bg);
}

.ml-back-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  background: rgba(10,10,12,0.6);
  backdrop-filter: blur(8px);
  color: var(--ml-text);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--ml-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: background 0.3s, border-color 0.3s;
}
.ml-back-btn:hover {
  background: rgba(177,113,62,0.5);
  border-color: var(--ml-accent);
}

/* Hide parent theme nav on orbital pages */
body.ml-orbital-body .top-nav { display: none; }

/* ===== SECTION PAGE ===== */
#ml-section-page {
  width: 100%;
  min-height: 100vh;
  background: var(--ml-bg);
  color: var(--ml-text);
  font-family: var(--ml-serif);
}

#ml-section-page #ml-header {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  margin-bottom: 20px;
}

.ml-back-link {
  background: var(--ml-accent);
  color: var(--ml-bg) !important;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--ml-sans);
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.ml-back-link:hover { background: var(--ml-rust); }

.ml-section-container {
  max-width: 680px;
  margin: 100px auto 60px;
  padding: 0 24px;
}

.ml-section-title {
  font-family: var(--ml-serif);
  font-size: 3.5rem;
  color: var(--ml-accent);
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--ml-accent);
  padding-bottom: 15px;
}

.ml-section-entry {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--ml-card);
  border-left: 3px solid var(--ml-accent);
  border-radius: 0 8px 8px 0;
}

.ml-entry-title {
  font-family: var(--ml-serif);
  font-size: 2.2rem;
  color: var(--ml-accent);
  margin-bottom: 15px;
}

.ml-entry-body {
  font-family: var(--ml-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ml-text);
}
.ml-entry-body p { margin-bottom: 1.2em; }

.ml-section-empty {
  text-align: center;
  font-family: var(--ml-sans);
  opacity: 0.5;
  font-size: 1.1rem;
  margin-top: 80px;
}

/* ===== RESPONSIVE ===== */
/* Orbit scales with viewport height on 16:9 screens */
@media (max-height: 900px) {
  .ml-orbit-stage {
    width: 65vmin;
    height: 65vmin;
  }
  .ml-cat-circle { width: 130px; height: 130px; }
  #circle-merlin, #circle-sheela, #circle-josy, #circle-trio {
    width: 170px; height: 170px;
  }
  #circle-merlin .ml-name-ring,
  #circle-sheela .ml-name-ring,
  #circle-josy .ml-name-ring {
    width: 260px; height: 260px;
  }
  #circle-merlin .ml-ring-text,
  #circle-sheela .ml-ring-text,
  #circle-josy .ml-ring-text {
    font-size: 20px;
  }
  .ml-logo { font-size: 1.9rem; }
  .ml-stats { bottom: 50px; }
  .ml-footer-link { bottom: 30px; }
}

@media (max-height: 750px) {
  .ml-orbit-stage {
    width: 55vmin;
    height: 55vmin;
  }
  .ml-cat-circle { width: 110px; height: 110px; }
  #circle-merlin, #circle-sheela, #circle-josy, #circle-trio {
    width: 140px; height: 140px;
  }
  #circle-merlin .ml-name-ring,
  #circle-sheela .ml-name-ring,
  #circle-josy .ml-name-ring {
    width: 220px; height: 220px;
  }
  #circle-merlin .ml-ring-text,
  #circle-sheela .ml-ring-text,
  #circle-josy .ml-ring-text {
    font-size: 17px;
  }
  .ml-logo { font-size: 1.6rem; }
  .ml-subtitle { font-size: 0.55rem; }
  .ml-stats { bottom: 44px; font-size: 0.75rem; }
  .ml-footer-link { bottom: 26px; font-size: 0.55rem; }
}

@media (max-width: 768px) {
  .ml-orbit-stage { width: 100vw; height: 100vw; }
  .ml-orbit-stage::before {
    width: 100%;
    height: 100%;
    background-size: contain;
    opacity: 0.055;
  }
  .ml-cat-circle { width: 80px; height: 80px; }
  #circle-merlin { width: 104px; height: 104px; }
  #circle-sheela { width: 104px; height: 104px; }
  #circle-josy { width: 104px; height: 104px; }
  #circle-trio { width: 104px; height: 104px; }
  .ml-cat-icon { font-size: 1.6rem; }
  .ml-cat-name { font-size: 1rem; }
  .ml-cat-years { font-size: 0.5rem; }
  .ml-logo { font-size: 2rem; }
  #circle-merlin .ml-name-ring { width: 180px; height: 180px; }
  #circle-merlin .ml-ring-text { font-size: 14px; }
  #circle-sheela .ml-name-ring { width: 180px; height: 180px; }
  #circle-sheela .ml-ring-text { font-size: 14px; }
  #circle-josy .ml-name-ring { width: 180px; height: 180px; }
  #circle-josy .ml-ring-text { font-size: 14px; }
  .ml-seal { width: 20px; height: 20px; bottom: -6px; right: -6px; }
  .ml-expand-title { font-size: 2rem; bottom: 50px; }
  .ml-expand-hint { font-size: 0.65rem; bottom: 22px; }
}
