/* MINAMO MASTER CLUB
   Light HTML, Y2K UI skin (glossy + bubbly + sparkly).
*/

:root {
  --ink: #0b1020;
  --muted: #54607a;
  --pink: #ff2ca6;
  --pink2: #ff7fd0;
  --cyan: #00bfff;
  --lilac: #b388ff;
  --lime: #b7ff5a;
  --mint: #52ffd2;
  --orange: #ffb347;
  /* main buttons (lime) */
  --btn-blue-top: rgba(214, 248, 132, 0.96);
  --btn-blue-bottom: rgba(155, 226, 72, 0.90);
  /* solid colors so bars don't shift by background */
  --bar-pink-top: #ff63bd;
  --bar-pink-bottom: #ffa0de;
  --panel: rgba(255, 255, 255, 0.78);
  --panel2: rgba(255, 255, 255, 0.92);
  --stroke: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  --ds-border: rgba(255, 255, 255, 0.95);
  --ds-border2: rgba(11, 16, 32, 0.08);
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "DotGothic16", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "MS PGothic", Meiryo, sans-serif;
  position: relative;
  background:
    radial-gradient(900px 540px at 16% 18%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 60%),
    radial-gradient(720px 520px at 78% 28%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #bff6e6, #b8d7ff 35%, #eee9ff 70%, #ffd3ee);
}

/* floating sparkles / bokeh */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  mix-blend-mode: screen;
  background:
    radial-gradient(34px 34px at 12% 22%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 60%),
    radial-gradient(54px 54px at 22% 62%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 70%),
    radial-gradient(40px 40px at 36% 38%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 70%),
    radial-gradient(70px 70px at 62% 22%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 72%),
    radial-gradient(44px 44px at 78% 58%, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 70%),
    radial-gradient(84px 84px at 88% 28%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 72%),
    radial-gradient(6px 6px at 18% 26%, rgba(255, 191, 232, 0.85), rgba(255, 191, 232, 0) 70%),
    radial-gradient(6px 6px at 72% 34%, rgba(184, 215, 255, 0.85), rgba(184, 215, 255, 0) 70%),
    radial-gradient(6px 6px at 86% 64%, rgba(183, 255, 90, 0.55), rgba(183, 255, 90, 0) 70%);
  animation: floatBokeh 16s ease-in-out infinite;
}

@keyframes floatBokeh {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    filter: blur(0.2px) saturate(1.15);
  }
  50% {
    transform: translate3d(-14px, 10px, 0);
    filter: blur(0.4px) saturate(1.25);
  }
}

a {
  color: #0033cc;
}
a:visited {
  color: #551a8b;
}

/* Water ripple effect */
.ripple-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}

.ripple {
  position: fixed;
  width: var(--size);
  height: var(--size);
  left: calc(var(--x) - (var(--size) / 2));
  top: calc(var(--y) - (var(--size) / 2));
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 0;
  filter: saturate(1.1);
  animation: rippleOut 2400ms ease-out forwards;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0) 0 35%,
      rgba(0, 0, 0, 0.16) 35.6% 36.4%,
      rgba(255, 255, 255, 0.78) 36.5% 37.8%,
      rgba(64, 182, 255, 0.42) 38.2% 40.6%,
      rgba(255, 255, 255, 0) 41% 100%),
    radial-gradient(circle at 55% 45%,
      rgba(255, 255, 255, 0) 0 52%,
      rgba(255, 127, 208, 0.14) 53% 56%,
      rgba(255, 255, 255, 0) 57% 100%);
}

.ripple::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0) 0 14px,
      rgba(255, 255, 255, 0.18) 14px 16px,
      rgba(255, 255, 255, 0) 16px 30px);
  opacity: 0.45;
  filter: blur(0.4px);
}

.ripple::after {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0) 0 58%,
      rgba(255, 255, 255, 0.22) 59% 62%,
      rgba(255, 255, 255, 0) 63% 100%);
  opacity: 0.28;
  filter: blur(0.8px);
}

@keyframes rippleOut {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Subtle water shimmer (very light) */
body::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  filter: blur(1.2px) saturate(1.25);
  background:
    radial-gradient(120px 90px at 18% 24%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 70%),
    radial-gradient(140px 110px at 46% 42%, rgba(0, 191, 255, 0.25), rgba(0, 0, 0, 0) 70%),
    radial-gradient(160px 120px at 72% 34%, rgba(255, 44, 166, 0.20), rgba(0, 0, 0, 0) 72%),
    radial-gradient(140px 110px at 82% 68%, rgba(179, 136, 255, 0.12), rgba(0, 0, 0, 0) 72%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.14) 1px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0) 22px
    );
  background-size: 520px 420px, 560px 520px, 620px 560px, 680px 620px, 100% 100%;
  background-position: 0% 0%, 20% 10%, 60% 20%, 80% 60%, 0 0;
  animation: waterWobble 18s ease-in-out infinite;
}

@keyframes waterWobble {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.6deg);
    background-position: 0% 0%, 20% 10%, 60% 20%, 80% 60%, 0 0;
  }
  50% {
    transform: translate3d(-10px, 8px, 0) rotate(0.6deg);
    background-position: 12% 18%, 30% 22%, 54% 34%, 70% 72%, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ripple-root {
    display: none;
  }
  body::before,
  body::after {
    animation: none !important;
  }
}


.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 10px 32px;
}

/* header */
.site-header {
  display: block;
  padding: 10px 14px;
  min-height: 118px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border: 1px solid var(--ds-border);
  outline: 1px solid var(--ds-border2);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240%;
  height: 240%;
  border-radius: 0;
  pointer-events: none;
  opacity: 1;
  background-image: url("./assets/header-dots-large.png");
  background-repeat: repeat;
  background-size: 420px 420px;
  background-position: center;
  transform: translate(-50%, -50%) rotate(-14deg);
  transform-origin: center;
  z-index: 0;
  filter: contrast(1.08);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(140px 90px at 18% 0%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 55%);
  opacity: 0.38;
  z-index: 0;
}
.site-header > * {
  position: relative;
  z-index: 1;
}
.site-title {
  position: absolute;
  inset: 0;
  text-align: center;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.site-title a {
  pointer-events: auto;
}
.site-badges {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-title__kicker {
  font-size: 12px;
  color: var(--muted);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.98),
    0 0 46px rgba(255, 255, 255, 0.78),
    0 0 86px rgba(255, 255, 255, 0.58),
    0 0 130px rgba(255, 255, 255, 0.32);
}
.site-title__main {
  font-size: clamp(50px, 5.6vw, 64px);
  margin: 0;
  letter-spacing: 0.2px;
  font-family: "Great Vibes", "Parisienne", "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 400;
  line-height: 1.0;
  padding: 0;
  transform: translateY(3px);
  color: rgba(255, 127, 208, 0.92);
  -webkit-text-stroke: 2.2px rgba(255, 44, 166, 0.24);
  text-shadow:
    0 0 26px rgba(255, 255, 255, 0.99),
    0 0 58px rgba(255, 255, 255, 0.82),
    0 0 110px rgba(255, 255, 255, 0.56),
    0 0 160px rgba(255, 255, 255, 0.30),
    1.4px 0 rgba(255, 44, 166, 0.12),
    -1.4px 0 rgba(255, 44, 166, 0.12),
    0 1.4px rgba(255, 44, 166, 0.10),
    0 -1.4px rgba(255, 44, 166, 0.10),
    0.9px 0 rgba(255, 44, 166, 0.14),
    -0.9px 0 rgba(255, 44, 166, 0.14),
    0 0.9px rgba(255, 44, 166, 0.12),
    0 -0.9px rgba(255, 44, 166, 0.12),
    0 0 18px rgba(255, 127, 208, 0.32),
    0 10px 22px rgba(0, 0, 0, 0.10);
}
.site-title__main a {
  color: inherit;
  text-decoration: none;
}
.site-title__main a:focus-visible {
  outline: 2px solid rgba(0, 191, 255, 0.35);
  border-radius: 14px;
}
.site-title__sub {
  font-size: 12px;
  color: rgba(11, 16, 32, 0.72);
  margin-top: 4px;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.98),
    0 0 46px rgba(255, 255, 255, 0.78),
    0 0 86px rgba(255, 255, 255, 0.58),
    0 0 130px rgba(255, 255, 255, 0.32);
}

.site-badges .badge {
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(255, 255, 255, 0.96),
    0 0 78px rgba(255, 255, 255, 0.58),
    0 0 130px rgba(255, 255, 255, 0.30);
}
.site-badges {
  display: flex;
  gap: 6px;
}
.badge {
  font-size: 11px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.badge--btn {
  cursor: pointer;
}
.badge--btn:active {
  transform: translateY(1px);
}

/* DS-like main menu row */
.ds-nav {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  outline: 1px solid rgba(11, 16, 32, 0.07);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}
.ds-btn::before {
  /* glossy highlight */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%);
  opacity: 0.9;
}
.ds-btn::after {
  /* disable "kiran" shine effect */
  display: none;
}
.ds-btn--cyan {
  background: linear-gradient(180deg, var(--btn-blue-top), var(--btn-blue-bottom));
}
.ds-btn--pink {
  background: linear-gradient(180deg, rgba(255, 44, 166, 0.95), rgba(255, 127, 208, 0.78));
}
.ds-btn--lilac {
  background: linear-gradient(180deg, rgba(179, 136, 255, 0.95), rgba(216, 199, 255, 0.78));
}
.ds-btn--lime {
  background: linear-gradient(180deg, rgba(183, 255, 90, 0.95), rgba(183, 255, 90, 0.7));
  color: #0b1020;
}
.ds-btn--main {
  background: linear-gradient(
    180deg,
    var(--btn-blue-top),
    var(--btn-blue-bottom)
  );
  color: #fff;
}
.ds-btn--mint {
  background: linear-gradient(180deg, rgba(82, 255, 210, 0.95), rgba(0, 191, 255, 0.55));
  color: #0b1020;
}
.ds-btn--orange {
  background: linear-gradient(180deg, rgba(255, 179, 71, 0.95), rgba(255, 123, 172, 0.72));
}

/* notice */
.notice {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--panel);
  display: grid;
  grid-template-columns: 90px 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(11, 16, 32, 0.06);
}
.notice__label {
  font-size: 12px;
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, var(--bar-pink-top), var(--bar-pink-bottom));
  padding: 8px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.85);
}
.notice__body {
  font-size: 12px;
  padding: 8px 10px;
  line-height: 1.5;
}

/* content */
.content {
  margin-top: 14px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
  align-items: stretch;
  margin-top: 12px;
}

/* Equal height columns without stretching buttons:
   let the KV image absorb the extra height. */
.hero__left,
.hero__right {
  min-height: 0;
}
.hero__left {
  display: flex;
  flex-direction: column;
}
.hero__left .hero__img {
  flex: 1 1 auto;
  height: auto;
}
.hero__left .ds-nav {
  flex: 0 0 auto;
}
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__right .quick-links {
  margin-top: 0;
}
.hero__right .astro {
  margin-top: auto;
}

/* simple screen header on sub pages */
.screen-head {
  margin-top: 12px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--ds-border);
  outline: 1px solid var(--ds-border2);
  background: var(--panel2);
}
.screen-head__bar {
  padding: 10px 12px;
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, var(--bar-pink-top), var(--bar-pink-bottom));
  position: relative;
  overflow: hidden;
}
.screen-head__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%);
  opacity: 0.65;
}
.screen-head__body {
  padding: 12px;
  font-size: 12px;
  line-height: 1.7;
}
.screen-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tile {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(120px 90px at 20% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, rgba(0, 191, 255, 0.12), rgba(255, 255, 255, 0) 55%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 10px;
  font-size: 12px;
  min-height: 86px;
}
.tile__title {
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 800;
  color: var(--ink);
}
.tile__meta {
  margin-top: 6px;
  color: rgba(11, 16, 32, 0.72);
}

input,
select,
textarea {
  font: inherit;
  color: var(--ink);
  border-radius: 14px;
  border: 1px solid var(--ds-border);
  outline: 1px solid rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(120px 80px at 20% 10%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 65%),
    rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 191, 255, 0.35);
}
.hero__img {
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(160px 120px at 20% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, rgba(0, 191, 255, 0.26), rgba(179, 136, 255, 0.22), rgba(255, 127, 208, 0.2));
  color: rgba(11, 16, 32, 0.75);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}
.hero__img--kv {
  background: rgba(255, 255, 255, 0.55);
}
.hero__img--kv img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.kv-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.kv-link:focus-visible {
  outline: 3px solid rgba(255, 44, 166, 0.40);
  outline-offset: 3px;
}
.hero__left .ds-nav {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--panel2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(11, 16, 32, 0.06);
}
.info-table th,
.info-table td {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 6px 8px;
  vertical-align: top;
}
.info-table th {
  width: 72px;
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.22), rgba(255, 255, 255, 0));
  text-align: left;
}

.quick-links {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--panel2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(11, 16, 32, 0.06);
}
.quick-links__title {
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(179, 136, 255, 0.22), rgba(255, 255, 255, 0));
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 800;
}
.link-list {
  margin: 0;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1.7;
  list-style: none;
}
.link-list li {
  margin: 0;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
}

.link-list a {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7)),
    linear-gradient(90deg, rgba(255, 44, 166, 0.12), rgba(0, 191, 255, 0.12));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.quick-links .link-list li {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
}
.quick-links .link-list a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.quick-links .link-desc {
  color: rgba(11, 16, 32, 0.75);
  white-space: nowrap;
}
.link-desc {
  color: rgba(11, 16, 32, 0.75);
}

/* horoscope / zodiac ranking (Top 3) */
.astro {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--panel2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(11, 16, 32, 0.06);
}
.astro__title {
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(
    180deg,
    rgba(0, 191, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
}
.astro__list {
  margin: 0;
  padding: 10px 12px 6px;
  list-style: none;
  display: grid;
  gap: 6px;
  font-family: "DotGothic16", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(11, 16, 32, 0.86);
}
.astro__lucky {
  margin: 0 12px 8px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px dashed rgba(0, 126, 196, 0.28);
  background:
    radial-gradient(120px 70px at 20% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%),
    rgba(255, 255, 255, 0.66);
  font-family: "DotGothic16", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(11, 16, 32, 0.72);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.85);
}
.astro__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: baseline;
  column-gap: 10px;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(120px 60px at 18% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%),
    linear-gradient(90deg, rgba(0, 191, 255, 0.10), rgba(255, 127, 208, 0.06)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.astro__rank {
  color: rgba(0, 126, 196, 0.92);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.65);
}
.astro__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.astro__pts {
  color: rgba(11, 16, 32, 0.72);
  letter-spacing: 0.02em;
}
.astro__item--loading,
.astro__item--error {
  grid-template-columns: 1fr;
  color: rgba(11, 16, 32, 0.68);
}
.link-list a::before {
  content: attr(data-ico);
  display: inline-block;
  margin-right: 6px;
  color: rgba(11, 16, 32, 0.7);
  text-shadow: 0 0 12px rgba(255, 44, 166, 0.25);
}
.link-list a::after {
  /* disable "kiran" shine effect */
  display: none;
}

.rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  margin: 16px 0;
}
.block {
  margin: 0 0 12px;
}
.sub-sections {
  margin-top: 12px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(160px 120px at 16% 14%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%),
    rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(11, 16, 32, 0.05);
}
.block--sub {
  margin: 0 0 10px;
}
.block--sub:last-child {
  margin-bottom: 0;
}
.block--sub .block__title {
  font-size: 13px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 44, 166, 0.54),
    rgba(255, 127, 208, 0.42)
  );
}
.block--sub .block__body {
  border-radius: 0 0 16px 16px;
}
.block__title {
  margin: 0;
  font-size: 14px;
  padding: 6px 8px;
  background:
    linear-gradient(180deg, var(--bar-pink-top), var(--bar-pink-bottom));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px 18px 0 0;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  font-family: "M PLUS Rounded 1c", "DotGothic16", sans-serif;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.block__title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%);
  opacity: 0.65;
}
.block__body {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-top: 0;
  padding: 10px 10px;
  font-size: 12px;
  line-height: 1.7;
  background:
    radial-gradient(160px 120px at 18% 18%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%),
    linear-gradient(135deg, rgba(0, 191, 255, 0.14), rgba(179, 136, 255, 0.12), rgba(255, 127, 208, 0.10)),
    rgba(255, 255, 255, 0.82);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(11, 16, 32, 0.06);
}

/* PHOTO (Pinterest-like) */
.pin-board {
  column-count: 3;
  column-gap: 14px;
}
.pin {
  display: block;
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  transform: translateZ(0);
}
.pin img {
  display: block;
  width: 100%;
  height: auto;
}
.pin:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
}
.pin--focus {
  box-shadow:
    0 0 0 3px rgba(255, 44, 166, 0.35),
    0 28px 70px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.pin-note {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(11, 16, 32, 0.62);
}

@media (max-width: 820px) {
  .pin-board {
    column-count: 2;
  }
}

/* responsive */
@media (max-width: 820px) {
  .page {
    width: auto;
    padding: 14px 12px 24px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .ds-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

/* ticker (marquee-like) */
.ticker {
  margin-top: 14px;
  overflow: hidden; /* keep it "wild" but clipped */
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.ticker__track {
  overflow: hidden;
  white-space: nowrap;
  /* fade edges so it feels like stray digital text */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 6px 2px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.10em;
  color: rgba(0, 126, 196, 0.92);
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.98),
    0 0 46px rgba(255, 255, 255, 0.80),
    0 0 88px rgba(255, 255, 255, 0.42);
  animation: tickerMove 18s linear infinite;
  will-change: transform;
}
.ticker__content span {
  display: inline-block;
}
@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* footer */
.site-footer {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: #444;
}

@media (prefers-reduced-motion: reduce) {
  .ticker__content {
    animation: none;
  }
}
.site-footer__mini {
  font-weight: 700;
  color: #111;
}
.site-footer__copy {
  margin-top: 4px;
}
