:root {
  --l61-bg: #090512;
  --l61-bg-soft: #120823;
  --l61-surface: #170c2b;
  --l61-surface-2: #21103a;
  --l61-card: rgba(35, 18, 61, 0.82);
  --l61-card-solid: #201038;
  --l61-text: #fff9ef;
  --l61-muted: #c7bad4;
  --l61-purple: #8b5cf6;
  --l61-purple-dark: #5725b5;
  --l61-saffron: #ff9d1c;
  --l61-gold: #f6c85f;
  --l61-peacock: #18b7a5;
  --l61-rose: #e94b91;
  --l61-red: #ff5f70;
  --l61-green: #27d4a6;
  --l61-violet: #a879ff;
  --l61-border: rgba(246, 200, 95, 0.22);
  --l61-border-soft: rgba(255, 255, 255, 0.1);
  --l61-focus: #7ee7ff;
  --l61-shadow: 0 24px 70px rgba(2, 0, 8, 0.4);
  --l61-shadow-soft: 0 12px 36px rgba(3, 0, 10, 0.28);
  --l61-radius: 24px;
  --l61-radius-sm: 15px;
  --l61-container: 1220px;
  --l61-header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--l61-bg);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 4%, rgba(139, 92, 246, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(255, 157, 28, 0.13), transparent 24rem),
    linear-gradient(180deg, #090512 0%, #110720 46%, #090512 100%);
  color: var(--l61-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.l61-lang-hi {
  font-family: "Noto Sans Devanagari", "Noto Sans", system-ui, sans-serif;
  line-height: 1.9;
}

html.l61-menu-locked,
body.l61-menu-locked { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--l61-focus);
  outline-offset: 4px;
}

.l61-container {
  width: min(100% - 40px, var(--l61-container));
  margin-inline: auto;
  min-width: 0;
}

.l61-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
}
.l61-skip-link:focus { transform: translateY(0); }

.l61-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--l61-header-height);
  border-bottom: 1px solid rgba(246, 200, 95, 0.15);
  background: rgba(9, 5, 18, 0.88);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.l61-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 50% 160%, transparent 0 17px, rgba(246, 200, 95, 0.2) 18px 19px, transparent 20px),
    radial-gradient(circle at 50% -60%, transparent 0 17px, rgba(139, 92, 246, 0.25) 18px 19px, transparent 20px);
  background-size: 42px 42px;
}

.l61-header-shell {
  position: relative;
  width: min(100% - 32px, 1380px);
  min-height: var(--l61-header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.l61-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--l61-text);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}
.l61-brand img { width: 66px; height: 66px; object-fit: contain; }
.l61-brand span {
  background: linear-gradient(90deg, #fff9ef, #f6c85f 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.l61-nav { min-width: 0; }
.l61-nav__list,
.l61-nav__submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l61-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.6vw, 12px);
}
.l61-nav__list > li { position: relative; min-width: 0; }
.l61-nav__list > li > a,
.l61-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #e8dfef;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: normal;
}
.l61-nav__list > li > a:hover,
.l61-nav__list > li > a[aria-current="page"],
.l61-nav__group.is-current > .l61-nav__toggle,
.l61-nav__group.is-open > .l61-nav__toggle {
  border-color: rgba(246, 200, 95, 0.28);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 157, 28, 0.1));
  color: #fff;
}
.l61-nav__toggle span { transition: transform 0.2s ease; }
.l61-nav__group.is-open > .l61-nav__toggle span { transform: rotate(180deg); }

.l61-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  width: 230px;
  padding: 10px;
  border: 1px solid var(--l61-border);
  border-radius: 18px;
  background: rgba(22, 10, 39, 0.98);
  box-shadow: var(--l61-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.l61-nav__submenu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--l61-border);
  border-left: 1px solid var(--l61-border);
  background: #160a27;
  transform: rotate(45deg);
}
.l61-nav__group.is-open > .l61-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.l61-nav__submenu li + li { margin-top: 3px; }
.l61-nav__submenu a {
  display: flex;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--l61-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.l61-nav__submenu a:hover,
.l61-nav__submenu a[aria-current="page"] { background: rgba(139, 92, 246, 0.19); color: #fff; }

.l61-header-actions { display: flex; align-items: center; gap: 10px; }
.l61-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(24, 183, 165, 0.38);
  border-radius: 999px;
  background: rgba(24, 183, 165, 0.1);
  color: #d9fff8;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}
.l61-language:hover { background: rgba(24, 183, 165, 0.18); }

.l61-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 11px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.l61-button--primary {
  background: linear-gradient(135deg, var(--l61-gold), var(--l61-saffron) 58%, #ff7138);
  box-shadow: 0 12px 25px rgba(255, 141, 28, 0.25), inset 0 1px rgba(255, 255, 255, 0.35);
  color: #1f0d05;
}
.l61-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.l61-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--l61-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.l61-menu-button span { display: block; height: 2px; border-radius: 2px; background: #fff; }
.l61-menu-button span + span { margin-top: 6px; }

.l61-drawer,
.l61-overlay { display: none; }

.l61-main { position: relative; min-width: 0; }
.l61-eyebrow {
  margin: 0 0 10px;
  color: var(--l61-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.l61-lang-hi .l61-eyebrow { letter-spacing: 0.04em; }

h1, h2, h3, h4 { margin-top: 0; color: var(--l61-text); line-height: 1.18; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.3rem, 5vw, 5.2rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.8rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.l61-lang-hi h1, .l61-lang-hi h2, .l61-lang-hi h3 { letter-spacing: -0.015em; line-height: 1.3; }
p { margin: 0 0 1.1em; color: var(--l61-muted); }

.l61-breadcrumb { padding-top: 26px; }
.l61-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; font-size: 0.84rem; }
.l61-breadcrumb li { display: flex; align-items: center; gap: 7px; color: #a99ab8; }
.l61-breadcrumb li:not(:last-child)::after { content: "›"; color: var(--l61-gold); }
.l61-breadcrumb a { color: #dfd5e7; text-decoration: none; }

.l61-page { padding-bottom: 92px; }
.l61-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: 520px;
  padding: 64px clamp(22px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid var(--l61-border);
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(circle at 80% 25%, rgba(139, 92, 246, 0.24), transparent 32%),
    radial-gradient(circle at 13% 90%, rgba(24, 183, 165, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(33, 16, 58, 0.96), rgba(13, 7, 25, 0.94));
  box-shadow: var(--l61-shadow);
}
.l61-page-hero::before,
.l61-home-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -135px;
  top: -145px;
  border: 1px solid rgba(246, 200, 95, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(139, 92, 246, 0.04), 0 0 0 58px rgba(246, 200, 95, 0.035);
  pointer-events: none;
}
.l61-page-hero__copy,
.l61-page-hero__media { position: relative; z-index: 1; min-width: 0; }
.l61-page-hero h1 { margin-bottom: 22px; font-size: clamp(2.4rem, 5.1vw, 4.9rem); }
.l61-page-hero__lead { max-width: 730px; color: #dacfe4; font-size: clamp(1.03rem, 1.5vw, 1.22rem); }
.l61-page-hero--text { grid-template-columns: minmax(0, 920px); min-height: 410px; }
.l61-page-hero--text .l61-page-hero__copy { max-width: 920px; }
.l61-page-hero__cta { margin-top: 8px; }
.l61-page-hero__media {
  padding: 14px;
  border: 1px solid rgba(246, 200, 95, 0.25);
  border-radius: 28px 28px 70px 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.025));
  box-shadow: 0 26px 70px rgba(0,0,0,0.35);
}
.l61-page-hero__media img { width: 100%; border-radius: 18px 18px 58px 18px; object-fit: cover; }

.l61-independent-notice {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  width: min(100% - 34px, 1050px);
  margin: -28px auto 58px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 157, 28, 0.38);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(64, 29, 19, 0.96), rgba(32, 15, 43, 0.96));
  box-shadow: var(--l61-shadow-soft);
}
.l61-independent-notice__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--l61-gold), var(--l61-saffron));
  color: #231006;
  font-weight: 950;
}
.l61-independent-notice strong { display: block; margin-bottom: 3px; color: #ffe9b4; }
.l61-independent-notice p { margin: 0; color: #e8d7ce; }

.l61-content-stack { display: grid; gap: 30px; }
.l61-section {
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding: clamp(25px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--l61-border-soft);
  border-radius: var(--l61-radius);
  background: var(--l61-card);
  box-shadow: var(--l61-shadow-soft);
}
.l61-section__content { position: relative; z-index: 1; min-width: 0; max-width: 900px; }
.l61-section__content > p:last-child { margin-bottom: 0; }
.l61-section__marker {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(246, 200, 95, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(139, 92, 246, 0.035), 0 0 0 38px rgba(24, 183, 165, 0.025);
}
.l61-section--feature { background: linear-gradient(135deg, rgba(83, 35, 145, 0.42), rgba(25, 13, 44, 0.92)); }
.l61-section--panel { margin-left: clamp(0px, 5vw, 74px); background: linear-gradient(135deg, rgba(18, 79, 76, 0.25), rgba(27, 13, 48, 0.94)); }
.l61-section--plain { margin-right: clamp(0px, 5vw, 74px); }
.l61-section h2 { margin-bottom: 20px; }
.l61-check-list { display: grid; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.l61-check-list li { position: relative; padding-left: 31px; color: #e5dce9; }
.l61-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(24, 183, 165, 0.16);
  color: #63f4dc;
  font-size: 0.72rem;
  font-weight: 900;
}

.l61-responsible-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 95, 112, 0.28);
  border-radius: var(--l61-radius);
  background: linear-gradient(135deg, rgba(92, 21, 48, 0.33), rgba(25, 12, 43, 0.95));
}
.l61-responsible-card__mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 3px solid var(--l61-red);
  border-radius: 50%;
  color: #ffdfe4;
  font-size: 1.55rem;
  font-weight: 950;
}
.l61-responsible-card h2 { margin-bottom: 10px; }
.l61-responsible-card p { margin-bottom: 10px; }
.l61-responsible-card a { color: #ffd27c; font-weight: 800; }

.l61-faq { margin-top: 72px; }
.l61-section-heading { max-width: 740px; margin-bottom: 26px; }
.l61-faq__list { display: grid; gap: 12px; }
.l61-faq__item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--l61-border-soft);
  border-radius: 17px;
  background: rgba(31, 15, 54, 0.86);
}
.l61-faq__item[open] { border-color: rgba(246, 200, 95, 0.32); background: rgba(42, 20, 71, 0.92); }
.l61-faq__item summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.l61-faq__item summary::-webkit-details-marker { display: none; }
.l61-faq__item summary span:last-child { color: var(--l61-gold); font-size: 1.3rem; transition: transform 0.2s ease; }
.l61-faq__item[open] summary span:last-child { transform: rotate(45deg); }
.l61-faq__item > div { padding: 0 22px 20px; }
.l61-faq__item p { margin: 0; }

.l61-related { margin-top: 72px; }
.l61-related__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.l61-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--l61-border-soft);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: #f5edf8;
  font-weight: 800;
  text-decoration: none;
}
.l61-related__link span:first-child { min-width: 0; overflow-wrap: anywhere; }
.l61-related__link span:last-child { color: var(--l61-gold); }

/* Homepage */
.l61-home { padding-bottom: 100px; }
.l61-home-hero {
  position: relative;
  min-height: 720px;
  padding: clamp(60px, 8vw, 112px) 0 82px;
  overflow: hidden;
}
.l61-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(246,200,95,.5) 0 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.l61-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(35px, 7vw, 90px);
  align-items: center;
}
.l61-home-hero__copy { min-width: 0; }
.l61-home-hero h1 {
  margin-bottom: 25px;
  background: linear-gradient(112deg, #fff 10%, #ffe5a4 48%, #ff9d1c 78%, #e94b91);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.l61-home-hero__lead { max-width: 720px; color: #dfd2e8; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.l61-home-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.l61-home-hero__media {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(246, 200, 95, 0.34);
  border-radius: 48px 48px 110px 48px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025));
  box-shadow: 0 35px 90px rgba(0,0,0,.46), 0 0 60px rgba(139,92,246,.18);
  transform: rotate(1.5deg);
}
.l61-home-hero__media::before {
  content: "61";
  position: absolute;
  z-index: 2;
  left: -26px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc85d, #ff7a1b 55%, #a62aff);
  box-shadow: 0 18px 38px rgba(0,0,0,.35);
  color: #210b19;
  font-size: 1.7rem;
  font-weight: 950;
}
.l61-home-hero__media img { width: 100%; border-radius: 36px 36px 96px 36px; }
.l61-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.l61-hero-badges span { padding: 7px 11px; border: 1px solid var(--l61-border-soft); border-radius: 999px; background: rgba(255,255,255,.04); color: #d7cce1; font-size: .8rem; font-weight: 700; }

.l61-home-notice { margin-top: -36px; }
.l61-home-section { padding: 78px 0; }
.l61-home-section--tinted {
  border-block: 1px solid rgba(246,200,95,.1);
  background: linear-gradient(180deg, rgba(38,17,65,.34), rgba(11,6,20,.08));
}
.l61-home-intro { display: grid; grid-template-columns: .78fr 1.22fr; gap: 56px; align-items: start; }
.l61-home-intro__aside { position: sticky; top: 112px; }
.l61-home-intro__aside p:last-child { margin: 0; }
.l61-home-intro__body p { font-size: 1.03rem; }

.l61-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.l61-bento-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--l61-border-soft);
  border-radius: var(--l61-radius);
  background: linear-gradient(145deg, rgba(45,20,75,.92), rgba(23,11,40,.96));
  box-shadow: var(--l61-shadow-soft);
}
.l61-bento-card--wide { grid-column: span 7; }
.l61-bento-card--tall { grid-column: span 5; grid-row: span 2; }
.l61-bento-card--accent { background: linear-gradient(145deg, rgba(97,43,31,.82), rgba(40,16,52,.96)); border-color: rgba(255,157,28,.3); }
.l61-bento-card--peacock { background: linear-gradient(145deg, rgba(7,74,70,.62), rgba(30,15,52,.95)); border-color: rgba(24,183,165,.3); }
.l61-bento-card::after { content: ""; position: absolute; right: -38px; bottom: -48px; width: 150px; height: 150px; border: 1px solid rgba(246,200,95,.16); border-radius: 50%; box-shadow: 0 0 0 18px rgba(139,92,246,.04); }
.l61-bento-card > * { position: relative; z-index: 1; }
.l61-bento-card h3 { margin-bottom: 13px; }
.l61-bento-card p { margin-bottom: 18px; }
.l61-bento-card a { color: #ffd779; font-weight: 850; }
.l61-bento-card__number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px; border-radius: 13px; background: linear-gradient(145deg, var(--l61-purple), var(--l61-rose)); color: #fff; font-weight: 950; }

.l61-feature-split { display: grid; grid-template-columns: minmax(300px,.86fr) minmax(0,1.14fr); gap: clamp(32px,6vw,80px); align-items: center; }
.l61-feature-split--reverse { grid-template-columns: minmax(0,1.14fr) minmax(300px,.86fr); }
.l61-feature-split--reverse .l61-feature-split__media { order: 2; }
.l61-feature-split__media { min-width: 0; padding: 13px; border: 1px solid var(--l61-border); border-radius: 28px; background: rgba(255,255,255,.055); box-shadow: var(--l61-shadow); }
.l61-feature-split__media img { width: 100%; border-radius: 19px; object-fit: cover; }
.l61-feature-split__copy { min-width: 0; }
.l61-feature-split__copy p { font-size: 1.02rem; }
.l61-inline-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.l61-inline-links a { padding: 9px 13px; border: 1px solid var(--l61-border-soft); border-radius: 12px; background: rgba(255,255,255,.05); color: #fff; font-size: .87rem; font-weight: 800; text-decoration: none; }

.l61-prediction-links { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 15px; margin-top: 30px; }
.l61-prediction-link { position: relative; min-width: 0; padding: 22px; overflow: hidden; border: 1px solid rgba(246,200,95,.2); border-radius: 20px; background: rgba(255,255,255,.045); text-decoration: none; }
.l61-prediction-link strong { display: block; margin-bottom: 4px; color: #fff; font-size: 1.25rem; }
.l61-prediction-link span { color: var(--l61-muted); font-size: .86rem; }
.l61-prediction-link::after { content: "→"; position: absolute; right: 17px; top: 17px; color: var(--l61-gold); }

.l61-practical-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.l61-practical-card { min-width: 0; padding: 28px; border: 1px solid var(--l61-border-soft); border-radius: 20px; background: rgba(255,255,255,.045); }

.l61-table-scroll { max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 15px; border-bottom: 1px solid var(--l61-border-soft); text-align: left; vertical-align: top; }
th { color: #ffe2a0; font-size: .83rem; text-transform: uppercase; letter-spacing: .06em; }
td { color: #ddd2e5; }

/* Fallback, search and 404 */
.l61-fallback { min-height: 60vh; padding: 70px 0 100px; }
.l61-fallback__card { max-width: 920px; padding: clamp(28px,5vw,60px); border: 1px solid var(--l61-border); border-radius: 32px; background: var(--l61-card); box-shadow: var(--l61-shadow); }
.l61-search-form { display: grid; gap: 10px; margin: 0 0 36px; padding: 24px; border: 1px solid var(--l61-border-soft); border-radius: 20px; background: rgba(255,255,255,.04); }
.l61-search-form label { color: #fff0c8; font-weight: 800; }
.l61-search-form > div { display: flex; gap: 10px; min-width: 0; }
.l61-search-form input[type="search"] { width: 100%; min-height: 50px; padding: 11px 15px; border: 1px solid var(--l61-border-soft); border-radius: 13px; background: rgba(255,255,255,.06); color: #fff; }
.l61-search-results { display: grid; gap: 16px; margin-top: 32px; }
.l61-search-result { padding: 24px; border: 1px solid var(--l61-border-soft); border-radius: 18px; background: rgba(255,255,255,.04); }
.l61-search-result h2 { font-size: 1.35rem; }

/* Footer */
.l61-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(246,200,95,.18);
  background:
    radial-gradient(circle at 12% 15%, rgba(139,92,246,.19), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(24,183,165,.12), transparent 24rem),
    #06030d;
}
.l61-footer__glow { position: absolute; top: -180px; left: calc(50% - 180px); width: 360px; height: 360px; border: 1px solid rgba(246,200,95,.12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(139,92,246,.025), 0 0 0 84px rgba(246,200,95,.02); }
.l61-footer .l61-container { position: relative; z-index: 1; }
.l61-footer-notices { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-bottom: 60px; overflow: hidden; border: 1px solid var(--l61-border-soft); border-radius: 0 0 22px 22px; background: var(--l61-border-soft); }
.l61-footer-notices > div { display: flex; align-items: center; gap: 11px; min-width: 0; padding: 16px 18px; background: rgba(18,8,32,.97); }
.l61-footer-notices strong { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,157,28,.13); color: var(--l61-gold); font-size: .78rem; }
.l61-footer-notices span { min-width: 0; color: #e7dde9; font-size: .82rem; font-weight: 750; overflow-wrap: anywhere; }
.l61-footer-grid { display: grid; grid-template-columns: minmax(260px,1.7fr) repeat(4,minmax(140px,1fr)); gap: clamp(24px,3vw,42px); padding-bottom: 54px; }
.l61-brand--footer img { width: 82px; height: 82px; }
.l61-footer-brand p { max-width: 390px; font-size: .9rem; }
.l61-footer-brand__official { color: #ffe1a4; font-weight: 750; }
.l61-language--footer { margin-top: 8px; }
.l61-footer-nav { min-width: 0; }
.l61-footer-nav h2 { margin-bottom: 18px; color: #fff0c8; font-size: .95rem; letter-spacing: 0; }
.l61-footer-nav ul { margin: 0; padding: 0; list-style: none; }
.l61-footer-nav li + li { margin-top: 8px; }
.l61-footer-nav a { color: #bfb1c9; font-size: .85rem; text-decoration: none; overflow-wrap: anywhere; }
.l61-footer-nav a:hover { color: #fff; }
.l61-footer-nav p { margin-top: 16px; color: #a997b6; font-size: .76rem; line-height: 1.6; }
.l61-footer-responsible { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 20px; align-items: center; padding: 26px; border: 1px solid rgba(255,95,112,.24); border-radius: 22px; background: linear-gradient(135deg, rgba(87,22,43,.35), rgba(27,12,43,.88)); }
.l61-footer-responsible__badge { display: grid; place-items: center; width: 68px; height: 68px; border: 2px solid var(--l61-red); border-radius: 50%; color: #ffdbe1; font-weight: 950; }
.l61-footer-responsible h2 { margin-bottom: 8px; font-size: 1.2rem; }
.l61-footer-responsible p { margin: 0; font-size: .88rem; }
.l61-footer-bottom { margin-top: 36px; padding: 24px 0; border-top: 1px solid var(--l61-border-soft); }
.l61-footer-bottom p { margin: 0; color: #9f91aa; font-size: .8rem; text-align: center; }

@media (hover: hover) and (pointer: fine) {
  .l61-button:hover { transform: translateY(-2px); filter: saturate(1.08); box-shadow: 0 17px 34px rgba(255,141,28,.3); }
  .l61-bento-card, .l61-related__link, .l61-prediction-link { transition: transform .2s ease, border-color .2s ease, background .2s ease; }
  .l61-bento-card:hover, .l61-related__link:hover, .l61-prediction-link:hover { transform: translateY(-4px); border-color: rgba(246,200,95,.36); }
  .l61-nav__group:hover > .l61-nav__submenu,
  .l61-nav__group:focus-within > .l61-nav__submenu { opacity: 1; visibility: visible; transform: translate(-50%,0); }
}

@media (max-width: 1240px) {
  .l61-header-shell { gap: 12px; width: min(100% - 22px, 1380px); }
  .l61-brand span { display: none; }
  .l61-brand img { width: 60px; height: 60px; }
  .l61-nav__list > li > a, .l61-nav__toggle { padding-inline: 7px; font-size: .8rem; }
  .l61-desktop-cta .l61-button { padding-inline: 14px; font-size: .84rem; }
}

@media (max-width: 1024px) {
  :root { --l61-header-height: 72px; }
  .l61-header-shell { grid-template-columns: minmax(0,1fr) auto; min-height: var(--l61-header-height); }
  .l61-nav--desktop, .l61-desktop-cta { display: none; }
  .l61-brand span { display: inline; }
  .l61-menu-button { display: block; }
  .l61-drawer {
    display: flex;
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    width: min(94vw, 420px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 20px max(20px,env(safe-area-inset-right)) max(18px,env(safe-area-inset-bottom)) max(20px,env(safe-area-inset-left));
    flex-direction: column;
    overflow: hidden;
    overscroll-behavior: contain;
    border-left: 1px solid var(--l61-border);
    background: linear-gradient(160deg,#1d0d33,#090512 70%);
    box-shadow: -25px 0 70px rgba(0,0,0,.5);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .24s ease, visibility .24s;
  }
  .l61-drawer[aria-hidden="true"] { pointer-events: none; }
  .l61-drawer.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .l61-overlay { display: block; position: fixed; z-index: 1001; inset: 0; background: rgba(3,1,8,.7); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; }
  .l61-overlay.is-open { opacity: 1; visibility: visible; }
  body.admin-bar .l61-site-header { top: 32px; }
  body.admin-bar .l61-drawer { top: 32px; height: calc(100vh - 32px); height: calc(100dvh - 32px); }
  body.admin-bar .l61-overlay { top: 32px; }
  .l61-drawer__top { display: flex; flex: 0 0 auto; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--l61-border-soft); }
  .l61-drawer__top strong { color: #ffe3a3; }
  .l61-drawer__close { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--l61-border-soft); border-radius: 13px; background: rgba(255,255,255,.06); font-size: 1.6rem; cursor: pointer; }
  .l61-nav--mobile { flex: 1 1 auto; min-height: 0; padding-right: 4px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(246,200,95,.38) transparent; touch-action: pan-y; -webkit-overflow-scrolling: touch; }
  .l61-nav--mobile .l61-nav__list { display: grid; gap: 5px; }
  .l61-nav--mobile .l61-nav__list > li > a, .l61-nav--mobile .l61-nav__toggle { width: 100%; justify-content: space-between; min-height: 48px; padding: 11px 13px; text-align: left; font-size: .96rem; }
  .l61-nav--mobile .l61-nav__submenu { position: static; width: 100%; max-height: 0; padding: 0 0 0 12px; overflow: hidden; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height .25s ease, padding .25s ease; }
  .l61-nav--mobile .l61-nav__submenu::before { display: none; }
  .l61-nav--mobile .l61-nav__group.is-open > .l61-nav__submenu { max-height: 330px; padding-top: 7px; padding-bottom: 8px; transform: none; }
  .l61-nav--mobile .l61-nav__submenu a { padding: 10px 13px; }
  .l61-drawer__cta { flex: 0 0 auto; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--l61-border-soft); }
  .l61-drawer__cta .l61-button { width: 100%; }
  .l61-drawer__note { flex: 0 0 auto; margin: 10px 0 0; color: #a899b4; font-size: .76rem; line-height: 1.55; text-align: center; }
  .l61-page-hero, .l61-home-hero__grid { grid-template-columns: 1fr; }
  .l61-page-hero { min-height: 0; }
  .l61-home-hero__media { width: min(100%,680px); margin-inline: auto; transform: none; }
  .l61-home-intro { grid-template-columns: 1fr; gap: 24px; }
  .l61-home-intro__aside { position: static; }
  .l61-bento-card { grid-column: span 6; }
  .l61-bento-card--wide, .l61-bento-card--tall { grid-column: span 6; grid-row: auto; }
  .l61-prediction-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .l61-footer-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .l61-footer-brand { grid-column: span 3; }
}

@media screen and (max-width: 782px) {
  body.admin-bar .l61-site-header { top: 46px; }
  body.admin-bar .l61-drawer { top: 46px; height: calc(100vh - 46px); height: calc(100dvh - 46px); }
  body.admin-bar .l61-overlay { top: 46px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .l61-container { width: min(100% - 28px,var(--l61-container)); }
  .l61-home-hero { min-height: 0; padding-top: 55px; }
  .l61-page-hero { padding: 46px 24px 58px; border-radius: 0 0 28px 28px; }
  .l61-page-hero__media { width: 100%; }
  .l61-independent-notice { width: min(100% - 16px,1050px); }
  .l61-section--panel, .l61-section--plain { margin-inline: 0; }
  .l61-related__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .l61-feature-split, .l61-feature-split--reverse { grid-template-columns: 1fr; }
  .l61-feature-split--reverse .l61-feature-split__media { order: 0; }
  .l61-footer-notices { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .l61-footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .l61-footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .l61-header-shell { width: min(100% - 18px,1380px); gap: 7px; }
  .l61-brand img { width: 54px; height: 54px; }
  .l61-brand span { font-size: .9rem; }
  .l61-header-actions { gap: 7px; }
  .l61-language--header { min-height: 40px; padding: 7px 10px; font-size: .78rem; }
  .l61-menu-button { width: 42px; height: 42px; padding: 10px; }
  h1 { font-size: clamp(2.15rem,11vw,3.25rem); }
  h2 { font-size: clamp(1.55rem,8vw,2.1rem); }
  .l61-page { padding-bottom: 70px; }
  .l61-page-hero { gap: 26px; padding-inline: 20px; }
  .l61-page-hero h1 { font-size: clamp(2.08rem,10vw,3.2rem); }
  .l61-page-hero__media { padding: 9px; border-radius: 22px 22px 45px 22px; }
  .l61-page-hero__media img { border-radius: 15px 15px 38px 15px; }
  .l61-independent-notice { grid-template-columns: 1fr; margin-bottom: 42px; }
  .l61-content-stack { gap: 18px; }
  .l61-section { padding: 25px 21px; border-radius: 20px; }
  .l61-responsible-card, .l61-footer-responsible { grid-template-columns: 1fr; }
  .l61-responsible-card__mark { width: 68px; height: 68px; }
  .l61-related__grid, .l61-practical-grid { grid-template-columns: 1fr; }
  .l61-home-section { padding: 58px 0; }
  .l61-home-hero__actions { display: grid; }
  .l61-home-hero__actions .l61-button { width: 100%; }
  .l61-home-hero__media { padding: 9px; border-radius: 28px 28px 64px 28px; }
  .l61-home-hero__media img { border-radius: 21px 21px 57px 21px; }
  .l61-home-hero__media::before { left: -7px; bottom: 14px; width: 65px; height: 65px; font-size: 1.2rem; }
  .l61-bento-grid { grid-template-columns: 1fr; }
  .l61-bento-card, .l61-bento-card--wide, .l61-bento-card--tall { grid-column: auto; min-height: 0; padding: 23px; }
  .l61-prediction-links { grid-template-columns: 1fr; }
  .l61-footer-notices, .l61-footer-grid { grid-template-columns: 1fr; }
  .l61-footer-brand { grid-column: auto; }
  .l61-footer-nav { padding-top: 4px; }
  .l61-search-form > div { flex-direction: column; }
  .l61-search-form .l61-button { width: 100%; }
}

@media (max-width: 380px) {
  .l61-brand span { display: none; }
  .l61-language--header { font-size: .74rem; padding-inline: 8px; }
  .l61-container { width: min(100% - 22px,var(--l61-container)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .l61-home-hero__media { transform: none; }
}
