Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Join the Playtest on Steam Now: SpiritVale

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Tags: Mobile edit Mobile web edit
 
(63 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* ============================================================
/* SpiritVale Wiki — Common.css */
  SpiritVale Wiki – Site CSS
/* Role: shared tokens, primitives, utilities, and interactive anatomy */
   ============================================================
/* Scope: sitewide SpiritVale UI foundations only */
   Split into two safe zones:
/* -------------------------------------------------------------------------- */
/* Canonical ownership map                                                    */
/* -------------------------------------------------------------------------- */
/* Common.css is the sitewide foundation layer. It owns:                      */
/* - canonical breakpoint definitions and responsive policy comments          */
/* - shared design tokens and utility primitives                              */
/* - reusable interactive anatomy used by multiple modules/templates          */
/* - global parser-output treatments that should behave the same everywhere   */
/*                                                                            */
/* Common.css does NOT own:                                                    */
/* - Citizen skin theme/chrome styling (Citizen.css)                          */
/* - module-specific card/layout rules (GameInfo, PatchHighlights, etc.)      */
/* - template-specific presentation rules (Definitions, ClassInfobox, etc.)  */
/*                                                                            */
/* Responsive cleanup note: this file is the source of truth for breakpoint   */
/* meaning. Its own responsive selectors should model the canonical ladder    */
/* and shared UI should follow that ladder everywhere else.                    */
/* -------------------------------------------------------------------------- */
/* Responsive policy (canonical)                                              */
/* -------------------------------------------------------------------------- */
/* SpiritVale uses a mobile-first six-viewpoint ladder aligned to Tailwind's  */
/* defaults.                                                                  */
/*                                                                            */
/* Viewpoints                                                                  */
/* - default: 0px-639px  (phones / smallest layout)                          */
/* - sm:      640px-767px (large phones / small tablets)                      */
/* - md:      768px-1023px(tablets / narrow landscape)                        */
/* - lg:      1024px-1279px(laptop / desktop start)                            */
/* - xl:      1280px-1535px(wide desktop)                                      */
/* - 2xl:    1536px+      (very wide desktop)                                */
/*                                                                            */
/* Implementation rule: write defaults for the smallest layout whenever        */
/* practical, then layer upward with canonical breakpoints.                    */
/* -------------------------------------------------------------------------- */


  1) Global custom additions (HARDENED)
  2) HERO TEMPLATE (Shared Infobox System)
  ========================================================== */


/* ============================================================
/* -------------------------------------------------------------------------- */
  1) Global custom additions (HARDENED)
/* 1) SpiritVale tokens */
  ========================================================== */
/* -------------------------------------------------------------------------- */


.mw-parser-output .playtest-info-box {
:root{
   max-width: 100%;
  /* Surface ladder.
   margin: 0 0 10px 0;
    bg0 = site background only
   border: 1px solid #ccc;
    bg1 = main component surface
   border-radius: 6px;
    bg2 = nested/grouped panel surface
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    bg3 = deep inset / pill surface
   background: #f0f2f8;
    bg4 = highest emphasis / selected / strong highlight surface
   padding: 10px;
  */
   text-align: center;
  --sv-ui-bg0:#0f172a;
   color: #333;
   --sv-ui-bg1:#1f2937;
   overflow-wrap: anywhere;
   --sv-ui-bg2:#273449;
   word-break: break-word;
   --sv-ui-bg3:#2e3f59;
}
   --sv-ui-bg4:#4e6d97;
 
  /* Border / frame ladder. */
   --sv-ui-line1:#3b4b63;
   --sv-ui-line2:#4b6388;
   --sv-ui-line3:#7d93b5;
 
  /* Text ladder. */
   --sv-ui-text1:#f5f9ff;
   --sv-ui-text2:#d7e2f4;
   --sv-ui-text3:#b6c6e0;
   --sv-ui-text4:#7f9fcc;


.mw-parser-output .header-container-outer {
  /* Accent ladder. */
  max-width: 100%;
  --sv-ui-accent:#6aa6ff;
   margin: 1px;
   --sv-ui-accent2:#8cbcff;
  border: 2px solid #372b54;
   --sv-ui-accent3:#e6f0ff;
   border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  background: #f0f2f8;
}


.mw-parser-output .header-container-middle {
  /* Popover tokens. */
  background: #f0f2f8;
  --sv-ui-pop-bg:var(--sv-ui-bg2);
   color: white;
   --sv-ui-pop-line:var(--sv-ui-line2);
   text-align: center;
   --sv-ui-pop-shadow:0 10px 30px rgba(0,0,0,0.35);
  padding: 1px;
  border-radius: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}


.mw-parser-output .header-container-inner {
  /* Radius tokens. */
  background: linear-gradient(180deg, #5a4e7c, #372b54);
  --sv-ui-rad-sm:10px;
  color: white;
   --sv-ui-rad-md:14px;
   text-align: center;
   --sv-ui-rad-lg:18px;
   padding: 1px;
   --sv-ui-rad-pill:999px;
   border-radius: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 300%;
}


.mw-parser-output table.custom-table {
  /* Shared shadow tokens. */
  float: none;
  --sv-ui-shadow1:0 10px 28px rgba(0,0,0,0.40);
  border: 2px solid #372b54;
  border-radius: 10px;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  margin: 1em auto;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  -webkit-user-select: text;
  user-select: text;
}


.mw-parser-output table.custom-table > tbody > tr:nth-child(1) > th {
  /* Shared pill tokens. */
   background: linear-gradient(180deg, #7a6fb0, #5a4e7c);
  --sv-ui-pill-bg:var(--sv-ui-bg3);
   color: white;
   --sv-ui-pill-line:var(--sv-ui-line2);
  text-align: center;
   --sv-ui-pill-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 6px;
   --sv-ui-pill-text:var(--sv-ui-text1);
  font-size: 120%;
  border-top-left-radius: 8px;
   border-top-right-radius: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
}


.mw-parser-output table.custom-table > tbody > tr:nth-child(2) > th {
/* Fallback light skin mapping. */
   text-align: center;
.mw-theme-light{
   padding: 4px;
  --sv-ui-bg0:#1f2937;
   border-bottom: 1px solid #555;
  --sv-ui-bg1:#273449;
}
   --sv-ui-bg2:#2e3f59;
   --sv-ui-bg3:#364a69;
   --sv-ui-bg4:#6888b4;


.mw-parser-output table.custom-table > tbody > tr > td {
  --sv-ui-line1:#4b6388;
  text-align: center;
   --sv-ui-line2:#5f7fb4;
   padding: 4px;
   --sv-ui-line3:#8ea7ca;
   border-bottom: 1px solid #555;
}


.mw-parser-output table.custom-table > tbody > tr.middle-header > th {
  --sv-ui-text1:#f5f9ff;
  background: linear-gradient(180deg, #7a6fb0, #5a4e7c);
   --sv-ui-text2:#d7e2f4;
   color: white;
   --sv-ui-text3:#b6c6e0;
   text-align: center;
   --sv-ui-text4:#8ba8d1;
   padding: 6px;
  font-size: 110%;
}


.citizen-search-trigger {
  --sv-ui-accent:#8cbcff;
   transition: transform 0.15s ease-in-out;
   --sv-ui-accent2:#b0d0ff;
}
   --sv-ui-accent3:#f2f7ff;
.citizen-search-trigger:hover {
   transform: translateY(-2px);
}
}


/* ============================================================
/* -------------------------------------------------------------------------- */
  2) HERO TEMPLATE (Shared Infobox System)
/* 2) Sitewide link treatment */
  ========================================================== */
/* -------------------------------------------------------------------------- */


:root {
.mw-parser-output a{
   --sv-infobox-max: 620px;
   color:var(--color-link, var(--sv-ui-accent));
   --sv-skill-width: 660px;
  text-decoration:underline;
   --sv-passive-width: 540px;
  text-decoration-thickness:2px;
   text-underline-offset:2px;
  text-decoration-skip-ink:auto;
   transition:
    color 120ms ease,
    text-decoration-thickness 120ms ease,
    text-underline-offset 120ms ease;
}


  --sv-module-box-a: #5a4e7c;
.mw-parser-output a:visited{
   --sv-module-box-b: #372b54;
   color:var(--color-visited, var(--sv-ui-accent2));
  --sv-module-box:  #5a4e7c;
}
  --sv-module-gridline: rgba(255, 255, 255, 0.10);


  --sv-modules-band-a: var(--sv-module-box-a);
.mw-parser-output a:hover{
   --sv-modules-band-b: var(--sv-module-box-b);
  text-decoration-thickness:3px;
   text-underline-offset:3px;
}


   /* NEW: pill “navy” treatment */
.mw-parser-output a:focus-visible{
--sv-pill-a: rgba(120, 175, 255, 0.92);
   outline:2px solid var(--sv-ui-accent3);
--sv-pill-b: rgba(70, 140, 255, 0.88);
  outline-offset:2px;
  border-radius:6px;
  box-shadow:0 0 0 3px rgba(230,240,255,0.12);
}
}


table.spiritvale-skill-infobox,
/* -------------------------------------------------------------------------- */
table.spiritvale-passive-infobox {
/* 3) Shared primitives */
  border-collapse: separate;
/* -------------------------------------------------------------------------- */
  border-spacing: 0;
  width: 100%;
  max-width: var(--sv-infobox-max);
  margin: 1.5em auto;


   border-radius: 12px;
.sv-card,
   overflow: hidden;
.mw-parser-output .sv-card{
   border: 1px solid rgba(55, 43, 84, 0.65);
   background:var(--sv-ui-bg1);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
   border:1px solid var(--sv-ui-line1);
   border-radius:var(--sv-ui-rad-md);
   box-shadow:var(--sv-ui-shadow1);
  color:var(--color-base, var(--sv-ui-text2));
}


  font-size: 0.95em;
.sv-card :where(h1,h2,h3,h4,h5,h6,th,summary,.mw-headline),
.mw-parser-output .sv-card :where(h1,h2,h3,h4,h5,h6,th,summary,.mw-headline){
  color:var(--color-emphasized, var(--sv-ui-text1));
}
}


table.spiritvale-skill-infobox > tbody > tr.spiritvale-infobox-main > th,
.sv-tile,
table.spiritvale-skill-infobox > tbody > tr.spiritvale-infobox-main > td,
.mw-parser-output .sv-tile{
table.spiritvale-passive-infobox > tbody > tr.spiritvale-infobox-main > th,
  background:var(--sv-ui-bg2);
table.spiritvale-passive-infobox > tbody > tr.spiritvale-infobox-main > td,
  border:1px solid var(--sv-ui-line2);
table.spiritvale-skill-infobox > tbody > tr.sv-hero-title-row > th,
  border-radius:var(--sv-ui-rad-sm);
table.spiritvale-skill-infobox > tbody > tr.sv-hero-desc-row > td,
  color:var(--color-emphasized, var(--sv-ui-text1));
table.spiritvale-passive-infobox > tbody > tr.sv-hero-title-row > th,
table.spiritvale-passive-infobox > tbody > tr.sv-hero-desc-row > td {
  background: linear-gradient(135deg, #7a6fb0, #372b54);
  color: #fff;
  padding: 0.9em 1.1em;
  text-align: center;
  vertical-align: middle;
}
}


table.spiritvale-skill-infobox > tbody > tr,
.sv-pill,
table.spiritvale-passive-infobox > tbody > tr {
.mw-parser-output .sv-pill{
   border-bottom: 1px solid rgba(148, 163, 184, 0.40);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.18em 0.40em;
   border-radius:var(--sv-ui-rad-sm);
  background:var(--sv-ui-pill-bg);
  border:1px solid var(--sv-ui-pill-line);
  box-shadow:var(--sv-ui-pill-shadow);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00));
  color:var(--sv-ui-pill-text);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.03em;
  font-size:0.72em;
  line-height:1.15;
  white-space:nowrap;
}
}
table.spiritvale-skill-infobox > tbody > tr:last-child,
 
table.spiritvale-passive-infobox > tbody > tr:last-child {
.sv-pill--compact,
   border-bottom: none;
.mw-parser-output .sv-pill--compact{
  padding:0.15em 0.38em;
   border-radius:var(--sv-ui-rad-pill);
}
}


table.spiritvale-skill-infobox > tbody > tr:not(.spiritvale-infobox-main) > th:not(.spiritvale-infobox-section-header),
.sv-pill--value,
table.spiritvale-passive-infobox > tbody > tr:not(.spiritvale-infobox-main) > th:not(.spiritvale-infobox-section-header) {
.mw-parser-output .sv-pill--value{
  width: 26%;
  border-radius:var(--sv-ui-rad-pill);
   padding: 0.45em 0.85em;
   font-weight:900;
   text-align: left;
   text-transform:none;
   font-weight: 600;
   letter-spacing:0.01em;
  white-space: nowrap;
}
}


table.spiritvale-skill-infobox > tbody > tr > td,
.sv-focus-ring:focus-visible,
table.spiritvale-passive-infobox > tbody > tr > td {
.mw-parser-output .sv-focus-ring:focus-visible{
   padding: 0.45em 0.85em;
   outline:2px solid var(--sv-ui-accent3);
   text-align: left;
  outline-offset:2px;
   border-radius:var(--sv-ui-rad-sm);
}
}


table.spiritvale-skill-infobox > tbody > tr:nth-child(odd) > td,
/* -------------------------------------------------------------------------- */
table.spiritvale-skill-infobox > tbody > tr:nth-child(odd) > th:not(.spiritvale-infobox-section-header),
/* 3a) Hover lift utility */
table.spiritvale-passive-infobox > tbody > tr:nth-child(odd) > td,
/* -------------------------------------------------------------------------- */
table.spiritvale-passive-infobox > tbody > tr:nth-child(odd) > th:not(.spiritvale-infobox-section-header) {
 
   background-color: rgba(148, 163, 184, 0.05);
.sv-hover-lift{
  transition:transform 0.15s ease-in-out;
   will-change:transform;
}
}


.spiritvale-infobox-main-left-inner {
.sv-hover-lift:hover{
   display: flex;
   transform:translateY(-2px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
}
}


.spiritvale-infobox-title {
/* -------------------------------------------------------------------------- */
   font-size: 1.25em;
/* 3b) Right infobox wrapper */
   font-weight: 600;
/* -------------------------------------------------------------------------- */
 
.sv-card.sv-infobox-right{
   float:right !important;
  width:100%;
  max-width:200px;
  margin:0 0 2em 2em;
  box-sizing:border-box;
   border-radius:var(--sv-ui-rad-lg);
  overflow:hidden;
  clear:right;
}
}


.spiritvale-infobox-main-right-inner {
.sv-card.sv-infobox-right.sv-infobox-right--md{max-width:260px;}
  display: flex;
.sv-card.sv-infobox-right.sv-infobox-right--lg{max-width:320px;}
  align-items: center;
 
   justify-content: center;
/* -------------------------------------------------------------------------- */
/* 4) Shared utilities */
/* -------------------------------------------------------------------------- */
 
.sv-hidden,
.mw-parser-output .sv-hidden{
   display:none !important;
}
}


.spiritvale-infobox-description {
[hidden]{display:none !important;}
   font-size: 1.05em;
 
   font-style: italic;
.sv-miss,
   text-align: center;
.mw-parser-output .sv-miss{
   max-width: 42em;
   display:inline-flex;
   margin: 0 auto;
  align-items:center;
   opacity: 0.95;
  justify-content:center;
  width:18px;
  height:18px;
   border-radius:var(--sv-ui-rad-pill);
  border:1px solid var(--sv-ui-line2);
   background:var(--sv-ui-bg3);
  color:var(--sv-ui-text1);
   font-weight:900;
   font-size:12px;
   line-height:1;
}
}


table.spiritvale-skill-infobox > tbody > tr.sv-hero-title-row {
.sv-img,
   border-bottom: none !important;
.mw-parser-output .sv-img{
  display:inline-flex;
  align-items:center;
   justify-content:center;
}
}
table.spiritvale-skill-infobox > tbody > tr.sv-hero-title-row > th {
 
   padding-bottom: 0.55em;
.sv-img img,
}
.mw-parser-output .sv-img img{
table.spiritvale-skill-infobox > tbody > tr.sv-hero-desc-row > td {
   display:block;
   padding-top: 0.55em;
  max-width:100%;
   padding-bottom: 0.55em;
   height:auto;
   border-radius:var(--sv-ui-rad-sm);
}
}


/* ------------------------------------------------------------
.sv-img--shadow img,
  SKILLS sizing + list wrapper
.mw-parser-output .sv-img--shadow img{
  --------------------------------------------------------- */
   box-shadow:0 10px 18px rgba(0,0,0,0.35);
table.spiritvale-skill-infobox {
   max-width: var(--sv-skill-width);
  margin: 1.25em auto;
  table-layout: fixed;
}
}


.sv-skill-collection {
/* -------------------------------------------------------------------------- */
  width: 100%;
/* 5) Shared level selector */
  max-width: var(--sv-skill-width);
/* -------------------------------------------------------------------------- */
  margin: 0 auto !important;
  padding: 0 !important;


   border: 2px solid #372b54;
.sv-level-ui,
   border-radius: 10px;
.mw-parser-output .sv-level-ui{
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
   display:flex;
   background: transparent !important;
   align-items:center;
   justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  text-align:center;
   margin:0;
}


  overflow: hidden;
.sv-level-label,
   display: block !important;
.mw-parser-output .sv-level-label{
   margin:0;
}
}


.sv-skill-collection .mw-table-wrapper,
.sv-level-label[data-sv-helper-text],
.sv-skill-collection .table-overflow,
.sv-level-ui .sv-level-label:not([data-sv-helper-text]),
.sv-skill-collection .table-scroll,
.mw-parser-output .sv-level-label[data-sv-helper-text],
.sv-skill-collection .citizen-table {
.mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text]){
   border: none !important;
   display:inline-block;
   box-shadow: none !important;
   margin:0;
   background: transparent !important;
   padding:0;
   padding: 0 !important;
   font-size:0;
   margin: 0 !important;
   line-height:0;
}
}


.sv-skill-collection table.spiritvale-skill-infobox {
.sv-level-ui .sv-level-label:not([data-sv-helper-text]),
   width: 100%;
.mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text]){
   max-width: 100%;
   position:static;
   margin: 0 !important;
  top:auto;
  right:auto;
  bottom:auto;
   left:auto;
   transform:none;
}


   border: none !important;
.sv-level-label[data-sv-helper-text]::after,
   box-shadow: none !important;
.mw-parser-output .sv-level-label[data-sv-helper-text]::after{
   border-radius: 0 !important;
  content:attr(data-sv-helper-text);
  display:inline-block;
  font-weight:900;
   font-size:12px;
   line-height:1.25;
   letter-spacing:0.15px;
  color:var(--sv-ui-text1);
}
}


.sv-skill-collection > * + * {
.sv-level-ui .sv-level-label:not([data-sv-helper-text])::after,
   border-top: 1px solid rgba(148, 163, 184, 0.25);
.mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text])::after{
   content:"Slide to set level";
  display:inline-block;
  font-weight:900;
  font-size:12px;
  line-height:1.25;
  letter-spacing:0.15px;
  color:var(--sv-ui-text1);
}
}


/* ------------------------------------------------------------
.sv-level-slider,
  SKILLS: Hero Modules
.mw-parser-output .sv-level-slider{
  --------------------------------------------------------- */
  position:relative;
table.spiritvale-skill-infobox tr.hero-modules-row > td.hero-modules-cell {
  display:flex;
   padding: 0 !important;
  flex-direction:row;
   background: linear-gradient(135deg, var(--sv-modules-band-a), var(--sv-modules-band-b)) !important;
  align-items:center;
   color: #fff;
   gap:10px;
   width:100%;
  flex-wrap:nowrap;
   direction:ltr;
}
}


table.spiritvale-skill-infobox .hero-modules-grid {
.sv-level-slider input.sv-level-range[type="range"],
   display: grid;
.sv-level-slider .sv-level-range--custom,
   grid-template-columns: 1fr 1fr;
.sv-level-slider .sv-level-range[data-sv-slider="1"],
   gap: 0;
.mw-parser-output .sv-level-slider input.sv-level-range[type="range"],
.mw-parser-output .sv-level-slider .sv-level-range--custom,
.mw-parser-output .sv-level-slider .sv-level-range[data-sv-slider="1"]{
   flex:1 1 auto;
   min-width:0;
  width:auto;
  box-sizing:border-box;
   margin:0;
  order:1;
}
}


.mw-parser-output table.spiritvale-skill-infobox .hero-module {
.sv-level-endvalue,
   padding: 0.40em 0.40em;
.mw-parser-output .sv-level-endvalue{
   box-sizing: border-box;
  flex:0 0 auto;
  order:2;
  min-width:28px;
   padding:1px 7px;
  border-radius:var(--sv-ui-rad-pill);
  border:1px solid var(--sv-ui-pill-line);
  background:var(--sv-ui-pill-bg);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00));
   box-shadow:var(--sv-ui-pill-shadow);
  color:var(--sv-ui-text2);
  font-weight:900;
  font-size:12px;
  line-height:1.25;
  letter-spacing:0.15px;
  text-align:center;
  white-space:nowrap;
}


   background: #372b54 !important;
.sv-level--hide-ticks .sv-level-ticklabels,
  color: #fff !important;
[data-sv-level-hide-ticks="1"] .sv-level-ticklabels,
.mw-parser-output .sv-level--hide-ticks .sv-level-ticklabels,
.mw-parser-output [data-sv-level-hide-ticks="1"] .sv-level-ticklabels{
   display:none;
}


   border-top: 1px solid var(--sv-module-gridline);
.sv-level-range--custom,
   border-left: 1px solid var(--sv-module-gridline);
.sv-level-range[data-sv-slider="1"]{
  display:block;
  position:relative;
  height:26px;
   border-radius:var(--sv-ui-rad-pill);
   border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg1);
  cursor:pointer;
  box-sizing:border-box;
}
}


/* Desktop grid borders */
.sv-level-track{
table.spiritvale-skill-infobox .hero-module:nth-child(-n + 2) {
  position:absolute;
   border-top: none;
  left:8px;
}
  right:8px;
table.spiritvale-skill-infobox .hero-module:nth-child(odd) {
  top:50%;
   border-left: none;
  margin-top:-4px;
  height:8px;
   border-radius:var(--sv-ui-rad-pill);
  background:var(--sv-ui-bg2);
   overflow:hidden;
}
}


table.spiritvale-skill-infobox .hero-module-empty .hero-module-body {
.sv-level-fill{
   min-height: 3.2em;
  display:block;
  height:100%;
  width:0%;
  border-radius:var(--sv-ui-rad-pill);
   background:linear-gradient(90deg, var(--sv-ui-accent), rgba(245,249,255,0.22));
}
}


/* ------------------------------------------------------------
.sv-level-thumb{
  Module 1 – Level Selector
  position:absolute;
  --------------------------------------------------------- */
  left:0%;
table.spiritvale-skill-infobox .module-level-selector .sv-level-ui {
  top:50%;
  width: 90%;
  margin-top:-9px;
   margin: 0 !important;
  margin-left:-9px;
  display: flex;
  width:18px;
   flex-direction: column;
  height:18px;
  gap: 0.3em;
  border-radius:var(--sv-ui-rad-pill);
  border:2px solid var(--sv-ui-line3);
   background:rgba(245,249,255,0.92);
   box-shadow:0 10px 18px rgba(0,0,0,0.35);
}
}


table.spiritvale-skill-infobox .module-level-selector .sv-level-label {
.sv-level-ticklabels{
   font-weight: 600;
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:7px;
  font-weight:900;
  font-size:12px;
  color:var(--sv-ui-text3);
  line-height:1.1;
   min-height:12px;
}
}


table.spiritvale-skill-infobox .module-level-selector .sv-level-slider input[type="range"] {
.sv-level-tick{
   width: 90%;
   display:inline-flex;
   box-sizing: border-box;
   align-items:center;
   margin: 0;
  justify-content:center;
   min-width:18px;
}
}


table.spiritvale-skill-infobox .module-level-selector .sv-level-ui-single .sv-level-slider-single {
.sv-level-range--custom .sv-level-bubble,
   min-height: 0.45em;
.sv-level-range[data-sv-slider="1"] .sv-level-bubble{
  position:absolute;
  top:-45px;
  left:0%;
  transform:translateX(-50%);
  padding:9px 15px;
  border-radius:36px;
  border:1px solid var(--sv-ui-line3);
  background:var(--sv-ui-bg3);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00));
   box-shadow:0 10px 18px rgba(0,0,0,0.35);
  font-weight:900;
  font-size:36px;
  line-height:1;
  color:var(--sv-ui-text1);
  pointer-events:none;
  white-space:nowrap;
}
}


table.spiritvale-skill-infobox .hero-module.module-level-selector {
.sv-level-range--custom .sv-level-bubble:after,
   display: flex;
.sv-level-range[data-sv-slider="1"] .sv-level-bubble:after{
}
   content:"";
table.spiritvale-skill-infobox .hero-module.module-level-selector .hero-module-body {
  position:absolute;
  flex: 1;
  left:50%;
   display: flex;
  bottom:-9px;
   align-items: center;
  width:14px;
   justify-content: center;
  height:14px;
  margin-left:-7px;
  background:var(--sv-ui-bg3);
   border-left:1px solid var(--sv-ui-line3);
   border-bottom:1px solid var(--sv-ui-line3);
   transform:rotate(45deg);
}
}


/* ------------------------------------------------------------
.sv-level-range--custom:focus-visible,
  Module 2 – Skill Type
.sv-level-range[data-sv-slider="1"]:focus-visible{
  --------------------------------------------------------- */
  outline:2px solid var(--sv-ui-accent3);
table.spiritvale-skill-infobox .hero-module.module-skill-type .hero-module-body {
   outline-offset:2px;
  height: 100%;
   border-radius:var(--sv-ui-rad-sm);
   display: flex;
   align-items: center;
  justify-content: center;
  width: 100%;
}
}


table.spiritvale-skill-infobox .module-skill-type .sv-type-grid {
/* -------------------------------------------------------------------------- */
  width: 100%;
/* 6) Shared tabs */
  margin: 0 !important;
/* -------------------------------------------------------------------------- */
  box-sizing: border-box;


  display: grid;
.sv-tabs,
  grid-template-columns: 1fr 1fr;
.mw-parser-output .sv-tabs{
   gap: 0.5em;
   margin:10px 0 0;
  padding: 0.4em;
}
}


table.spiritvale-skill-infobox .module-skill-type .sv-type-chunk {
.sv-tabs-list,
   display: flex;
.mw-parser-output .sv-tabs-list{
   flex-direction: column;
   display:flex;
   align-items: center;
   gap:8px;
   justify-content: center;
   flex-wrap:wrap;
   text-align: center;
   margin:0 0 10px 0;
   padding:0;
}


   border: none !important;
.sv-tab,
   padding: 0.25em 0.45em;
.mw-parser-output .sv-tab{
   gap: 0.6em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
   border-radius:var(--sv-ui-rad-pill);
   padding:7px 10px;
  border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg2);
  color:var(--sv-ui-text1);
  font-weight:900;
  font-size:13px;
  cursor:pointer;
   user-select:none;
}
}


table.spiritvale-skill-infobox .module-skill-type .sv-type-label {
.sv-tab:hover,
   width: 100%;
.mw-parser-output .sv-tab:hover{
  padding: 0.18em 0.35em;
   background:var(--sv-ui-bg3);
  border-radius: 6px;
}
 
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72em;
  line-height: 1.15;


  /* NAVY */
.sv-tab[aria-selected="true"],
   background: linear-gradient(180deg, var(--sv-pill-a), var(--sv-pill-b));
.mw-parser-output .sv-tab[aria-selected="true"]{
   background:var(--sv-ui-bg3);
  border-color:var(--sv-ui-accent);
}
}


table.spiritvale-skill-infobox .module-skill-type .sv-type-value {
.sv-tabpanel,
   margin-top: 0 !important;
.mw-parser-output .sv-tabpanel{
   font-weight: 400;
   padding:10px 12px;
   font-size: 1.02em;
   border-radius:var(--sv-ui-rad-md);
   line-height: 1.25;
   border:1px solid var(--sv-ui-line1);
 
   background:var(--sv-ui-bg1);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
}


/* ------------------------------------------------------------
.sv-tab:focus-visible,
  Module 3 – Skill Source
.mw-parser-output .sv-tab:focus-visible,
  --------------------------------------------------------- */
.sv-disclose-btn:focus-visible,
table.spiritvale-skill-infobox .hero-module.skill-source-module .hero-module-body {
.mw-parser-output .sv-disclose-btn:focus-visible{
   height: 100%;
   outline:2px solid var(--sv-ui-accent3);
   display: flex;
   outline-offset:2px;
   align-items: center;
   border-radius:var(--sv-ui-rad-sm);
  justify-content: center;
}
}


table.spiritvale-skill-infobox .skill-source-module .sv-source-grid {
/* -------------------------------------------------------------------------- */
  width: 100%;
/* 7) Shared tip trigger */
  box-sizing: border-box;
/* -------------------------------------------------------------------------- */


   display: grid;
.sv-tip,
   gap: 0.55em;
.mw-parser-output .sv-tip{
  position:relative;
   display:inline-flex;
  align-items:center;
   flex:0 0 auto;
}


   align-items: start;
.sv-tip-btn,
   justify-items: center;
.mw-parser-output .sv-tip-btn{
  display:inline-flex;
   align-items:center;
   justify-content:center;
  border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg2);
  color:var(--sv-ui-text1);
  cursor:pointer;
  user-select:none;
}
}


table.spiritvale-skill-infobox .hero-module.skill-source-module.sv-has-mod .sv-source-grid {
.sv-tip-btn:hover,
   grid-template-columns: 0.85fr 1fr 1fr;
.mw-parser-output .sv-tip-btn:hover{
   background:var(--sv-ui-bg3);
}
}
table.spiritvale-skill-infobox .hero-module.skill-source-module.sv-no-mod .sv-source-grid {
 
   grid-template-columns: 1fr 1fr;
.sv-tip-btn:focus-visible,
.mw-parser-output .sv-tip-btn:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
   outline-offset:2px;
}
}
table.spiritvale-skill-infobox .hero-module.skill-source-module.sv-only-source.sv-no-mod .sv-source-grid,
 
table.spiritvale-skill-infobox .hero-module.skill-source-module.sv-only-scaling.sv-no-mod .sv-source-grid {
.sv-tip-btn--icon,
   grid-template-columns: 1fr;
.sv-tip-btn:not(.sv-tip-btn--pill),
.mw-parser-output .sv-tip-btn--icon,
.mw-parser-output .sv-tip-btn:not(.sv-tip-btn--pill){
   width:28px;
  height:28px;
  border-radius:var(--sv-ui-rad-pill);
}
}
table.spiritvale-skill-infobox .hero-module.skill-source-module.sv-only-source.sv-has-mod .sv-source-grid,
 
table.spiritvale-skill-infobox .hero-module.skill-source-module.sv-only-scaling.sv-has-mod .sv-source-grid {
.sv-tip-btn--pill,
   grid-template-columns: 0.95fr 1.05fr;
.sv-overcap-btn,
.mw-parser-output .sv-tip-btn--pill,
.mw-parser-output .sv-overcap-btn{
  width:auto;
  height:auto;
  min-width:0;
  min-height:0;
  padding:1px 8px;
  border-radius:var(--sv-ui-rad-pill);
  font-weight:900;
  font-size:13px;
  line-height:1.25;
  letter-spacing:0.15px;
  white-space:nowrap;
  background:var(--sv-ui-pill-bg);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00));
  box-shadow:var(--sv-ui-pill-shadow);
  border-color:var(--sv-ui-pill-line);
   color:var(--sv-ui-text2);
}
}


table.spiritvale-skill-infobox .skill-source-module .sv-source-col {
.sv-ico--info,
   width: 100%;
.mw-parser-output .sv-ico--info{
   display: flex;
   width:18px;
   flex-direction: column;
  height:18px;
  border-radius:999px;
   display:flex;
   align-items:center;
  justify-content:center;
  font-style:normal;
  font-weight:900;
  font-size:12px;
  line-height:1;
}


  align-items: center;
/* -------------------------------------------------------------------------- */
  justify-content: flex-start;
/* 8) Shared disclosure */
  text-align: center;
/* -------------------------------------------------------------------------- */


   gap: 0.35em;
.sv-disclose,
.mw-parser-output .sv-disclose{
   position:relative;
}
}


table.spiritvale-skill-infobox .skill-source-module .sv-source-pill {
.sv-disclose-btn,
   width: 100%;
.mw-parser-output .sv-disclose-btn{
   padding: 0.18em 0.35em;
  display:flex;
   border-radius: 6px;
  align-items:center;
  justify-content:space-between;
  gap:12px;
   width:100%;
   padding:10px 12px;
  border-radius:var(--sv-ui-rad-md);
  border:1px solid var(--sv-ui-line1);
  background:var(--sv-ui-bg1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00));
  color:var(--sv-ui-text1);
  font-weight:900;
   cursor:pointer;
  user-select:none;
}


  font-weight: 800;
.sv-disclose-btn:hover,
  text-transform: uppercase;
.mw-parser-output .sv-disclose-btn:hover{
  letter-spacing: 0.03em;
   background:var(--sv-ui-bg2);
  font-size: 0.72em;
}
   line-height: 1.15;


  /* NAVY */
.sv-disclose-btn--compact,
  background: linear-gradient(180deg, var(--sv-pill-a), var(--sv-pill-b));
.mw-parser-output .sv-disclose-btn--compact{
  border-radius:var(--sv-ui-rad-pill);
  min-height:36px;
  padding:0 12px;
}
}


table.spiritvale-skill-infobox .skill-source-module .sv-modifier-value,
.sv-disclose-count,
table.spiritvale-skill-infobox .skill-source-module .sv-source-value {
.mw-parser-output .sv-disclose-count{
   font-weight: 800;
   font-weight:800;
   line-height: 1.05;
   font-size:13px;
   font-size: clamp(1.05em, 2.2vw, 1.35em);
   color:var(--sv-ui-text3);
  white-space:nowrap;
}


  white-space: normal;
/* -------------------------------------------------------------------------- */
  overflow-wrap: anywhere;
/* 9) Universal popups */
  word-break: break-word;
/* -------------------------------------------------------------------------- */


   opacity: 0.98;
.sv-tip-btn,
.sv-disclose-btn,
.sv-def,
.sv-uipop-head,
.sv-uipop-title,
.sv-uipop-title-link{
   -webkit-touch-callout:none;
  -webkit-user-select:none;
  user-select:none;
  touch-action:manipulation;
}
}


table.spiritvale-skill-infobox .skill-source-module .sv-scaling-list {
.sv-tip-btn *,
   display: flex;
.sv-disclose-btn *,
  flex-direction: column;
.sv-uipop-head *{
  gap: 0.22em;
   -webkit-user-select:none;
   align-items: center;
   user-select:none;
}
}


table.spiritvale-skill-infobox .skill-source-module .sv-scaling-item {
.sv-uipop{
   font-weight: 500;
  position:fixed;
   font-size: 0.88em;
  z-index:9000;
   line-height: 1.15;
  top:0;
   opacity: 0.95;
  left:0;
  box-sizing:border-box;
  border-radius:var(--sv-ui-rad-lg);
   border:1px solid var(--sv-ui-pop-line, var(--sv-ui-line2));
  background:var(--sv-ui-pop-bg, var(--sv-ui-bg2));
   background-image:
    radial-gradient(900px 260px at 35% 0, rgba(106,166,255,0.14), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.00));
   color:var(--sv-ui-text1);
  box-shadow:
    var(--sv-ui-pop-shadow, 0 10px 30px rgba(0,0,0,0.35)),
    inset 0 1px 0 rgba(255,255,255,0.04);
   overflow:hidden;
}
}


/* ------------------------------------------------------------
.sv-uipop[aria-hidden="true"]{display:none;}
  Module 4 – Quick Stats
 
  --------------------------------------------------------- */
.sv-uipop--sm,
table.spiritvale-skill-infobox .hero-module.module-quick-stats .hero-module-body {
.sv-uipop--lg{
   height: 100%;
   width:240px;
   display: flex;
   max-width:calc(100vw - 20px);
  align-items: center;
  justify-content: center;
  width: 100%;
}
}


table.spiritvale-skill-infobox .module-quick-stats .sv-m4-grid {
.sv-uipop--sm{max-height:min(45vh, 320px);}
  width: 100%;
.sv-uipop--lg{max-height:min(70vh, 560px);}
  margin: 0 !important;
  box-sizing: border-box;


   display: grid;
.sv-uipop-head{
   grid-template-columns: 1fr 1fr 1fr;
   display:flex;
   gap: 0.45em;
   align-items:center;
   padding: 0.35em;
  justify-content:center;
   padding:12px 12px;
  border-bottom:1px solid var(--sv-ui-line2);
   background:var(--sv-ui-bg3);
}
}


table.spiritvale-skill-infobox .module-quick-stats .sv-m4-cell {
.sv-uipop-head--clickable{cursor:pointer;}
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;


   gap: 0.35em;
.sv-uipop-title{
   padding: 0.10em 0.20em;
   width:100%;
   min-height: 2.35em;
  text-align:center;
  font-weight:900;
  font-size:16px;
   letter-spacing:0.02em;
   color:var(--color-emphasized, var(--sv-ui-text1));
}
}


table.spiritvale-skill-infobox .module-quick-stats .sv-m4-label {
.sv-uipop-title a.sv-uipop-title-link{
   width: 100%;
   color:inherit;
  padding: 0.18em 0.35em;
   text-decoration:none;
  border-radius: 6px;
}
 
  font-weight: 800;
   text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72em;
  line-height: 1.15;


  /* NAVY */
.sv-uipop-title a.sv-uipop-title-link:hover{
  background: linear-gradient(180deg, var(--sv-pill-a), var(--sv-pill-b));
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:2px;
}
}


table.spiritvale-skill-infobox .module-quick-stats .sv-m4-value {
.sv-uipop-body{
   font-weight: 650;
   padding:10px 12px 12px;
   font-size: 0.96em;
   font-size:13px;
   line-height: 1.15;
   line-height:1.4;
   opacity: 0.98;
   color:var(--sv-ui-text2);
 
   overflow:auto;
   white-space: normal;
   overflow-wrap:anywhere;
   overflow-wrap: anywhere;
   word-break:break-word;
   word-break: break-word;
  -webkit-user-select:text;
  user-select:text;
}
}


/* ------------------------------------------------------------
.sv-uipop-body--pre{white-space:pre-line;}
  Mobile behavior
  - Stack modules 1 per row
  - FIX: ensure border between Module 1 and 2
  - Increase + even out padding
  - Shrink pill labels to reduce “white space”
  - Module 4 => 2 columns
  --------------------------------------------------------- */
@media (max-width: 560px) {
  table.spiritvale-skill-infobox .hero-modules-grid {
    grid-template-columns: 1fr;
  }


  /* Even + slightly larger padding so modules read as separate blocks */
.sv-uipop-body p,
  .mw-parser-output table.spiritvale-skill-infobox .hero-module {
.sv-uipop-body ul,
    padding: 0.60em 0.60em;
.sv-uipop-body ol{margin:0;}
    border-left: none;
  }


  /* Override desktop “first row” rule so Module 2 gets a top border */
.sv-uipop-body ul,
  table.spiritvale-skill-infobox .hero-module:nth-child(-n + 2) {
.sv-uipop-body ol{padding-left:1.15em;}
    border-top: 1px solid var(--sv-module-gridline) !important;
  }
  table.spiritvale-skill-infobox .hero-module:first-child {
    border-top: none !important;
  }


  /* Shrink ALL pill labels (Modules 2/3/4) */
.sv-uipop-body li{margin:0;}
  table.spiritvale-skill-infobox .module-skill-type .sv-type-label,
  table.spiritvale-skill-infobox .skill-source-module .sv-source-pill,
  table.spiritvale-skill-infobox .module-quick-stats .sv-m4-label {
    padding: 0.10em 0.26em;
    border-radius: 5px;
    font-size: 0.60em;
    letter-spacing: 0.02em;
    line-height: 1.05;
  }


  /* Tighten Skill Type module spacing */
.sv-uipop a{
   table.spiritvale-skill-infobox .module-skill-type .sv-type-grid {
   color:var(--color-link, var(--sv-ui-accent));
    gap: 0.35em;
  text-decoration:underline;
    padding: 0.25em;
   text-decoration-thickness:2px;
   }
  text-underline-offset:2px;
  table.spiritvale-skill-infobox .module-skill-type .sv-type-chunk {
}
    padding: 0.10em 0.15em;
    gap: 0.35em;
  }


  /* Tighten Source module spacing */
.sv-uipop a:hover{
   table.spiritvale-skill-infobox .skill-source-module .sv-source-grid {
   text-decoration-thickness:3px;
    gap: 0.40em;
  text-underline-offset:3px;
  }
}


  /* Module 4: 2 columns for readability + slightly tighter cells */
.sv-uipop a:focus-visible,
  table.spiritvale-skill-infobox .module-quick-stats .sv-m4-grid {
.sv-uipop-title a.sv-uipop-title-link:focus-visible{
    grid-template-columns: 1fr 1fr;
  outline:2px solid var(--sv-ui-accent3);
    gap: 0.40em;
  outline-offset:2px;
    padding: 0.30em;
  border-radius:6px;
  }
  table.spiritvale-skill-infobox .module-quick-stats .sv-m4-cell {
    gap: 0.25em;
    min-height: 2.05em;
  }
}
}


/* ------------------------------------------------------------
.sv-uipop :where(.sv-disclose-list, .sv-uipop-list){
  PASSIVES (unchanged)
   margin:0;
  --------------------------------------------------------- */
   padding:0;
table.spiritvale-passive-infobox {
   list-style:none;
  width: var(--sv-passive-width);
   max-width: var(--sv-passive-width);
   margin: 1em auto;
   table-layout: fixed;
}
}


table.spiritvale-passive-infobox > tbody > tr.sv-hero-title-row {
.sv-uipop :where(.sv-disclose-list, .sv-uipop-list) > li{
   border-bottom: none !important;
  padding:6px 0;
   border-top:1px solid var(--sv-ui-line1);
  font-size:13px;
  color:var(--sv-ui-text2);
}
}
table.spiritvale-passive-infobox > tbody > tr.sv-hero-title-row > th {
 
   padding-bottom: 0.55em;
.sv-uipop :where(.sv-disclose-list, .sv-uipop-list) > li:first-child{
  border-top:none;
   padding-top:0;
}
}
table.spiritvale-passive-infobox > tbody > tr.sv-hero-desc-row > td {
 
   padding-top: 0.55em;
.sv-uipop :where(.sv-disclose-group-title, .sv-uipop-group-title){
   padding-bottom: 0.55em;
   padding-top:10px;
  font-weight:900;
  font-size:12px;
   letter-spacing:0.02em;
  color:var(--sv-ui-text1);
}
}


table.spiritvale-passive-infobox > tbody > tr:not(.spiritvale-infobox-main) > th,
.sv-uipop .sv-disclose-sections{
table.spiritvale-passive-infobox > tbody > tr:not(.spiritvale-infobox-main) > td {
   display:flex;
   text-align: center;
   flex-direction:column;
   vertical-align: middle;
   gap:10px;
   white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
}


table.spiritvale-passive-infobox .spiritvale-infobox-section-header {
.sv-uipop .sv-disclose-sec + .sv-disclose-sec{
   text-align: center;
  padding-top:10px;
   border-top:1px solid var(--sv-ui-line1);
}
}


.spiritvale-passive-list {
.sv-uipop .sv-disclose-sec-title{
   display: flex;
   font-weight:900;
   flex-direction: column;
   font-size:13px;
   align-items: center;
   letter-spacing:0.02em;
   gap: 1.25em;
  color:var(--sv-ui-text1);
   margin:0 0 4px 0;
}
}


.spiritvale-passive-list .mw-table-wrapper,
.sv-uipop .sv-disclose-sec-items{
.spiritvale-passive-list .table-overflow,
   font-size:13px;
.spiritvale-passive-list .table-scroll,
   line-height:1.45;
.spiritvale-passive-list .citizen-table {
   color:var(--sv-ui-text2);
   border: none !important;
   box-shadow: none !important;
   background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
}


/* ------------------------------------------------------------
.sv-uipop .sv-disclose-item{display:inline;}
  LIGHT MODE OVERRIDES
.sv-uipop .sv-disclose-sfx{opacity:0.78;}
  --------------------------------------------------------- */
.sv-uipop .sv-tip-pop-body{white-space:pre-line;}
.mw-theme-light table.spiritvale-skill-infobox > tbody > tr:nth-child(odd) > td,
 
.mw-theme-light table.spiritvale-skill-infobox > tbody > tr:nth-child(odd) > th:not(.spiritvale-infobox-section-header),
/* -------------------------------------------------------------------------- */
.mw-theme-light table.spiritvale-passive-infobox > tbody > tr:nth-child(odd) > td,
/* 10) Motion */
.mw-theme-light table.spiritvale-passive-infobox > tbody > tr:nth-child(odd) > th:not(.spiritvale-infobox-section-header) {
/* -------------------------------------------------------------------------- */
   background-color: rgba(148, 163, 184, 0.12);
 
@media (prefers-reduced-motion: reduce){
  .sv-hover-lift{transition:none;}
   .sv-hover-lift:hover{transform:none;}
}
}


.mw-theme-light table.spiritvale-skill-infobox > tbody > tr,
/* -------------------------------------------------------------------------- */
.mw-theme-light table.spiritvale-passive-infobox > tbody > tr {
/* 11) Responsive                                                              */
   border-bottom: 1px solid rgba(55, 43, 84, 0.18);
/* -------------------------------------------------------------------------- */
/* default (<640px): compact end value and helper text.                        */
/* sm and up (>=640px): restore the standard control sizing.                   */
 
@media (min-width:640px){
  .sv-level-endvalue,
  .mw-parser-output .sv-level-endvalue{
    padding:2px 8px;
    min-width:30px;
    font-size:13px;
    line-height:1.25;
  }
 
  .sv-level-label[data-sv-helper-text]::after,
   .sv-level-ui .sv-level-label:not([data-sv-helper-text])::after,
  .mw-parser-output .sv-level-label[data-sv-helper-text]::after,
  .mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text])::after{
    font-size:13px;
  }
}
}

Latest revision as of 22:41, 7 March 2026

/* SpiritVale Wiki — Common.css */
/* Role: shared tokens, primitives, utilities, and interactive anatomy */
/* Scope: sitewide SpiritVale UI foundations only */
/* -------------------------------------------------------------------------- */
/* Canonical ownership map                                                     */
/* -------------------------------------------------------------------------- */
/* Common.css is the sitewide foundation layer. It owns:                       */
/* - canonical breakpoint definitions and responsive policy comments           */
/* - shared design tokens and utility primitives                              */
/* - reusable interactive anatomy used by multiple modules/templates          */
/* - global parser-output treatments that should behave the same everywhere    */
/*                                                                            */
/* Common.css does NOT own:                                                    */
/* - Citizen skin theme/chrome styling (Citizen.css)                          */
/* - module-specific card/layout rules (GameInfo, PatchHighlights, etc.)      */
/* - template-specific presentation rules (Definitions, ClassInfobox, etc.)   */
/*                                                                            */
/* Responsive cleanup note: this file is the source of truth for breakpoint    */
/* meaning. Its own responsive selectors should model the canonical ladder     */
/* and shared UI should follow that ladder everywhere else.                    */
/* -------------------------------------------------------------------------- */
/* Responsive policy (canonical)                                              */
/* -------------------------------------------------------------------------- */
/* SpiritVale uses a mobile-first six-viewpoint ladder aligned to Tailwind's   */
/* defaults.                                                                   */
/*                                                                            */
/* Viewpoints                                                                  */
/* - default: 0px-639px   (phones / smallest layout)                           */
/* - sm:      640px-767px (large phones / small tablets)                       */
/* - md:      768px-1023px(tablets / narrow landscape)                         */
/* - lg:      1024px-1279px(laptop / desktop start)                            */
/* - xl:      1280px-1535px(wide desktop)                                      */
/* - 2xl:     1536px+      (very wide desktop)                                 */
/*                                                                            */
/* Implementation rule: write defaults for the smallest layout whenever        */
/* practical, then layer upward with canonical breakpoints.                    */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 1) SpiritVale tokens */
/* -------------------------------------------------------------------------- */

:root{
  /* Surface ladder.
     bg0 = site background only
     bg1 = main component surface
     bg2 = nested/grouped panel surface
     bg3 = deep inset / pill surface
     bg4 = highest emphasis / selected / strong highlight surface
  */
  --sv-ui-bg0:#0f172a;
  --sv-ui-bg1:#1f2937;
  --sv-ui-bg2:#273449;
  --sv-ui-bg3:#2e3f59;
  --sv-ui-bg4:#4e6d97;

  /* Border / frame ladder. */
  --sv-ui-line1:#3b4b63;
  --sv-ui-line2:#4b6388;
  --sv-ui-line3:#7d93b5;

  /* Text ladder. */
  --sv-ui-text1:#f5f9ff;
  --sv-ui-text2:#d7e2f4;
  --sv-ui-text3:#b6c6e0;
  --sv-ui-text4:#7f9fcc;

  /* Accent ladder. */
  --sv-ui-accent:#6aa6ff;
  --sv-ui-accent2:#8cbcff;
  --sv-ui-accent3:#e6f0ff;

  /* Popover tokens. */
  --sv-ui-pop-bg:var(--sv-ui-bg2);
  --sv-ui-pop-line:var(--sv-ui-line2);
  --sv-ui-pop-shadow:0 10px 30px rgba(0,0,0,0.35);

  /* Radius tokens. */
  --sv-ui-rad-sm:10px;
  --sv-ui-rad-md:14px;
  --sv-ui-rad-lg:18px;
  --sv-ui-rad-pill:999px;

  /* Shared shadow tokens. */
  --sv-ui-shadow1:0 10px 28px rgba(0,0,0,0.40);

  /* Shared pill tokens. */
  --sv-ui-pill-bg:var(--sv-ui-bg3);
  --sv-ui-pill-line:var(--sv-ui-line2);
  --sv-ui-pill-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
  --sv-ui-pill-text:var(--sv-ui-text1);
}

/* Fallback light skin mapping. */
.mw-theme-light{
  --sv-ui-bg0:#1f2937;
  --sv-ui-bg1:#273449;
  --sv-ui-bg2:#2e3f59;
  --sv-ui-bg3:#364a69;
  --sv-ui-bg4:#6888b4;

  --sv-ui-line1:#4b6388;
  --sv-ui-line2:#5f7fb4;
  --sv-ui-line3:#8ea7ca;

  --sv-ui-text1:#f5f9ff;
  --sv-ui-text2:#d7e2f4;
  --sv-ui-text3:#b6c6e0;
  --sv-ui-text4:#8ba8d1;

  --sv-ui-accent:#8cbcff;
  --sv-ui-accent2:#b0d0ff;
  --sv-ui-accent3:#f2f7ff;
}

/* -------------------------------------------------------------------------- */
/* 2) Sitewide link treatment */
/* -------------------------------------------------------------------------- */

.mw-parser-output a{
  color:var(--color-link, var(--sv-ui-accent));
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:2px;
  text-decoration-skip-ink:auto;
  transition:
    color 120ms ease,
    text-decoration-thickness 120ms ease,
    text-underline-offset 120ms ease;
}

.mw-parser-output a:visited{
  color:var(--color-visited, var(--sv-ui-accent2));
}

.mw-parser-output a:hover{
  text-decoration-thickness:3px;
  text-underline-offset:3px;
}

.mw-parser-output a:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
  outline-offset:2px;
  border-radius:6px;
  box-shadow:0 0 0 3px rgba(230,240,255,0.12);
}

/* -------------------------------------------------------------------------- */
/* 3) Shared primitives */
/* -------------------------------------------------------------------------- */

.sv-card,
.mw-parser-output .sv-card{
  background:var(--sv-ui-bg1);
  border:1px solid var(--sv-ui-line1);
  border-radius:var(--sv-ui-rad-md);
  box-shadow:var(--sv-ui-shadow1);
  color:var(--color-base, var(--sv-ui-text2));
}

.sv-card :where(h1,h2,h3,h4,h5,h6,th,summary,.mw-headline),
.mw-parser-output .sv-card :where(h1,h2,h3,h4,h5,h6,th,summary,.mw-headline){
  color:var(--color-emphasized, var(--sv-ui-text1));
}

.sv-tile,
.mw-parser-output .sv-tile{
  background:var(--sv-ui-bg2);
  border:1px solid var(--sv-ui-line2);
  border-radius:var(--sv-ui-rad-sm);
  color:var(--color-emphasized, var(--sv-ui-text1));
}

.sv-pill,
.mw-parser-output .sv-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.18em 0.40em;
  border-radius:var(--sv-ui-rad-sm);
  background:var(--sv-ui-pill-bg);
  border:1px solid var(--sv-ui-pill-line);
  box-shadow:var(--sv-ui-pill-shadow);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00));
  color:var(--sv-ui-pill-text);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.03em;
  font-size:0.72em;
  line-height:1.15;
  white-space:nowrap;
}

.sv-pill--compact,
.mw-parser-output .sv-pill--compact{
  padding:0.15em 0.38em;
  border-radius:var(--sv-ui-rad-pill);
}

.sv-pill--value,
.mw-parser-output .sv-pill--value{
  border-radius:var(--sv-ui-rad-pill);
  font-weight:900;
  text-transform:none;
  letter-spacing:0.01em;
}

.sv-focus-ring:focus-visible,
.mw-parser-output .sv-focus-ring:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
  outline-offset:2px;
  border-radius:var(--sv-ui-rad-sm);
}

/* -------------------------------------------------------------------------- */
/* 3a) Hover lift utility */
/* -------------------------------------------------------------------------- */

.sv-hover-lift{
  transition:transform 0.15s ease-in-out;
  will-change:transform;
}

.sv-hover-lift:hover{
  transform:translateY(-2px);
}

/* -------------------------------------------------------------------------- */
/* 3b) Right infobox wrapper */
/* -------------------------------------------------------------------------- */

.sv-card.sv-infobox-right{
  float:right !important;
  width:100%;
  max-width:200px;
  margin:0 0 2em 2em;
  box-sizing:border-box;
  border-radius:var(--sv-ui-rad-lg);
  overflow:hidden;
  clear:right;
}

.sv-card.sv-infobox-right.sv-infobox-right--md{max-width:260px;}
.sv-card.sv-infobox-right.sv-infobox-right--lg{max-width:320px;}

/* -------------------------------------------------------------------------- */
/* 4) Shared utilities */
/* -------------------------------------------------------------------------- */

.sv-hidden,
.mw-parser-output .sv-hidden{
  display:none !important;
}

[hidden]{display:none !important;}

.sv-miss,
.mw-parser-output .sv-miss{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:var(--sv-ui-rad-pill);
  border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg3);
  color:var(--sv-ui-text1);
  font-weight:900;
  font-size:12px;
  line-height:1;
}

.sv-img,
.mw-parser-output .sv-img{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.sv-img img,
.mw-parser-output .sv-img img{
  display:block;
  max-width:100%;
  height:auto;
  border-radius:var(--sv-ui-rad-sm);
}

.sv-img--shadow img,
.mw-parser-output .sv-img--shadow img{
  box-shadow:0 10px 18px rgba(0,0,0,0.35);
}

/* -------------------------------------------------------------------------- */
/* 5) Shared level selector */
/* -------------------------------------------------------------------------- */

.sv-level-ui,
.mw-parser-output .sv-level-ui{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  text-align:center;
  margin:0;
}

.sv-level-label,
.mw-parser-output .sv-level-label{
  margin:0;
}

.sv-level-label[data-sv-helper-text],
.sv-level-ui .sv-level-label:not([data-sv-helper-text]),
.mw-parser-output .sv-level-label[data-sv-helper-text],
.mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text]){
  display:inline-block;
  margin:0;
  padding:0;
  font-size:0;
  line-height:0;
}

.sv-level-ui .sv-level-label:not([data-sv-helper-text]),
.mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text]){
  position:static;
  top:auto;
  right:auto;
  bottom:auto;
  left:auto;
  transform:none;
}

.sv-level-label[data-sv-helper-text]::after,
.mw-parser-output .sv-level-label[data-sv-helper-text]::after{
  content:attr(data-sv-helper-text);
  display:inline-block;
  font-weight:900;
  font-size:12px;
  line-height:1.25;
  letter-spacing:0.15px;
  color:var(--sv-ui-text1);
}

.sv-level-ui .sv-level-label:not([data-sv-helper-text])::after,
.mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text])::after{
  content:"Slide to set level";
  display:inline-block;
  font-weight:900;
  font-size:12px;
  line-height:1.25;
  letter-spacing:0.15px;
  color:var(--sv-ui-text1);
}

.sv-level-slider,
.mw-parser-output .sv-level-slider{
  position:relative;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:10px;
  width:100%;
  flex-wrap:nowrap;
  direction:ltr;
}

.sv-level-slider input.sv-level-range[type="range"],
.sv-level-slider .sv-level-range--custom,
.sv-level-slider .sv-level-range[data-sv-slider="1"],
.mw-parser-output .sv-level-slider input.sv-level-range[type="range"],
.mw-parser-output .sv-level-slider .sv-level-range--custom,
.mw-parser-output .sv-level-slider .sv-level-range[data-sv-slider="1"]{
  flex:1 1 auto;
  min-width:0;
  width:auto;
  box-sizing:border-box;
  margin:0;
  order:1;
}

.sv-level-endvalue,
.mw-parser-output .sv-level-endvalue{
  flex:0 0 auto;
  order:2;
  min-width:28px;
  padding:1px 7px;
  border-radius:var(--sv-ui-rad-pill);
  border:1px solid var(--sv-ui-pill-line);
  background:var(--sv-ui-pill-bg);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00));
  box-shadow:var(--sv-ui-pill-shadow);
  color:var(--sv-ui-text2);
  font-weight:900;
  font-size:12px;
  line-height:1.25;
  letter-spacing:0.15px;
  text-align:center;
  white-space:nowrap;
}

.sv-level--hide-ticks .sv-level-ticklabels,
[data-sv-level-hide-ticks="1"] .sv-level-ticklabels,
.mw-parser-output .sv-level--hide-ticks .sv-level-ticklabels,
.mw-parser-output [data-sv-level-hide-ticks="1"] .sv-level-ticklabels{
  display:none;
}

.sv-level-range--custom,
.sv-level-range[data-sv-slider="1"]{
  display:block;
  position:relative;
  height:26px;
  border-radius:var(--sv-ui-rad-pill);
  border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg1);
  cursor:pointer;
  box-sizing:border-box;
}

.sv-level-track{
  position:absolute;
  left:8px;
  right:8px;
  top:50%;
  margin-top:-4px;
  height:8px;
  border-radius:var(--sv-ui-rad-pill);
  background:var(--sv-ui-bg2);
  overflow:hidden;
}

.sv-level-fill{
  display:block;
  height:100%;
  width:0%;
  border-radius:var(--sv-ui-rad-pill);
  background:linear-gradient(90deg, var(--sv-ui-accent), rgba(245,249,255,0.22));
}

.sv-level-thumb{
  position:absolute;
  left:0%;
  top:50%;
  margin-top:-9px;
  margin-left:-9px;
  width:18px;
  height:18px;
  border-radius:var(--sv-ui-rad-pill);
  border:2px solid var(--sv-ui-line3);
  background:rgba(245,249,255,0.92);
  box-shadow:0 10px 18px rgba(0,0,0,0.35);
}

.sv-level-ticklabels{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:7px;
  font-weight:900;
  font-size:12px;
  color:var(--sv-ui-text3);
  line-height:1.1;
  min-height:12px;
}

.sv-level-tick{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
}

.sv-level-range--custom .sv-level-bubble,
.sv-level-range[data-sv-slider="1"] .sv-level-bubble{
  position:absolute;
  top:-45px;
  left:0%;
  transform:translateX(-50%);
  padding:9px 15px;
  border-radius:36px;
  border:1px solid var(--sv-ui-line3);
  background:var(--sv-ui-bg3);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00));
  box-shadow:0 10px 18px rgba(0,0,0,0.35);
  font-weight:900;
  font-size:36px;
  line-height:1;
  color:var(--sv-ui-text1);
  pointer-events:none;
  white-space:nowrap;
}

.sv-level-range--custom .sv-level-bubble:after,
.sv-level-range[data-sv-slider="1"] .sv-level-bubble:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;
  width:14px;
  height:14px;
  margin-left:-7px;
  background:var(--sv-ui-bg3);
  border-left:1px solid var(--sv-ui-line3);
  border-bottom:1px solid var(--sv-ui-line3);
  transform:rotate(45deg);
}

.sv-level-range--custom:focus-visible,
.sv-level-range[data-sv-slider="1"]:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
  outline-offset:2px;
  border-radius:var(--sv-ui-rad-sm);
}

/* -------------------------------------------------------------------------- */
/* 6) Shared tabs */
/* -------------------------------------------------------------------------- */

.sv-tabs,
.mw-parser-output .sv-tabs{
  margin:10px 0 0;
}

.sv-tabs-list,
.mw-parser-output .sv-tabs-list{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:0 0 10px 0;
  padding:0;
}

.sv-tab,
.mw-parser-output .sv-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:var(--sv-ui-rad-pill);
  padding:7px 10px;
  border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg2);
  color:var(--sv-ui-text1);
  font-weight:900;
  font-size:13px;
  cursor:pointer;
  user-select:none;
}

.sv-tab:hover,
.mw-parser-output .sv-tab:hover{
  background:var(--sv-ui-bg3);
}

.sv-tab[aria-selected="true"],
.mw-parser-output .sv-tab[aria-selected="true"]{
  background:var(--sv-ui-bg3);
  border-color:var(--sv-ui-accent);
}

.sv-tabpanel,
.mw-parser-output .sv-tabpanel{
  padding:10px 12px;
  border-radius:var(--sv-ui-rad-md);
  border:1px solid var(--sv-ui-line1);
  background:var(--sv-ui-bg1);
}

.sv-tab:focus-visible,
.mw-parser-output .sv-tab:focus-visible,
.sv-disclose-btn:focus-visible,
.mw-parser-output .sv-disclose-btn:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
  outline-offset:2px;
  border-radius:var(--sv-ui-rad-sm);
}

/* -------------------------------------------------------------------------- */
/* 7) Shared tip trigger */
/* -------------------------------------------------------------------------- */

.sv-tip,
.mw-parser-output .sv-tip{
  position:relative;
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.sv-tip-btn,
.mw-parser-output .sv-tip-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg2);
  color:var(--sv-ui-text1);
  cursor:pointer;
  user-select:none;
}

.sv-tip-btn:hover,
.mw-parser-output .sv-tip-btn:hover{
  background:var(--sv-ui-bg3);
}

.sv-tip-btn:focus-visible,
.mw-parser-output .sv-tip-btn:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
  outline-offset:2px;
}

.sv-tip-btn--icon,
.sv-tip-btn:not(.sv-tip-btn--pill),
.mw-parser-output .sv-tip-btn--icon,
.mw-parser-output .sv-tip-btn:not(.sv-tip-btn--pill){
  width:28px;
  height:28px;
  border-radius:var(--sv-ui-rad-pill);
}

.sv-tip-btn--pill,
.sv-overcap-btn,
.mw-parser-output .sv-tip-btn--pill,
.mw-parser-output .sv-overcap-btn{
  width:auto;
  height:auto;
  min-width:0;
  min-height:0;
  padding:1px 8px;
  border-radius:var(--sv-ui-rad-pill);
  font-weight:900;
  font-size:13px;
  line-height:1.25;
  letter-spacing:0.15px;
  white-space:nowrap;
  background:var(--sv-ui-pill-bg);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00));
  box-shadow:var(--sv-ui-pill-shadow);
  border-color:var(--sv-ui-pill-line);
  color:var(--sv-ui-text2);
}

.sv-ico--info,
.mw-parser-output .sv-ico--info{
  width:18px;
  height:18px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  font-weight:900;
  font-size:12px;
  line-height:1;
}

/* -------------------------------------------------------------------------- */
/* 8) Shared disclosure */
/* -------------------------------------------------------------------------- */

.sv-disclose,
.mw-parser-output .sv-disclose{
  position:relative;
}

.sv-disclose-btn,
.mw-parser-output .sv-disclose-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  padding:10px 12px;
  border-radius:var(--sv-ui-rad-md);
  border:1px solid var(--sv-ui-line1);
  background:var(--sv-ui-bg1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
  background-image:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00));
  color:var(--sv-ui-text1);
  font-weight:900;
  cursor:pointer;
  user-select:none;
}

.sv-disclose-btn:hover,
.mw-parser-output .sv-disclose-btn:hover{
  background:var(--sv-ui-bg2);
}

.sv-disclose-btn--compact,
.mw-parser-output .sv-disclose-btn--compact{
  border-radius:var(--sv-ui-rad-pill);
  min-height:36px;
  padding:0 12px;
}

.sv-disclose-count,
.mw-parser-output .sv-disclose-count{
  font-weight:800;
  font-size:13px;
  color:var(--sv-ui-text3);
  white-space:nowrap;
}

/* -------------------------------------------------------------------------- */
/* 9) Universal popups */
/* -------------------------------------------------------------------------- */

.sv-tip-btn,
.sv-disclose-btn,
.sv-def,
.sv-uipop-head,
.sv-uipop-title,
.sv-uipop-title-link{
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  user-select:none;
  touch-action:manipulation;
}

.sv-tip-btn *,
.sv-disclose-btn *,
.sv-uipop-head *{
  -webkit-user-select:none;
  user-select:none;
}

.sv-uipop{
  position:fixed;
  z-index:9000;
  top:0;
  left:0;
  box-sizing:border-box;
  border-radius:var(--sv-ui-rad-lg);
  border:1px solid var(--sv-ui-pop-line, var(--sv-ui-line2));
  background:var(--sv-ui-pop-bg, var(--sv-ui-bg2));
  background-image:
    radial-gradient(900px 260px at 35% 0, rgba(106,166,255,0.14), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.00));
  color:var(--sv-ui-text1);
  box-shadow:
    var(--sv-ui-pop-shadow, 0 10px 30px rgba(0,0,0,0.35)),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow:hidden;
}

.sv-uipop[aria-hidden="true"]{display:none;}

.sv-uipop--sm,
.sv-uipop--lg{
  width:240px;
  max-width:calc(100vw - 20px);
}

.sv-uipop--sm{max-height:min(45vh, 320px);}
.sv-uipop--lg{max-height:min(70vh, 560px);}

.sv-uipop-head{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 12px;
  border-bottom:1px solid var(--sv-ui-line2);
  background:var(--sv-ui-bg3);
}

.sv-uipop-head--clickable{cursor:pointer;}

.sv-uipop-title{
  width:100%;
  text-align:center;
  font-weight:900;
  font-size:16px;
  letter-spacing:0.02em;
  color:var(--color-emphasized, var(--sv-ui-text1));
}

.sv-uipop-title a.sv-uipop-title-link{
  color:inherit;
  text-decoration:none;
}

.sv-uipop-title a.sv-uipop-title-link:hover{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:2px;
}

.sv-uipop-body{
  padding:10px 12px 12px;
  font-size:13px;
  line-height:1.4;
  color:var(--sv-ui-text2);
  overflow:auto;
  overflow-wrap:anywhere;
  word-break:break-word;
  -webkit-user-select:text;
  user-select:text;
}

.sv-uipop-body--pre{white-space:pre-line;}

.sv-uipop-body p,
.sv-uipop-body ul,
.sv-uipop-body ol{margin:0;}

.sv-uipop-body ul,
.sv-uipop-body ol{padding-left:1.15em;}

.sv-uipop-body li{margin:0;}

.sv-uipop a{
  color:var(--color-link, var(--sv-ui-accent));
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:2px;
}

.sv-uipop a:hover{
  text-decoration-thickness:3px;
  text-underline-offset:3px;
}

.sv-uipop a:focus-visible,
.sv-uipop-title a.sv-uipop-title-link:focus-visible{
  outline:2px solid var(--sv-ui-accent3);
  outline-offset:2px;
  border-radius:6px;
}

.sv-uipop :where(.sv-disclose-list, .sv-uipop-list){
  margin:0;
  padding:0;
  list-style:none;
}

.sv-uipop :where(.sv-disclose-list, .sv-uipop-list) > li{
  padding:6px 0;
  border-top:1px solid var(--sv-ui-line1);
  font-size:13px;
  color:var(--sv-ui-text2);
}

.sv-uipop :where(.sv-disclose-list, .sv-uipop-list) > li:first-child{
  border-top:none;
  padding-top:0;
}

.sv-uipop :where(.sv-disclose-group-title, .sv-uipop-group-title){
  padding-top:10px;
  font-weight:900;
  font-size:12px;
  letter-spacing:0.02em;
  color:var(--sv-ui-text1);
}

.sv-uipop .sv-disclose-sections{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sv-uipop .sv-disclose-sec + .sv-disclose-sec{
  padding-top:10px;
  border-top:1px solid var(--sv-ui-line1);
}

.sv-uipop .sv-disclose-sec-title{
  font-weight:900;
  font-size:13px;
  letter-spacing:0.02em;
  color:var(--sv-ui-text1);
  margin:0 0 4px 0;
}

.sv-uipop .sv-disclose-sec-items{
  font-size:13px;
  line-height:1.45;
  color:var(--sv-ui-text2);
}

.sv-uipop .sv-disclose-item{display:inline;}
.sv-uipop .sv-disclose-sfx{opacity:0.78;}
.sv-uipop .sv-tip-pop-body{white-space:pre-line;}

/* -------------------------------------------------------------------------- */
/* 10) Motion */
/* -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce){
  .sv-hover-lift{transition:none;}
  .sv-hover-lift:hover{transform:none;}
}

/* -------------------------------------------------------------------------- */
/* 11) Responsive                                                               */
/* -------------------------------------------------------------------------- */
/* default (<640px): compact end value and helper text.                        */
/* sm and up (>=640px): restore the standard control sizing.                   */

@media (min-width:640px){
  .sv-level-endvalue,
  .mw-parser-output .sv-level-endvalue{
    padding:2px 8px;
    min-width:30px;
    font-size:13px;
    line-height:1.25;
  }

  .sv-level-label[data-sv-helper-text]::after,
  .sv-level-ui .sv-level-label:not([data-sv-helper-text])::after,
  .mw-parser-output .sv-level-label[data-sv-helper-text]::after,
  .mw-parser-output .sv-level-ui .sv-level-label:not([data-sv-helper-text])::after{
    font-size:13px;
  }
}