:root {
  















  









  color-scheme: dark;

  --bg: #121a29;
  --bg2: #182135;
  --card: #1a2334;
  --stroke: #2b3850;
  --text: #dde7f5;
  --muted: #a8bdd6;
  --green: #38d37c;
  --amber: #ffcc66;
  --red: #ff5a6a;
  --accent: #58c8ef;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --r: 8px;
  --pad: 22px;
  





  --max: 1760px;
  --nav-bg: #1a2334;
  --nav-border: #5f7ba2;
  --overlay: rgba(0, 0, 0, 0.35);
  --glass: rgba(0, 0, 0, 0.18);
  --input-bg: #121b22;
  --input-text: #fff;
  


  --sb-thumb: #2a3a4f;
  --sb-thumb-hover: #3c5170;
  --sb-track: rgba(0, 0, 0, 0.25);

  








  --well: rgba(0, 0, 0, 0.24);

  

  --hover: rgba(255, 255, 255, 0.04);
}


body.light-mode {
  

  color-scheme: light;

  --bg: #f0f4f8;
  --bg2: #ffffff;
  


  --card: #ffffff;
  --stroke: #dce3eb;
  --text: #1a202c;
  --muted: #4a5568;
  --green: #1f9d55;
  



  --amber: #9c6410;
  --red: #c0392b;
  


  --accent: #1f6d9e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --nav-bg: #ffffff;
  --nav-border: #cbd5e0;
  --overlay: rgba(255, 255, 255, 0.4);
  --glass: rgba(255, 255, 255, 0.6);
  --input-bg: #ffffff;
  --input-text: #1a202c;
  --sb-thumb: #c3ccd8;
  --sb-thumb-hover: #a9b5c4;
  --sb-track: rgba(0, 0, 0, 0.06);

  


  --well: rgba(20, 40, 70, 0.055);
  --hover: rgba(20, 40, 70, 0.05);
}






















[hidden] { display: none !important; }


















@view-transition { navigation: auto; }








.nav-box-wrap { view-transition-name: nav; }


@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}

* {
  box-sizing: border-box;}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial;

  
  background: var(--bg);

  color: var(--text);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: -1;
  pointer-events: none;
  transition: background 0.3s ease;
}

.video-remelis {
    position: relative;
    width: 100%;
    
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    display: block;
    margin: 10px auto 0;
    
    

    background: transparent !important; 
    
    border-radius: var(--r);
    border: 1px solid var(--stroke);
    height: auto;
}

.video-remelis video {
    display: block;
    width: 100% !important;
    height: 100% !important;
    
    

    object-fit: cover !important; 
    object-position: center !important;

    


    transform: scale(1.01); 
}




















#bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 86vh;
  min-height: 520px;
  z-index: -2; 
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
}

.bg-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;

  
  transform: translateZ(0);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  will-change: transform; 
}


.bg-a {
  opacity: 1;
}


.kenburns {
  animation: kenburnsZoom 12s linear forwards;
}

@keyframes kenburnsZoom {
  from { transform: translateZ(0) scale(1); }
  to   { transform: translateZ(0) scale(1.12); }
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}









body > header {
  position: relative;
  z-index: 50;
}

main {
  padding-top: 90px;
}


.nav-box-wrap {
  max-width: var(--max);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  display: flex;
  justify-content: center;

  background: transparent;
  margin: 0 auto;
  padding: 0 18px;

  pointer-events: none;
}


.nav-box {
  width: 100%;
  max-width: var(--max);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: var(--nav-bg);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  padding: 10px 18px;

  box-shadow: var(--shadow);

  transform: translateY(16px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.3s ease,
    border-color 0.3s ease;

  pointer-events: auto;
}

body.light-mode .nav-box {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

body.scrolled .nav-box {
  transform: translateY(0);
}

.nav-group {
  display: flex;
  align-items: center;
  width: 100%;
}


.nav-center {
  display: flex;
  align-items: center;
  margin-left: 0;
}


.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--r);
}


.nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  

  padding: 0 12px;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;

  transition: color 0.2s ease;
}



.nav-btn i { font-size: 12.5px; }

.nav-btn:hover,
.nav-btn[aria-current="page"] {
  color: var(--text);
}

.nav-btn.highlight {
  color: var(--amber);
}

.nav-btn.highlight:hover {
  color: var(--text);
}


.nav-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 24px;
  background: var(--stroke);
}

.nav-btn:last-child::after {
  display: none;
}


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: var(--r);
  transition: all 0.2s ease;
}



.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.dropdown-toggle i {
  font-size: 12px;
  opacity: 0.7;
}


.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 180px;
  padding: 8px;

  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  gap: 4px;

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.2s ease;

  z-index: 200;
}


.dropdown-menu a {
  padding: 10px 12px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.dropdown-menu a:hover {
  background: rgba(85, 214, 255, 0.15);
  color: var(--text);
}

body.light-mode .dropdown-menu a:hover {
  background: rgba(41, 128, 185, 0.1);
  color: var(--accent);
}






.dropdown {
  position: relative;
}







.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;          
  height: 12px;
}





.hero {
  padding: 28px 0 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.heroMain {
  padding: 26px;
  position: relative;
  overflow: hidden;
}



















body.light-mode .heroMain::before {
  opacity: 0.4; 
}

.heroMain img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 14px auto 0;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--r);
}

.heroMain .sub {
  margin: 10px 0 4px;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.fa-gem {
  color: #a1e9ff;
  display: inline-block;
  
  backface-visibility: hidden;
  transform: translateZ(0);
  vertical-align: middle; 
  animation: diamond-glow 2.5s infinite ease-in-out;
}

@keyframes diamond-glow {
  0%, 100% {
    filter: drop-shadow(0 0 2px #70d8ff) brightness(1);
    color: #a1e9ff;
  }
  50% {
    filter: drop-shadow(0 0 10px #fff) brightness(1.5);
    color: #ffffff;
    
  }
}

.center {
  text-align: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(56, 211, 124, 0.16);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 211, 124, 0.55);
  animation: dotPulse 1.8s ease-out infinite;
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 211, 124, 0.55);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 7px rgba(56, 211, 124, 0);
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 211, 124, 0);
    opacity: 0;
  }
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.center .sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 1px;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: var(--r);
  font-weight: 800;
  letter-spacing: 0.2px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--text);
  transition: 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}





.btn[hidden] { display: none; }

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.btn.primary {
  background: linear-gradient(
    135deg,
    rgba(85, 214, 255, 0.28),
    rgba(56, 211, 124, 0.24)
  );
  border-color: rgba(85, 214, 255, 0.38);
}

body.light-mode .btn.primary {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.2), rgba(46, 204, 113, 0.2));
    border-color: var(--accent);
    color: var(--text);
}

.btn.warn {
  background: linear-gradient(
    135deg,
    rgba(255, 204, 102, 0.25),
    rgba(255, 90, 106, 0.18)
  );
  border-color: rgba(255, 204, 102, 0.35);
}

body.light-mode .btn.warn {
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(231, 76, 60, 0.2));
  border-color: var(--amber);
}


.players-container {
  margin-top: 12px;
}

code.ip {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 14px;
  color: #d9f4ff;
  padding: 8px 10px;
  border-radius: var(--r);
  background: rgba(85, 214, 255, 0.1);
  border: 1px solid rgba(85, 214, 255, 0.2);
  flex: 1;
  min-width: 220px;
  overflow: auto;
}

body.light-mode code.ip {
  color: var(--accent);
  background: rgba(41, 128, 185, 0.1);
  border-color: rgba(41, 128, 185, 0.2);
}

li {
  list-style-type: none
}

.badge {
  font-weight: 900;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: rgba(18, 27, 38, 0.55);
  color: var(--muted);
}
body.light-mode .badge {
    background: rgba(255,255,255,0.7);
}

.badge.ok {
  color: #bff7d6;
  border-color: rgba(56, 211, 124, 0.3);
  background: rgba(56, 211, 124, 0.1);
}
body.light-mode .badge.ok {
    color: #27ae60;
    background: rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.4);
}

.badge.down {
  color: #ffd1d6;
  border-color: rgba(255, 90, 106, 0.35);
  background: rgba(255, 90, 106, 0.1);
}
body.light-mode .badge.down {
    color: #c0392b;
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.4);
}

.badge.mid {
  color: #ffe7bf;
  border-color: rgba(255, 204, 102, 0.35);
  background: rgba(255, 204, 102, 0.1);
}
body.light-mode .badge.mid {
    color: #d35400;
    background: rgba(241, 196, 15, 0.2);
    border-color: rgba(241, 196, 15, 0.4);
}


section {
  padding: 10px 0;
}
.secTitle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 12px;
}
.secTitle h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.secTitle p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.grid3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}












@media (max-width: 560px) {
  .grid3 .card { text-align: center; }

  
  .grid3 .icon { margin-inline: auto; }
}

.tile {
  padding: var(--pad);
}
.tile h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}










.icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: var(--tone, inherit);
  background: var(--tone-bg, rgba(85, 214, 255, 0.12));
  border: 1px solid var(--tone-br, rgba(85, 214, 255, 0.2));
  margin-bottom: 12px;
  font-size: 20px;
}
body.light-mode .icon {
    background: var(--tone-bg, rgba(41, 128, 185, 0.1));
    border-color: var(--tone-br, rgba(41, 128, 185, 0.2));
    color: var(--tone, var(--accent));
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.list {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  list-style: none;
}









footer {
  margin-top: 40px;
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--stroke);

  












  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, transparent), transparent 220px),
    color-mix(in srgb, var(--card) 55%, transparent);
  backdrop-filter: blur(6px);
}

.foot-top {
  display: grid;
  


  grid-template-columns: minmax(280px, 1.4fr) minmax(240px, 1fr);
  gap: 32px;
  padding: 30px 0 26px;
}


.foot-brand { display: flex; flex-direction: column; gap: 12px; min-width: 0; }

.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--text);
  width: fit-content;
}
.foot-logo img { border-radius: 8px; }
.foot-logo:hover { color: var(--accent); }

.foot-about { margin: 0; max-width: 46ch; font-size: 13px; line-height: 1.6; }





.foot-ip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;

  font: inherit;
  font-size: 13px;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .1s;
}
.foot-ip:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--stroke));
  background: color-mix(in srgb, var(--accent) 7%, var(--well));
}
.foot-ip:active { transform: translateY(1px); }
.foot-ip code {
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent);
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




body.light-mode .foot-ip code { color: color-mix(in srgb, var(--accent) 40%, var(--text)); }

.foot-ip-go { opacity: .5; font-size: 12px; }
.foot-ip:hover .foot-ip-go { opacity: 1; }






.foot-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  gap: 20px 16px;
}
.foot-col { display: flex; flex-direction: column; gap: 9px; min-width: 0; }

.foot-col h4 {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}

.foot-col a {
  font-size: 13.5px;
  color: var(--muted);
  width: fit-content;
  transition: color .2s, transform .2s;
}


.foot-col a:hover { color: var(--accent); transform: translateX(3px); }




.foot-push {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  font-size: 13.5px;
  color: var(--muted);
  width: fit-content;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-align: left;
  transition: color .2s, transform .2s;
}
.foot-push:hover { color: var(--accent); transform: translateX(3px); }
.foot-push i { font-size: 12px; }

.foot-push.is-on i { color: var(--accent); }

.foot-push:disabled { opacity: .55; cursor: wait; transform: none; }


.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding-top: 18px;
  font-size: 12.5px;
  border-top: 1px solid var(--stroke);
}

.foot-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; }

.foot-link {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.foot-link:hover { color: var(--accent); }

.foot-note { opacity: .65; }

@media (max-width: 760px) {
  

  .foot-top { grid-template-columns: 1fr; gap: 26px; padding: 26px 0 22px; }
  .foot-ip { width: 100%; justify-content: space-between; }

  

  .foot-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 12px; }
  .foot-legal { justify-content: center; }
}













.srv-pulse { display: flex; flex-direction: column; gap: 16px; padding: 16px; }







.srv-pulse .status-row { justify-content: flex-start; flex-wrap: wrap; gap: 8px; }
.srv-pulse .status-row .badge { padding: 6px 12px; font-size: 12px; }
















.srv-pulse .status-row .badge.mid,
.srv-pulse .status-row .badge.down { flex: 1 1 100%; text-align: center; justify-content: center; }
.srv-pulse .status-row .badge.ok  { flex: 1 1 auto; max-width: 260px; }



.srv-pulse .pulse-record { flex: 0 0 auto; }



.pulse-record {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 11.5px;
  color: var(--muted);
}
.pulse-record i { color: var(--amber); }
.pulse-record b { color: var(--text); font-size: 13px; }










.srv-pulse .pulse-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.pulse-count { min-width: 104px; }
.pulse-count > b {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pulse-count > span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}





.pulse-count .player-bar-bg {
  margin-top: 10px;
  height: 6px;
  border-radius: 99px;
  background: var(--well);
  border: 1px solid var(--stroke);
  overflow: hidden;
}


.pulse-count .player-bar-fill { min-width: 6px; border-radius: 99px; }

.pulse-chart { min-width: 0; }


.pulse-cap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.pulse-cap span:last-child { font-weight: 600; letter-spacing: 0; text-transform: none; opacity: .85; }









.pulse-plot { position: relative; padding-left: 16px; }
.pulse-ymax,
.pulse-ymin {
  position: absolute;
  left: 0;
  font-size: 9.5px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  opacity: .75;
  pointer-events: none;
}
.pulse-ymax { top: -1px; }
.pulse-ymin { bottom: 1px; }



.pulse-curve { display: block; width: 100%; height: 64px; }


.pulse-curve rect { cursor: help; }

.pulse-chart { padding-bottom: 2px; border-bottom: 1px solid var(--stroke); }

.pulse-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.pulse-empty { margin: 0; font-size: 12px; color: var(--muted); }


.pulse-ribbon { display: flex; gap: 2px; }
.pulse-ribbon i {
  flex: 1;
  height: 14px;
  border-radius: 3px;
  background: var(--green);
  opacity: .55;
  transition: opacity .15s;
}
.pulse-ribbon i:hover { opacity: 1; }
.pulse-ribbon i.mid  { background: var(--amber); }
.pulse-ribbon i.down { background: var(--red); opacity: .85; }




.pulse-ribbon i.unknown {
  

  background: var(--stroke);
  opacity: 1;
}

.pulse-uptime-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 11px;
  color: var(--muted);
}


.pulse-who {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
}
.pulse-chips { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }

.pulse-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  font-size: 12.5px;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
a.pulse-chip:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--stroke));
  background: color-mix(in srgb, var(--accent) 8%, var(--well));
}
.pulse-chip b { font-weight: 650; }
.pulse-chip span { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }

.pulse-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 22%, transparent);
}
.pulse-chip-none { color: var(--muted); }
.pulse-chip-none .pulse-chip-dot { display: none; }

.pulse-busy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 11.5px;
  color: var(--muted);
}

@media (max-width: 560px) {
  

  

  .srv-pulse .pulse-main { grid-template-columns: 1fr; gap: 12px; }
  .pulse-count > b { font-size: 34px; }
  .pulse-busy { margin-left: 0; flex-basis: 100%; }
  .pulse-record { margin-left: 0; }
}



.cookie-banner {
    display: none; 
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 340px;
    
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    padding: var(--pad);
    
    z-index: 9999;
    backdrop-filter: blur(12px);
    font-family: inherit;
    
    
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}


.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
}


.cookie-banner.hiding {
    opacity: 0;
    transform: translateX(-20px);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(85, 214, 255, 0.12);
    border: 1px solid rgba(85, 214, 255, 0.2);
    border-radius: var(--r);
    display: grid;
    place-items: center;
    color: var(--accent);
}

.cookie-title {
    font-size: 16px;
    letter-spacing: -0.3px;
    color: var(--text);
}

.cookie-text {
    margin: 0 0 18px 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 13px;
}

.cookie-btn-alt {
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    border: 1px solid transparent;
}

.cookie-btn-alt:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}




@media (max-width: 768px) {
    .cookie-banner {
        
        width: 100% !important;
        max-width: 100% !important;
        
        
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        
        
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        
        margin: 0 !important;
    }
    
    
    .cookie-banner.hiding {
        transform: translateY(100%);
    }
}


.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  font-weight: 700;
  color: var(--text);
}
body.light-mode .toast {
    background: rgba(255,255,255,0.9);
    border-color: #cbd5e0;
    color: #1a202c;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}


.toast-float {
  position: fixed;
  pointer-events: none;
  background: rgba(10, 14, 20, 0.85);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(6px) scale(0.95);
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 9999;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
body.light-mode .toast-float {
    background: rgba(255,255,255,0.9);
    border-color: #cbd5e0;
    color: #1a202c;
}

.toast-float.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}













.donate-wrapper {
  width: 100%;
}

.donate-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  margin-top: 14px;
}




.sup-field { display: flex; flex-direction: column; gap: 7px; }

.sup-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.sup-lbl i { font-size: 11px; color: var(--accent); }

.donate-form input[type="text"],
.donate-form input[type="number"] {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  font: inherit;
  font-size: 14px;
  box-sizing: border-box;
  background: var(--input-bg);
  color: var(--input-text);
}
.donate-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.donate-form input::placeholder { color: var(--muted); }



.donate-form input[readonly] {
  background: var(--well);
  color: var(--muted);
  cursor: default;
}

.donate-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--input-bg) inset !important;
  -webkit-text-fill-color: var(--input-text) !important;
  caret-color: var(--input-text) !important;
  border: 1px solid var(--stroke) !important;
}


.sup-quick { display: flex; flex-wrap: wrap; gap: 7px; }

.sup-quick-btn {
  flex: 1;
  min-width: 62px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  cursor: pointer;
  transition: 0.15s;
}
.sup-quick-btn:hover { color: var(--text); border-color: var(--accent); }



.sup-quick-btn.is-on {
  color: var(--accent);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}


.sup-money { position: relative; }



.sup-money-cur {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  pointer-events: none;
}
.sup-money input[type="number"] {
  padding-left: 28px;
  font-variant-numeric: tabular-nums;
}

.sup-hint { margin: 0; font-size: 11.5px; color: var(--muted); }



.donate-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 16px;
  font-size: 15px;
  margin-top: 2px;
}





.donate-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}



.donate-btn:disabled:hover {
  transform: none;
  border-color: rgba(85, 214, 255, 0.38);
}

.sup-note {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}
.sup-note i { margin-right: 5px; opacity: 0.7; }









.sup-table-wrap { margin-top: 14px; }









.pl-table.sup-table { min-width: 0; }
.pl-table.sup-table th,
.pl-table.sup-table td { vertical-align: middle; }


.sup-table th.sup-th-rank { width: 1%; }
.sup-table th.sup-th-val { text-align: right; }

.sup-name { font-weight: 700; color: var(--text); }




.sup-table td.sup-td-val {
  text-align: right;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}


.sup-mvp {
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--amber);
  background: color-mix(in srgb, var(--amber) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--amber) 32%, transparent);
  vertical-align: 1px;
}



@media (max-width: 460px) {
  .sup-quick-btn { min-width: calc(50% - 4px); }
}

#htPlayersList {
  padding: 10px;
  font-size: 14px;
}


.players-bar-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.player-bar-bg {
  width: 100%;
  height: 10px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  overflow: hidden;
}
body.light-mode .player-bar-bg {
    background: rgba(0,0,0,0.08);
}

.player-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), #2fbf6f);
  border-radius: var(--r);
  transition: width 1.2s ease-out;
}

.players-bar-row {
  margin-top: 6px;
}





















:root {
  --anchor-offset: 96px;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

#htPlayersList {
  font-size: 13px;
  line-height: 1.4;
}

.players-container {
  margin-top: 10px;
}

.status-row {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.status-row .badge {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  padding: 9px 12px;
}

#htPlayersList {
  display: block;
  width: 100%;
}

.nav-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
body.light-mode .nav-user {
    border-left-color: var(--stroke);
}

.nav-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(85, 214, 255, 0.35);
  background: var(--well);
}

.nav-user-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--role-color, var(--text));
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}


.nav-login {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 40px;
  padding: 0 18px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;

  color: #cfd8ff;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(88, 101, 242, 0.4);
  border-radius: var(--r);

  white-space: nowrap;
  width: auto;
  min-width: 50px;
  justify-content: center;

  transition: 0.2s ease;
}

body.light-mode .nav-login {
    color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.nav-login:hover {
  color: #ffffff;
  background: rgba(88, 101, 242, 0.28);
  border-color: rgba(88, 101, 242, 0.6);
}
body.light-mode .nav-login:hover {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
}

.nav-login i {
  font-size: 16px;
}


.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right .burger {
  margin: 0;
}





.player-bar-fill {
    position: relative !important;
    overflow: hidden !important;
}
.player-bar-fill::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    animation: barShine 3s infinite !important;
}
@keyframes barShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


@media (max-width: 1010px) {
  .nav-user-name {
    display: none;
  }
}

@media (min-width: 901px) {
  .nav-center {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown-menu:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}











@media (min-width: 901px) and (max-width: 1150px) {
  .nav-btn-txt { display: none; }

  .nav-btn {
    padding: 0 10px;
    gap: 0;
  }

  

  .nav-drop .dropdown-toggle > .fa-chevron-down { display: none; }
}

@media (max-width: 900px) {
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;

    display: none;
    width: 100%;
    margin-top: 6px;
    padding: 6px;
    background: var(--bg);
    border: 1px solid var(--stroke);
    border-radius: var(--r);
    box-shadow: none;
  }

  .dropdown-menu.open {
    display: flex;
    flex-direction: column;
  }

  








  .nav-drop .dropdown-toggle { display: none; }

  .nav-drop .dropdown-menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
  }

  .nav-drop .dropdown-menu a {
    
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }

  
  .nav-login span,
  .nav-user-name {
    display: none;
  }

  .nav-box-wrap {
    padding: 0 18px;
  }

  .nav-box {
    width: 100%;
    max-width: 100%;
  }

  .burger {
    display: flex;
  }

  .nav-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .nav-center {
    position: absolute;
    z-index: 100;
    top: calc(100% + 6px);
    left: 0px;
    width: 100%;
    
    background: var(--bg);
    border-radius: var(--r);
    
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    
    max-height: 0;
    padding: 0;
    border: none;
    opacity: 0;
    pointer-events: none;
    
    overflow: hidden;
    transition: 
        max-height 0.3s ease, 
        padding 0.3s ease, 
        opacity 0.3s ease, 
        border 0s linear 0.3s;
  }

  













  .nav-center.open {
    max-height: calc(100dvh - 110px);
    padding: 12px 16px;
    border: 1px solid var(--stroke);
    opacity: 1;
    pointer-events: auto;

    overflow-y: auto;
    

    overflow-x: hidden;
    overscroll-behavior: contain;

    transition:
        max-height 0.3s ease,
        padding 0.3s ease,
        opacity 0.3s ease,
        border 0s linear 0s;
  }

  


  .nav-center.open > * {
    min-width: 0;
    max-width: 100%;
  }

  .nav-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-btn::after {
    display: none;
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .split,
  .grid3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 15px 0 0;
  }

  
  .status-row {
    display: flex;
    flex-direction: column; 
    gap: 8px;               
    width: 100%;            
  }

  .status-row .badge {
    display: block;
    width: 100%;
    text-align: center;     
    margin: 0;              
    box-sizing: border-box; 
  }

  





  .srv-pulse .status-row { flex-direction: row; flex-wrap: wrap; }
  .srv-pulse .status-row .badge {
    display: inline-flex;
    justify-content: center;
    width: auto;
    padding: 5px 9px;
    font-size: 11.5px;
  }

  .kicker {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    width: 32px;
    height: 32px;
  }
}


.theme-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.theme-btn:hover {
  color: var(--text);
  transform: rotate(15deg);
}


body.light-mode .theme-btn {
  color: var(--amber);
}







.user-menu {
  position: relative;
}

.user-menu-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.user-menu-caret {
  font-size: 11px;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.user-menu:hover .user-menu-caret,
.user-menu.open .user-menu-caret {
  transform: rotate(180deg);
}

.user-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;              
  


  min-width: 210px;
  padding: 8px;

  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  gap: 4px;

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 300;
}






.user-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 260px;          
  height: 16px;
}

.user-menu:hover .user-menu-panel,
.user-menu-panel:hover,
.user-menu.open .user-menu-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.user-menu-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.user-menu-panel a:hover {
  background: rgba(85, 214, 255, 0.15);
  color: var(--text);
}

.user-menu-panel a.user-menu-danger:hover {
  background: rgba(255, 107, 107, 0.15);
  color: #ff8a8a;
}

body.light-mode .user-menu-panel a:hover {
  background: rgba(41, 128, 185, 0.1);
  color: var(--accent);
}



@media (max-width: 900px) {
  .user-menu-panel {
    min-width: 180px;
  }
}



.acc-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--stroke);
}
.acc-notice.ok  { background: rgba(56, 211, 124, 0.10); border-color: rgba(56, 211, 124, 0.35); color: var(--green, #38d37c); }
.acc-notice.err { background: rgba(255, 107, 107, 0.10); border-color: rgba(255, 107, 107, 0.35); color: #ff8a8a; }

.acc-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.acc-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(85, 214, 255, 0.35);
  background: var(--well);
}

.acc-name {
  


  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--role-color, var(--text));
  line-height: 1.2;
}

.acc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.acc-meta i { margin-right: 5px; }



.acc-meta .acc-sub { font-size: 11.5px; opacity: 0.72; }
.acc-meta .acc-sub i { margin-right: 0; }

.acc-badge {
  color: var(--accent);
  font-weight: 700;
}

.acc-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.acc-form input {
  flex: 1;
  min-width: 200px;
  height: 46px;
  padding: 0 16px;
  font-size: 15px;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.acc-form input:focus {
  outline: none;
  border-color: var(--accent);
}
body.light-mode .acc-form input {
  background: rgba(255, 255, 255, 0.7);
}

.acc-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.acc-total {
  padding: 16px;
  border-radius: var(--r);
  background: rgba(85, 214, 255, 0.08);
  border: 1px solid var(--stroke);
  text-align: center;
}
.acc-total-val {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.acc-total-lbl {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}

.acc-donations {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.acc-donations li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--stroke);
  font-size: 13.5px;
}
.acc-donations li:last-child { border-bottom: 0; }

.acc-don-amount {
  font-weight: 800;
  color: var(--green, #38d37c);
  min-width: 74px;
}
.acc-don-date { color: var(--muted); }
.acc-don-src {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}




.hy-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);

  opacity: 0;
  transition: opacity 0.25s ease;
}
.hy-modal.visible { opacity: 1; }










.hy-modal[hidden] { display: none; }






.swal2-container { z-index: 6000 !important; }

.hy-modal-box {
  width: 100%;
  max-width: 460px;
  padding: 32px 28px 24px;
  text-align: center;

  background: var(--nav-bg);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);

  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.hy-modal.visible .hy-modal-box {
  transform: translateY(0) scale(1);
}

.hy-modal-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: var(--accent);
  background: rgba(85, 214, 255, 0.12);
  border: 1px solid rgba(85, 214, 255, 0.3);
  border-radius: 50%;
}

.hy-modal-box h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text);
}

.hy-modal-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.hy-modal-box input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 16px;
  text-align: center;

  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.hy-modal-box input:focus {
  outline: none;
  border-color: var(--accent);
}
body.light-mode .hy-modal-box input {
  background: rgba(255, 255, 255, 0.75);
}

.hy-modal-err {
  margin-top: 10px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ff8a8a;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.35);
  border-radius: var(--r);
}

.hy-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.hy-modal-hint {
  margin: 16px 0 0;
  font-size: 11.5px;
  color: var(--muted);
}

@media (max-width: 480px) {
  .hy-modal-box { padding: 26px 20px 20px; }
  .hy-modal-actions { flex-direction: column-reverse; }
  .hy-modal-actions .btn { width: 100%; justify-content: center; }
}







.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}



.dropdown-menu a > i,
.user-menu-panel a > i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  flex: none;
}
























.card .srv-panel { border-color: transparent; }



.card .icon { border-color: transparent; }












.hero .card > h3,
.card > h3 { font-size: 16px; }






.set-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 10px 0 40px;
}













.set-main { min-width: 0; }

.set-grid { display: flex; flex-direction: column; gap: 16px; }





.set-nav {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.set-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--r);
  border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.set-nav-item i { width: 16px; text-align: center; font-size: 12px; opacity: .8; }
.set-nav-item span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }


.set-nav-item b { font-size: 11px; font-weight: 700; opacity: .5; font-variant-numeric: tabular-nums; }

.set-nav-item:hover { color: var(--text); background: var(--well); }
.set-nav-item.is-active {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 10%, var(--well));
  border-left-color: var(--accent);
}
.set-nav-item.is-active i { color: var(--accent); opacity: 1; }


.set-nav-tools { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--stroke); border-radius: 0 var(--r) var(--r) 0; }


.set-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.set-search > i {
  position: absolute;
  left: 13px;
  font-size: 12px;
  color: var(--muted);
  pointer-events: none;
}
.set-search input {
  width: 100%;
  padding: 11px 38px;
  font: inherit;
  font-size: 13.5px;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.set-search input:focus { outline: 2px solid var(--accent); outline-offset: -1px; }


.set-search input::-webkit-search-cancel-button { display: none; }
.set-search button {
  position: absolute;
  right: 8px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.set-search button:hover { color: var(--text); background: var(--card); }

.set-noresult { margin: 0 0 16px; font-size: 13px; color: var(--muted); }




.set-group-head p {
  flex-basis: 100%;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}




.set-row.is-changed { border-left: 2px solid var(--accent); padding-left: 10px; margin-left: -12px; }




.set-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 0;
  

  background: linear-gradient(to top, var(--card) 55%, transparent);
}


.set-dirty { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.set-dirty b { color: var(--accent); font-variant-numeric: tabular-nums; }
.set-actions .btn[disabled] { opacity: .45; cursor: not-allowed; }

@media (max-width: 860px) {
  

  .set-layout { grid-template-columns: 1fr; gap: 14px; }
  .set-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--stroke);
  }
  .set-nav-item { border-left: 0; border: 1px solid var(--stroke); padding: 6px 10px; }
  .set-nav-item span { flex: 0 0 auto; }
  .set-nav-item.is-active { border-color: color-mix(in srgb, var(--accent) 50%, var(--stroke)); }
  .set-nav-tools { margin-top: 0; padding-top: 6px; border-top: 0; border-radius: var(--r); }
}





.set-group {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  margin-bottom: 16px;
  overflow: hidden;
  



}

.set-group-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--stroke);
}
body.light-mode .set-group-head { background: rgba(0, 0, 0, 0.03); }

.set-group-head i {
  width: 18px;
  text-align: center;
  color: var(--accent);
  font-size: 15px;
}




.set-group-head h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}





.set-row[hidden], .set-group[hidden] { display: none; }

.set-row {
  display: flex;
  align-items: center;      
  gap: 28px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--stroke);
}
.set-row:last-child { border-bottom: 0; }
.set-row:hover { background: var(--hover); }
body.light-mode .set-row:hover { background: rgba(0, 0, 0, 0.02); }

.set-info { flex: 1; min-width: 0; }

.set-label {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.set-help {
  margin-top: 3px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}


.set-key {
  display: inline-block;
  margin-top: 7px;
  padding: 2px 7px;
  font-size: 10px;
  font-family: ui-monospace, Consolas, monospace;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  border-radius: 4px;
  opacity: 0.75;
}
body.light-mode .set-key { background: rgba(0, 0, 0, 0.04); }


.set-control {
  flex: none;
  
  width: 200px;
  display: flex;
  justify-content: flex-end;
}




.set-control input[type="text"],
.set-control input[type="email"],
.set-control input[type="number"],
.set-control select,
.set-control textarea {
  width: 100%;
  padding: 10px 13px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  resize: vertical;
}
.set-control input:focus,
.set-control textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(85, 214, 255, 0.12);
}
body.light-mode .set-control input,
body.light-mode .set-control textarea {
  background: rgba(255, 255, 255, 0.75);
}


.set-switch { display: inline-flex; align-items: center; cursor: pointer; }
.set-switch input { display: none; }

.set-slider {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--stroke);
  border-radius: 20px;
  transition: background 0.25s ease;
}
.set-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.set-switch input:checked + .set-slider { background: var(--green); }
.set-switch input:checked + .set-slider::before { transform: translateX(22px); }


.set-group-muted { opacity: 0.75; }
.set-unknown { padding: 16px 20px; }
.set-unknown p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}
.set-unknown ul { list-style: none; margin: 0; padding: 0; }
.set-unknown li {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  font-size: 12.5px;
  border-top: 1px solid var(--stroke);
}
.set-unknown code { color: var(--accent); font-size: 12px; }
.set-unknown span { color: var(--muted); }


.set-actions .btn {
  padding: 13px 38px;
  font-size: 14.5px;
}


@media (max-width: 1000px) {
  .set-grid { columns: 1; }
}

@media (max-width: 640px) {
  .set-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .set-control { width: 100%; justify-content: flex-start; }
  .set-actions .btn { width: 100%; justify-content: center; }
}



.nav-btn-cs2 { gap: 8px; }

.nav-btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 3px;
  flex: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.nav-btn-cs2:hover .nav-btn-icon,
.nav-btn-cs2[aria-current="page"] .nav-btn-icon {
  opacity: 1;
}











.swal-hy-popup {
  background: var(--bg2) !important;
  border: 1px solid var(--stroke) !important;
  border-radius: var(--r) !important;
  box-shadow: var(--shadow) !important;
  color: var(--text) !important;
}
.swal-hy-title {
  color: var(--text) !important;
  font-weight: 800 !important;
  font-size: 20px !important;
}
.swal-hy-html {
  color: var(--muted) !important;
  font-size: 14.5px !important;
}
.swal-hy-popup .swal2-actions {
  gap: 12px !important;
  margin-top: 1.5em !important;
}
.swal-hy-confirm,
.swal-hy-cancel {
  min-width: 130px !important;
  padding: 11px 18px !important;
  border-radius: var(--r) !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  border: 1px solid var(--stroke) !important;
  transition: 0.15s !important;
}
.swal-hy-confirm {
  background: linear-gradient(135deg, rgba(85, 214, 255, 0.28), rgba(56, 211, 124, 0.24)) !important;
  border-color: rgba(85, 214, 255, 0.38) !important;
  color: var(--text) !important;
}
.swal-hy-cancel {
  background: var(--glass) !important;
  color: var(--muted) !important;
}
.swal-hy-confirm:hover,
.swal-hy-cancel:hover {
  transform: translateY(-1px);
  border-color: var(--accent) !important;
}
body.light-mode .swal-hy-confirm {
  background: linear-gradient(135deg, rgba(41, 128, 185, 0.2), rgba(46, 204, 113, 0.2)) !important;
  border-color: var(--accent) !important;
}








.swal-lead { margin: 0; color: var(--text); }
.swal-note { margin: 10px 0 0; font-size: 13px; color: var(--muted); }



.swal-note a { color: var(--accent); text-decoration: underline; cursor: pointer; }
.swal-note code { font-variant-numeric: tabular-nums; }

.swal-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }

.swal-f { display: flex; flex-direction: column; gap: 5px; }
.swal-f > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}


.swal-f > span i { font-style: normal; font-weight: 400; opacity: 0.6; }
.swal-f input,
.swal-f select {
  width: 100%;
  padding: 9px 11px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.swal-f input:focus,
.swal-f select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }



.swal-warn {
  margin: 0;
  padding: 9px 11px;
  font-size: 12.5px;
  color: var(--text);
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.45);
  border-radius: var(--r);
}



.swal-pre {
  margin: 0;
  padding: 11px 12px;
  max-height: 320px;
  overflow: auto;
  text-align: left;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}

.swal-copy { margin-top: 10px; padding: 7px 14px; font-size: 13px; }





.hy-meta { list-style: none; margin: 0 0 14px; padding: 0; }
.hy-meta li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--stroke);
}
.hy-meta li:last-child { border-bottom: none; }
.hy-meta span { color: var(--muted); }

.hy-names, .hy-sessions { list-style: none; margin: 0; padding: 0; font-size: 12.5px; }
.hy-names li, .hy-sessions li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--stroke);
}
.hy-names li:last-child, .hy-sessions li:last-child { border-bottom: none; }
.hy-names i { font-size: 9px; color: var(--muted); }
.hy-old { color: var(--muted); text-decoration: line-through; }
.hy-new { color: var(--text); font-weight: 700; }
.hy-when { color: var(--muted); font-size: 11.5px; margin-left: auto; }
.hy-sessions b { margin-left: auto; }





.hy-ses-when  { color: var(--text); font-variant-numeric: tabular-nums; }
.hy-ses-world { color: var(--muted); font-size: 11.5px; }
.hy-ses-len,
.hy-ses-now   { margin-left: auto; font-size: 11.5px; white-space: nowrap; }
.hy-ses-len   { color: var(--muted); font-variant-numeric: tabular-nums; }
.hy-ses-now   { color: var(--green); font-weight: 700; }

























.top-spreads {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 14px;
  align-items: start;
}
.top-race-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  
  grid-template-columns: auto 1fr auto;
  gap: 9px 12px;
  align-items: center;
  font-size: 12.5px;
}
.top-race-list li { display: contents; }
.top-race-name { color: var(--text); font-weight: 700; overflow-wrap: anywhere; }
.top-race-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--well);
  border: 1px solid var(--stroke);
  overflow: hidden;
  min-width: 40px;
}
.top-race-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}
.top-race-n {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: right;
}

@media (max-width: 480px) {
  


  .top-race-list { grid-template-columns: 1fr auto; }
  .top-race-bar { grid-column: 1 / -1; }

  





  .top-race-bar { order: 1; }
}










.pl-progress { padding-bottom: 14px; }





.pl-progress > summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  
  list-style: none;
}
.pl-progress > summary::-webkit-details-marker { display: none; }



.pl-progress > summary .hy-block-title { margin: 0; flex: 1; min-width: 0; }

.pl-progress-chev {
  flex: none;
  font-size: 11px;
  color: var(--muted);
  transition: transform 0.18s ease, color 0.18s ease;
}
.pl-progress[open] > summary .pl-progress-chev { transform: rotate(180deg); }
.pl-progress > summary:hover .pl-progress-chev { color: var(--text); }



.pl-progress > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r);
}

@media (prefers-reduced-motion: reduce) {
  .pl-progress-chev { transition: none; }
}

.pl-timeline {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  font-size: 12.5px;
}
.pl-tl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 0 14px 0;
  

  margin-left: 13px;
  padding-left: 21px;
  border-left: 2px solid var(--stroke);
  

  min-height: 28px;
}

.pl-tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }

.pl-tl-ico {
  position: absolute;
  left: -15px;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 11px;
  border-radius: 50%;
  color: var(--muted);
  

  background: var(--card);
  border: 1px solid var(--stroke);
}












.pl-tl-item.is-up    .pl-tl-ico { color: var(--green);  border-color: color-mix(in srgb, var(--green)  45%, transparent); }
.pl-tl-item.is-down  .pl-tl-ico { color: var(--red);    border-color: color-mix(in srgb, var(--red)    45%, transparent); }
.pl-tl-item.is-ach   .pl-tl-ico { color: var(--amber);  border-color: color-mix(in srgb, var(--amber)  45%, transparent); }
.pl-tl-item.is-quest .pl-tl-ico { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }


.pl-tl-x {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.pl-tl-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  

  padding-top: 5px;
}
.pl-tl-what { color: var(--muted); overflow-wrap: anywhere; }
.pl-tl-what b { color: var(--text); font-variant-numeric: tabular-nums; }
.pl-tl-what i { font-size: 9px; margin: 0 2px; }

.pl-tl-when {
  margin-left: auto;
  color: var(--muted);
  font-size: 11.5px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pl-tl-more { margin: 12px 0 0; font-size: 11.5px; }

@media (max-width: 480px) {
  






  .pl-tl-when { margin-left: 0; }
}




.players-page { padding-bottom: 24px; }




.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}
.page-head h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-head h1 i { color: var(--accent); font-size: 18px; }

.page-head .sub { margin: 0; font-size: 12px; }



.pl-mode {
  font-size: 11px;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: var(--r);
  padding: 3px 10px;
}

.pl-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  
  gap: 14px;
  







  margin: 14px 0;
}














.hero > .pl-kpi { margin: 0; }













.hero > .acc-bar + .pl-kpi { margin-top: 14px; }

.pl-kpi .card { padding: 12px 14px; }
.pl-val { display: block; font-size: 20px; font-weight: 800; color: var(--accent); }
.pl-lbl { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }


.pl-lbl i { margin-right: 6px; opacity: 0.8; }

.pl-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pl-filter input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.pl-filter input[type="text"]:focus { outline: none; border-color: var(--accent); }


.pl-table-wrap { overflow-x: auto; }



.pl-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
.pl-table th,
.pl-table td {
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--stroke);
}
.pl-table th {
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.pl-table th a { color: inherit; display: inline-flex; align-items: center; gap: 5px; }
.pl-table th a:hover { color: var(--text); }
.pl-table th.sorted a { color: var(--accent); }


.pl-table th i { font-size: 9px; opacity: .35; }
.pl-table th.sorted i { opacity: 1; }





.pl-table th .pl-th-ico { font-size: 10.5px; opacity: .55; }
.pl-table th.sorted .pl-th-ico { opacity: .9; }
.pl-table tbody tr:hover { background: var(--hover); }






.pl-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--muted);
  


  flex: none;
}
.pl-dot.on {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 8px var(--green);
}


.pl-state {
  display: inline-flex;
  align-items: center;
  

  gap: 7px;
  padding: 3px 11px 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--well);
  border: 1px solid var(--stroke);
}
.pl-state.on {
  color: var(--green);
  background: rgba(56, 211, 124, 0.1);
  border-color: rgba(56, 211, 124, 0.35);
}

.pl-empty { text-align: center; color: var(--muted); padding: 28px 10px !important; }

.pl-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.pl-pager .pg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--stroke);
  border-radius: 6px;
}
.pl-pager .pg:hover { border-color: var(--accent); }
.pl-pager .pg.active { background: var(--accent); color: var(--bg); font-weight: bold; border-color: var(--accent); }
.pl-pager .pg.off { opacity: .35; pointer-events: none; }
.pl-pager .pg-gap { color: var(--muted); }
.pl-pager .pg-info { color: var(--muted); font-size: 11px; margin-left: 8px; }

@media (max-width: 700px) {
  .pl-kpi { grid-template-columns: repeat(2, 1fr); }
}









.acc-bar { padding: 18px 22px; }
.acc-bar .acc-profile { margin: 0; }








.acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  


  gap: 14px;
  align-items: start;
}


.acc-grid > .card { margin-bottom: 0; }

@media (max-width: 900px) {
  .acc-grid { grid-template-columns: 1fr; }
}







.acc-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.acc-col > .card { margin-bottom: 0; }













.admin-only {
  margin-top: 18px;
  padding: 14px;
  border: 1px dashed rgba(255, 204, 102, 0.42);
  border-radius: var(--r);
  background: rgba(255, 204, 102, 0.045);
}

.admin-only-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 12px;
}
.admin-only-head > i { color: var(--amber); font-size: 12px; }

.admin-only-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}



.admin-only-head > p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 560px) {
  .admin-only { padding: 12px; }
  .admin-only-head > p { flex: 1 1 100%; }
}






body.light-mode .admin-only {
  border-color: rgba(156, 100, 16, 0.40);
  background: rgba(156, 100, 16, 0.07);
}








.pl-link { color: var(--accent); font-weight: 700; }
.pl-link:hover { text-decoration: underline; }



.pl-avatar-fallback {
  

  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 24px;
  flex: none;
}

.pl-uuid-inline {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
}










.hy-uuid code {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  user-select: all;
  word-break: break-all;
}


.hy-meta li.hy-uuid { flex-wrap: wrap; }






.set-tools { margin-top: 22px; }





.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 10px;
  padding: 14px;
}

.tool-card {
  padding: 12px 14px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}

.tool-top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tool-top > i { color: var(--accent); font-size: 14px; width: 16px; text-align: center; }

.tool-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  
  flex: 1;
}

.tool-card .tool-btn {
  padding: 5px 12px;
  font-size: 12px;
  white-space: nowrap;
}

.tool-desc {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}





.tool-out {
  margin: 10px 0 0;
  padding: 9px 12px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-left: 3px solid var(--stroke);
  border-radius: var(--r);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  

  max-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.tool-out.ok  { border-left-color: var(--green); color: var(--text); }
.tool-out.err { border-left-color: var(--red);   color: var(--text); }









.api-block { padding: 14px 20px 18px; }
.api-block > :last-child { margin-bottom: 0; }

.api-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}
.api-actions .btn { padding: 9px 14px; font-size: 13px; }



.api-ext { font-size: 10px; opacity: 0.6; margin-left: -4px; }



.api-note {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
  max-width: 34ch;
}


.api-row-act { width: 1%; white-space: nowrap; text-align: right; }

.btn-row {
  padding: 5px 11px !important;
  font-size: 12px !important;
  gap: 6px !important;
}











@media (max-width: 560px) {
  .api-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .api-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 14px;
  }

  

  .tool-top { flex-wrap: wrap; }
  

  .tool-card .tool-btn {
    flex: 1 1 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 8px;
  }

  

  .btn-row { padding: 8px 12px !important; }
}







.pl-loading,
#plResults.htmx-request {
  opacity: 0.45;
  transition: opacity 0.15s ease;
  pointer-events: none;
}











.hy-stats {
  



  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.hy-stats-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.hy-stats-head h1,
.hy-stats-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}
.hy-stats-head h1 i,
.hy-stats-head h3 i { color: var(--accent); margin-right: 8px; }
.hy-stats-when { font-size: 11px; color: var(--muted); }


.hy-block-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hy-block-title i { color: var(--accent); font-size: 13px; }

.hy-block-count { margin-left: auto; color: var(--accent); }


















.hy-groups {
  columns: 320px;
  column-gap: 14px;
}
.hy-group {
  
  break-inside: avoid;
  
  margin: 0 0 14px;
}

.hy-stat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  



  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  gap: 8px;
}
.hy-stat-grid li {
  padding: 9px 11px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.hy-stat-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  word-break: break-word;
}
.hy-stat-key {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--muted);
}



.hy-stat-key i {
  flex: none;
  width: 11px;
  text-align: center;
  font-size: 9.5px;
  color: var(--accent);
  opacity: 0.75;
}




.hy-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--well);
  border: 1px solid var(--stroke);
  overflow: hidden;
}
.hy-bar > span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.4s ease;
}












.hy-bar.is-graded > span,
.hy-ach-bar2 > span {
  background: hsl(var(--bar-hue, 197) 78% 52%);
  transition: width 0.4s ease, background-color 0.4s ease;
}






body.light-mode .hy-bar.is-graded > span,
body.light-mode .hy-ach-bar2 > span {
  background: hsl(var(--bar-hue, 197) 72% 40%);
}




.hy-bar.is-graded > span[style*="--bar-hue: 120"],
.hy-ach-bar2 > span[style*="--bar-hue: 120"] {
  box-shadow: 0 0 8px hsl(120 78% 52% / 0.55);
}
.hy-bar-txt {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--muted);
}

.hy-bars { display: flex; flex-direction: column; gap: 12px; }
.hy-bar-row .hy-bar-lbl {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--muted);
}
.hy-bar-lbl i { margin-right: 6px; color: var(--accent); }
.hy-bar-lbl b { color: var(--text); }


.hy-level-card { margin: 0; }
.hy-level-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 12px;
}
.hy-level-now { font-weight: 800; color: var(--accent); }
.hy-level-next { color: var(--muted); }
.hy-level-card .hy-bar { height: 12px; }


.pl-of { font-size: 13px; font-weight: 700; color: var(--muted); }












.hy-ach-bar { margin: 0 0 14px; }



.hy-ach-wrap {
  max-height: 320px;
  overflow-y: auto;
  
  overscroll-behavior: contain;
  padding-right: 4px;
}


.hy-ach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: 8px;
}

.hy-ach-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}


.hy-ach-ico {
  flex: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
  color: var(--amber);
  background: rgba(255, 204, 102, 0.1);
  border: 1px solid rgba(255, 204, 102, 0.3);
}


.hy-ach-body { min-width: 0; flex: 1; }

.hy-ach-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.hy-ach-meta {
  display: block;
  margin-top: 2px;
  font-size: 10.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}




.hy-ach-row.hy-ach-todo { background: transparent; border-style: dashed; }
.hy-ach-row.hy-ach-todo .hy-ach-ico {
  color: var(--muted);
  background: var(--well);
  border-color: var(--stroke);
}
.hy-ach-row.hy-ach-todo .hy-ach-name { color: var(--muted); }





.hy-ach-pct { color: var(--muted); opacity: 0.75; margin-left: 4px; }

.hy-ach-bar2 {
  margin-top: 5px;
  height: 4px;
  border-radius: 999px;
  background: var(--well);
  overflow: hidden;
}
.hy-ach-bar2 > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  
}




.pl-pvp {
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--red);
  border: 1px solid var(--stroke);
  border-radius: 999px;
}




.pl-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.pl-cell-txt { min-width: 0; }













.pl-table th,
.pl-table td { white-space: nowrap; }
.pl-table td.pl-empty { white-space: normal; }
















@media (max-width: 800px) {
  .pl-table:not(.top-table) th:first-child,
  .pl-table:not(.top-table) td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--card);
    
    border-right: 1px solid var(--stroke);
  }

  



  .pl-table:not(.top-table) tbody tr:hover td:first-child {
    background-image: linear-gradient(var(--hover), var(--hover));
  }
}





























@media (max-width: 700px) {
  .pl-table-wrap { margin-inline: calc(-1 * var(--pad)); }

  




  .api-block .pl-table-wrap { margin-inline: -20px; }
}

@media (max-width: 560px) {
  .pl-table .pl-row-avatar { display: none; }

  



  .top-table { min-width: 0; }

  .pl-cell-name .pl-link {
    display: block;
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}












.pl-cell-name {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}
.pl-cell-name .pl-link { white-space: nowrap; }

.pl-row-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--stroke);
  background: var(--well);
  
  flex: none;
}



.pl-row-avatar-none {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}








.dl-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 14px;
}

.dl-step {
  position: relative;
  display: flex;
  flex-direction: column;
  

  gap: 10px;
}
.dl-step h3 { margin: 0; padding-right: 44px; }
.dl-step .sub { margin: 0; }
.dl-step .dl-step-btn { margin-top: auto; }



.dl-step-num {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  background: var(--well);
  border: 1px solid var(--stroke);
}

.dl-step-btn { align-self: flex-start; }

.dl-list { list-style: none; margin: 0; padding: 0; font-size: 13px; }
.dl-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 3px 0;
  color: var(--muted);
  line-height: 1.5;
}
.dl-list i { color: var(--green); margin-top: 3px; font-size: 11px; }





.dl-spec-wrap {
  margin-top: 14px;
  overflow-x: auto;
}

.dl-spec {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}
.dl-spec th,
.dl-spec td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--stroke);
}
.dl-spec thead th {
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--stroke);
}
.dl-spec tbody tr:last-child th,
.dl-spec tbody tr:last-child td { border-bottom: 0; }



.dl-spec tbody th {
  width: 1%;
  white-space: nowrap;
  font-weight: 700;
  color: var(--text);
}
.dl-spec tbody th i { color: var(--accent); margin-right: 8px; }

.dl-spec ul { list-style: none; margin: 0; padding: 0; }
.dl-spec li { padding: 1px 0; color: var(--muted); }


.dl-spec .dl-rec { background: rgba(85, 214, 255, 0.04); }
.dl-spec thead .dl-rec { color: var(--accent); }
.dl-spec tbody .dl-rec li { color: var(--text); }

.dl-spec .dl-same { color: var(--muted); }
.dl-same-tag {
  margin-left: 8px;
  padding: 1px 7px;
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  white-space: nowrap;
}

.dl-spec-note { margin: 12px 0 0; font-size: 12px; }












.dl-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}


.dl-row > * { height: 100%; }



.dl-row:not(:has(.srv-status)) { grid-template-columns: minmax(0, 1fr); }

@media (max-width: 900px) {
  .dl-row { grid-template-columns: minmax(0, 1fr); }
}



.dl-help {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.dl-help h3 { margin: 0; }
.dl-help .sub { margin: 0; }


.dl-help-btn { margin-top: auto; }














.page-frame {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 24px;
  transition: background 0.3s ease, border-color 0.3s ease;
}


.page-frame > .hero:first-child { padding-top: 0; }








.page-head:has(+ .hero) { margin-bottom: 0; }









.hy-stats:has(+ .hero) { margin-bottom: 0; }









.srv-panel {
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  overflow: hidden;
}
.srv-panel + .srv-panel { margin-top: 12px; }








.kicker + .srv-panel { margin-top: 12px; }





.srv-ip {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.srv-ip:hover { background: var(--hover); }
.srv-ip:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }






.srv-ip-row {
  display: flex;
  gap: 10px;
}












@media (max-width: 560px) {
  .srv-ip-row { flex-direction: column; align-items: stretch; }
  

  .srv-ip-row .srv-copy { justify-content: center; padding: 11px 12px; }
}
.srv-ip-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}








code.srv-ip-value {
  

  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  
  word-break: break-all;
}

.srv-copy {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  transition: 0.15s;
}
.srv-ip:hover .srv-copy { color: var(--accent); border-color: var(--accent); }





.srv-facts {
  list-style: none;
  margin: 0;
  padding: 9px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
  background: var(--well);
}
.srv-facts i { color: var(--muted); margin-right: 6px; opacity: 0.8; }








.srv-status { padding: 16px; }













.srv-status .status-row {
  display: flex !important;
  flex: 1 1 auto;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  gap: 8px;
  flex-wrap: wrap;
}
.srv-status .status-row .badge {
  flex: 1 1 auto;
  
  max-width: 280px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}











.srv-status .status-row .badge.down {
  max-width: none;
  padding: 9px 12px;
  font-size: 13px;
}







.srv-status .players-bar-row { margin-top: 14px; }

.srv-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.srv-count b {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  
  font-variant-numeric: tabular-nums;
}
.srv-count span { font-size: 12.5px; color: var(--muted); }

.srv-status .player-bar-bg { height: 8px; border-radius: 999px; }
.srv-status .player-bar-fill { border-radius: 999px; }


.players-container { margin-top: 12px; }







#htPlayersList[hidden],
.srv-players-list[hidden] { display: none; }

.srv-players-list {
  display: block;
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  word-break: break-word;
}






.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}








.homeHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  


  gap: 14px;
  







  align-items: stretch;
}
@media (max-width: 900px) {
  .homeHero { grid-template-columns: minmax(0, 1fr); }
}

.home-intro { display: flex; flex-direction: column; height: 100%; }
.home-side { height: 100%; }




.home-title {
  margin: 14px 0 8px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -1px;
}



.home-lead {
  margin: 0 0 10px;
  






  max-width: 78ch;
}
.home-lead:last-of-type { margin-bottom: 18px; }

.home-lead b { color: var(--text); font-weight: 700; }

.home-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}












@media (max-width: 620px) {
  .home-cta {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
  .home-cta .btn {
    width: 100%;
    justify-content: center;
    
    gap: 8px;
    padding-inline: 10px;
  }
}





@media (max-width: 440px) {
  .home-cta { grid-auto-flow: row; }
}








.home-live {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.home-num {
  text-align: center;
  

  display: block;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}



a.home-num:hover {
  border-color: var(--tone, var(--accent));
  transform: translateY(-2px);
}
a.home-num:focus-visible {
  outline: 2px solid var(--tone, var(--accent));
  outline-offset: 2px;
}

.home-num-val {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  



  color: var(--tone, var(--accent));
  
  font-variant-numeric: tabular-nums;
  

  white-space: nowrap;
}



.home-num-lbl i { color: var(--tone, var(--accent)); opacity: 0.75; }
.home-num-lbl {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--muted);
}
.home-num-lbl i { margin-right: 6px; opacity: 0.8; }

.home-top h3 { margin: 0 0 12px; font-size: 15px; }
.home-top h3 i { color: var(--accent); margin-right: 8px; }

.home-top-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-top-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}

.home-top-rank {
  flex: none;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
}


.home-top-list li:first-child .home-top-rank {
  color: var(--amber);
  border-color: var(--amber);
}
.home-top-name { flex: 1; display: flex; align-items: center; gap: 8px; font-weight: 700; }







.home-top-time {
  flex: none;
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}



@media (max-width: 460px) {
  .home-top-time { display: none; }
}
.home-top-name a { color: var(--accent); }
.home-top-name a:hover { text-decoration: underline; }



.home-top-lvl {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(85, 214, 255, 0.08);
  border: 1px solid rgba(85, 214, 255, 0.25);
  white-space: nowrap;
}
.home-top-lvl span { font-size: 10px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--muted); }


.home-top-lvl { min-width: 76px; justify-content: center; }
.home-top-lvl b {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  
  font-variant-numeric: tabular-nums;
}


.rule-no { color: var(--red); }
.rule-yes { color: var(--green); }









.home-banner {
  



  width: 100%;
  max-height: none;
  


  margin: auto 0 0;
}





















.home-side {
  display: flex;
  flex-direction: column;
  
  gap: 14px;
  min-width: 0;
}













.home-discord { margin: 0; flex: 0 0 auto; display: flex; flex-direction: column; }
.home-discord h2 {
  margin: 0 0 10px;
  

  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-discord h2 i { color: var(--accent); font-size: 14px; }








.dc-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}
.dc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 22%, transparent);
}

.dc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }

.dc-member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: var(--r);
  transition: background .15s;
}
.dc-member:hover { background: var(--well); }
.dc-member img, .dc-avatar-none { flex: none; width: 28px; height: 28px; border-radius: 50%; }
.dc-avatar-none {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  background: var(--well);
  border: 1px solid var(--stroke);
}












.dc-name {
  flex: 1 1 auto;
  min-width: 4ch;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dc-game {
  

  flex: 0 1 auto;
  min-width: 0;
  font-size: 11px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dc-game i { opacity: .6; margin-right: 3px; }


.dc-status { flex: none; margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.dc-status.is-online { background: var(--green); }
.dc-status.is-idle   { background: var(--amber); }
.dc-status.is-dnd    { background: var(--red); }

.dc-more, .dc-empty { margin: 8px 0 0; font-size: 12px; color: var(--muted); }



.dc-join { margin-top: 14px; justify-content: center; }










.homeHero .kicker {
  display: flex;
  width: auto;
  margin-left: 0;
  margin-right: 0;
}



.hy-ach-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.hy-ach-sort-btn {
  appearance: none;
  cursor: pointer;
  padding: 4px 11px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  transition: 0.15s;
}
.hy-ach-sort-btn:hover { color: var(--text); border-color: var(--accent); }


.hy-ach-sort-btn.is-on {
  color: var(--accent);
  background: rgba(85, 214, 255, 0.1);
  border-color: rgba(85, 214, 255, 0.35);
}




















html:has(body.light-mode) {
  --sb-thumb: #c3ccd8;
  --sb-thumb-hover: #a9b5c4;
  --sb-track: rgba(0, 0, 0, 0.06);

  


  --well: rgba(20, 40, 70, 0.055);
  --hover: rgba(20, 40, 70, 0.05);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--sb-thumb) var(--sb-track);
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track {
  background: var(--sb-track);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb);
  border-radius: 999px;
  

  border: 2px solid transparent;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--sb-thumb-hover);
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner { background: transparent; }














.top-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 14px;
}

.top-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s;
}
.top-cat:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}



.top-cat-icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  font-size: 18px;
  
  color: var(--tone, var(--accent));
  background: var(--tone-bg, var(--glass));
  border: 1px solid var(--tone-br, var(--stroke));
}







.page-head h1 i.top-head-ico { color: var(--tone, var(--accent)); }












.tone-sky    { --tone: #58c8ef; --tone-bg: rgba(88, 200, 239, 0.13); --tone-br: rgba(88, 200, 239, 0.30); }
.tone-violet { --tone: #a78bfa; --tone-bg: rgba(167, 139, 250, 0.13); --tone-br: rgba(167, 139, 250, 0.30); }
.tone-green  { --tone: #4ade80; --tone-bg: rgba(74, 222, 128, 0.13);  --tone-br: rgba(74, 222, 128, 0.30); }
.tone-orange { --tone: #f0883e; --tone-bg: rgba(240, 136, 62, 0.13);  --tone-br: rgba(240, 136, 62, 0.30); }
.tone-teal   { --tone: #2dd4bf; --tone-bg: rgba(45, 212, 191, 0.13);  --tone-br: rgba(45, 212, 191, 0.30); }
.tone-pink   { --tone: #f472b6; --tone-bg: rgba(244, 114, 182, 0.13); --tone-br: rgba(244, 114, 182, 0.30); }
.tone-gold   { --tone: #facc15; --tone-bg: rgba(250, 204, 21, 0.13);  --tone-br: rgba(250, 204, 21, 0.30); }
.tone-red    { --tone: #ff5a6a; --tone-bg: rgba(255, 90, 106, 0.13);  --tone-br: rgba(255, 90, 106, 0.30); }
.tone-purple { --tone: #c084fc; --tone-bg: rgba(192, 132, 252, 0.13); --tone-br: rgba(192, 132, 252, 0.30); }





body.light-mode .tone-sky    { --tone: #0e7490; --tone-bg: rgba(14, 116, 144, 0.10);  --tone-br: rgba(14, 116, 144, 0.25); }
body.light-mode .tone-violet { --tone: #6d28d9; --tone-bg: rgba(109, 40, 217, 0.10);  --tone-br: rgba(109, 40, 217, 0.25); }
body.light-mode .tone-green  { --tone: #15803d; --tone-bg: rgba(21, 128, 61, 0.10);   --tone-br: rgba(21, 128, 61, 0.25); }
body.light-mode .tone-orange { --tone: #c2410c; --tone-bg: rgba(194, 65, 12, 0.10);   --tone-br: rgba(194, 65, 12, 0.25); }
body.light-mode .tone-teal   { --tone: #0f766e; --tone-bg: rgba(15, 118, 110, 0.10);  --tone-br: rgba(15, 118, 110, 0.25); }
body.light-mode .tone-pink   { --tone: #be185d; --tone-bg: rgba(190, 24, 93, 0.10);   --tone-br: rgba(190, 24, 93, 0.25); }
body.light-mode .tone-gold   { --tone: #a16207; --tone-bg: rgba(161, 98, 7, 0.10);    --tone-br: rgba(161, 98, 7, 0.25); }
body.light-mode .tone-red    { --tone: #be123c; --tone-bg: rgba(190, 18, 60, 0.10);   --tone-br: rgba(190, 18, 60, 0.25); }
body.light-mode .tone-purple { --tone: #7e22ce; --tone-bg: rgba(126, 34, 206, 0.10);  --tone-br: rgba(126, 34, 206, 0.25); }

.top-cat-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.top-cat-name { font-weight: 800; font-size: 14px; color: var(--text); }
.top-cat-note { font-size: 11.5px; color: var(--muted); }


.top-cat-count {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.top-cat-count b { font-size: 19px; font-weight: 800; color: var(--text); }
.top-cat-count span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }



.top-table .top-th-rank { width: 52px; }
.top-table .top-th-val,
.top-table .top-td-val { text-align: right; }
.top-table .top-td-val {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  
  font-variant-numeric: tabular-nums;
}




.top-table .top-val-sub {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}



@media (max-width: 560px) {
  .top-table .top-val-sub { display: block; margin-left: 0; font-size: 11px; }
}


.top-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
}

.top-table tbody tr:first-child .top-rank { color: var(--amber); border-color: var(--amber); }







.hy-ach-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}








.hy-ach-left { display: flex; flex-wrap: wrap; align-items: stretch; gap: 6px; }
.hy-ach-filter { display: flex; flex-wrap: wrap; align-items: stretch; gap: 6px; }

.hy-ach-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  cursor: pointer;
  transition: 0.15s;
}
.hy-ach-tab i { font-size: 11px; }
.hy-ach-tab:hover:not(:disabled) { color: var(--text); border-color: var(--accent); }
.hy-ach-tab.is-on {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(85, 214, 255, 0.1);
}



.hy-ach-tab:disabled { opacity: 0.4; cursor: default; }



.hy-ach-tab-n {
  font-size: 10.5px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--well);
}
.hy-ach-tab.is-on .hy-ach-tab-n { color: var(--accent); }



.hy-ach-row.is-off { display: none; }

.hy-ach-none { text-align: center; padding: 18px 10px; margin: 0; }










.hy-quests {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 2px 14px;
}

.hy-quest {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 8px;
  border-radius: var(--r);
  font-size: 13px;
  

  color: var(--muted);
}
.hy-quest:hover { background: var(--hover); }
.hy-quest.is-done { color: var(--text); }



.hy-quest-ico {
  flex: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border-radius: var(--r);
  color: var(--muted);
  background: var(--well);
  border: 1px solid var(--stroke);
}






.hy-quest.is-done .hy-quest-ico {
  color: var(--green);
  border-color: var(--green);
  background: rgba(46, 204, 113, 0.12);
}

.hy-quest-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hy-quest.is-done .hy-quest-name { font-weight: 700; }



.hy-quest-times {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  color: var(--amber);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 1px 7px;
  font-variant-numeric: tabular-nums;
}




.hy-ach-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  


  padding: 6px 11px;
  font-size: 12px;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.hy-ach-cat:focus-within { border-color: var(--accent); }
.hy-ach-cat i { font-size: 10.5px; opacity: .7; }



.hy-ach-cat select {
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  outline: none;
}


















.don-1 { color: #856404; }
.don-2 { color: #5b6673; }
.don-3 { color: #8a4f24; }




.top-rank.don-1,
.top-rank.don-2,
.top-rank.don-3 { border-color: currentColor; background: color-mix(in srgb, currentColor 12%, transparent); }



body:not(.light-mode) .don-1 { color: #ffd700; }
body:not(.light-mode) .don-2 { color: #c0c0c0; }
body:not(.light-mode) .don-3 { color: #cd7f32; }



.hy-quest { cursor: pointer; }
.hy-quest:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.hy-quest-note { margin: 12px 0 0; font-size: 11.5px; text-align: center; }

.hy-quest-modal-title { margin: 0 0 6px; font-size: 19px; }
.hy-quest-modal-sum { margin: 0 0 14px; }



.hy-quest-log {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  text-align: left;
  font-size: 13px;
}
.hy-quest-log li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--stroke);
  font-variant-numeric: tabular-nums;
}
.hy-quest-log li:last-child { border-bottom: none; }
.hy-quest-log b { color: var(--accent); }
.hy-quest-log span { color: var(--muted); }











.hy-quest-log li.is-undated { opacity: .45; }
.hy-quest-log li.is-undated b { color: var(--muted); }
.hy-quest-log li.is-undated span { font-style: italic; }

.hy-quest-log:empty { margin: 0; }











.rule-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 14px;
}
.rule-cards li { display: flex; gap: 12px; align-items: flex-start; }
.rule-cards b { display: block; font-size: 14px; margin-bottom: 3px; }
.rule-cards .sub { margin: 0; font-size: 12.5px; }



.rule-ico {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: var(--r);
  background: var(--well);
  border: 1px solid var(--stroke);
}
.rule-ico-no  { color: var(--red);   border-color: color-mix(in srgb, var(--red) 45%, transparent); }
.rule-ico-yes { color: var(--green); border-color: color-mix(in srgb, var(--green) 45%, transparent); }


.rule-steps {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rule-steps li { display: flex; gap: 12px; align-items: flex-start; }
.rule-steps b { display: block; font-size: 14px; margin-bottom: 3px; }
.rule-steps .sub { margin: 0; font-size: 12.5px; }


.rule-step-n {
  flex: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  color: var(--amber);
  background: var(--well);
  border: 1px solid var(--stroke);
}



















.guide-page .tile:not(.guide-next) > * + * { margin-top: 12px; }


.guide-cats {
  list-style: none;
  
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.guide-cats li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  font-size: 12.5px;
  color: var(--muted);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.guide-cats i { font-size: 11px; color: var(--accent); }

.guide-cats span {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text);
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}










.guide-credits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.guide-credits li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  
  min-width: 0;
}

.guide-credits > li > i {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  color: var(--accent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}
.guide-credits .cr-txt { min-width: 0; }
.guide-credits .cr-txt a,
.guide-credits .cr-txt b {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.guide-credits .cr-txt a:hover { color: var(--accent); }
.guide-credits .cr-txt span {
  display: block;
  margin-top: 1px;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--muted);
}




.guide-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.guide-next .hy-block-title { margin-top: 0; }
.guide-next .sub { margin: 12px 0 0; }
.guide-next-btns { display: flex; flex-wrap: wrap; gap: 10px; }


.home-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.home-support h2 { margin: 0 0 6px; font-size: 20px; }
.home-support .sub { margin: 0; max-width: 62ch; }











@media (max-width: 750px) {
  .home-support .btn {
    width: 100%;
    justify-content: center;
  }
}





.user-menu-title {
  margin: 6px 4px 2px;
  padding-top: 8px;
  border-top: 1px solid var(--stroke);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}




.home-num-note {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  color: var(--muted);
  opacity: .75;
  font-variant-numeric: tabular-nums;
}











@media (max-width: 560px) {
  
  .hy-ach-tab,
  .hy-ach-sort-btn,
  .hy-ach-cat {
    min-height: 40px;
  }
  .hy-ach-sort-btn { padding: 8px 14px; }

  

  .hy-ach-cat select { height: 100%; }

  

  .hy-quest { padding: 8px; }

  

  .pl-table th a {
    padding: 10px 0;
    margin: -10px 0;
  }

  

  .burger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  .theme-btn {
    min-width: 44px;
    min-height: 44px;
  }
}






.pl-table-wrap,
.dl-spec-wrap {
  background:
    linear-gradient(to left, var(--card), rgba(0, 0, 0, 0)) right / 24px 100% no-repeat local,
    radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0)) right / 12px 100% no-repeat scroll;
}








.err-page { text-align: center; }

.err-head {
  position: relative;
  padding: 30px 16px 26px;
  overflow: hidden;
}



.err-code {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(90px, 26vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.err-head h1 {
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(22px, 5vw, 30px);
}
.err-head h1 i { color: var(--accent); margin-right: 10px; }
.err-head .sub {
  position: relative;
  margin: 0 auto;
  max-width: 52ch;
}


.err-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 12px;
  text-align: left;
}

.err-link {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s;
}
.err-link:hover { border-color: var(--accent); transform: translateY(-2px); }

.err-link-ico {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}

.err-link-body { flex: 1; min-width: 0; }
.err-link-title { display: block; font-weight: 800; font-size: 14px; color: var(--text); }
.err-link-text  { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }



.err-link-go { flex: none; font-size: 11px; color: var(--muted); opacity: .5; }
.err-link:hover .err-link-go { opacity: 1; color: var(--accent); }

.err-foot { margin: 20px 0 4px; font-size: 12.5px; }







































.alert-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 12px;
}






















.alert-wrap + .hero,
.alert-wrap + script + .hero,
.alert-wrap + section,
.alert-wrap + script + section { padding-top: 0; }















.wrap > .hero:first-child,
.wrap > script:first-child + .hero { padding-top: 0; }

.site-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow);
  font-size: 13.5px;
}



.site-alert-ico {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: var(--r);
  background: var(--well);
  border: 1px solid var(--stroke);
}




.site-alert-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.site-alert-title { display: block; font-size: 13.5px; }






.site-alert-text { color: var(--muted); }



.site-alert.tone-title .site-alert-text { color: color-mix(in srgb, var(--al) 35%, var(--text)); }
body.light-mode .site-alert.tone-title .site-alert-text { color: color-mix(in srgb, var(--al) 30%, var(--text)); }


.site-alert.tone-strong .site-alert-text { color: var(--text); }







.site-alert.align-center .site-alert-body { text-align: center; }




.site-alert .site-alert-title { font-weight: 400; }
.site-alert.bold-title .site-alert-title { font-weight: 700; }

.site-alert-btn { flex: none; }



.site-alert-x {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: 0.15s;
}
.site-alert-x:hover { color: var(--text); background: var(--well); border-color: var(--stroke); }


















.site-alert           { --al: var(--accent); }
.site-alert.is-info    { --al: var(--accent); }
.site-alert.is-success { --al: var(--green); }
.site-alert.is-warning { --al: var(--amber); }
.site-alert.is-danger  { --al: var(--red); }
.site-alert.is-event   { --al: var(--amber); }

.site-alert {
  background: color-mix(in srgb, var(--al) 22%, var(--card));
  border-color: color-mix(in srgb, var(--al) 48%, transparent);
}



.site-alert .site-alert-ico,
.site-alert .site-alert-title { color: color-mix(in srgb, var(--al) 80%, var(--text)); }




.site-alert.is-event {
  background: color-mix(in srgb, var(--al) 30%, var(--card));
  border-color: color-mix(in srgb, var(--al) 55%, transparent);
  border-left-width: 4px;
  border-left-color: var(--al);
}






body.light-mode .site-alert .site-alert-ico,
body.light-mode .site-alert .site-alert-title {
  color: color-mix(in srgb, var(--al) 45%, var(--text));
}



.site-alert .site-alert-ico { background: transparent; border-color: currentColor; }

@media (max-width: 560px) {
  




















  .site-alert      { flex-wrap: wrap; }
  .site-alert-ico  { order: 0; }
  .site-alert-body { order: 1; flex: 1 1 140px; }
  .site-alert-x    { order: 2; }
  .site-alert-btn  { order: 3; flex: 1 1 100%; justify-content: center; min-height: 40px; }
}




.al-list { display: flex; flex-direction: column; gap: 14px; }

.al-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
}


.al-item.is-hidden { opacity: .55; }

.al-ico {
  flex: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--accent);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}

.al-body { flex: 1; min-width: 0; }
.al-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.al-msg { margin: 0 0 6px; font-size: 13px; }
.al-when { margin: 0; font-size: 11.5px; }
.al-when i { opacity: .6; margin-right: 5px; }




.al-state {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: var(--well);
}
.al-item.is-live .al-state    { color: var(--green); border-color: color-mix(in srgb, var(--green) 45%, transparent); }
.al-item.is-waiting .al-state { color: var(--amber); border-color: color-mix(in srgb, var(--amber) 45%, transparent); }

.al-actions { flex: none; display: flex; flex-wrap: wrap; gap: 8px; }










@media (max-width: 620px) {
  .al-item { flex-wrap: wrap; }

  
  .al-actions { flex: 1 0 100%; }

  
  .al-actions .btn { flex: 1; justify-content: center; }
  

  .al-actions .al-del { flex: none; }
}






.al-modal { overflow-y: auto; align-items: flex-start; }
.al-box { max-height: calc(100vh - 40px); overflow-y: auto; }









.al-box { max-width: min(980px, 100%); text-align: left; }
.al-box h2 { margin: 0 0 16px; font-size: 19px; }

.al-form { display: flex; flex-direction: column; gap: 14px; }





.al-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  
  gap: 14px;
  align-items: start;
}
.al-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }



.al-col-h {
  margin: 0 0 2px;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--stroke);
}
.al-col-h i { margin-right: 6px; color: var(--accent); }



.al-check-mid { padding-top: 20px; }



.al-ed-wrap { display: flex; flex-direction: column; gap: 6px; }
.al-ed-lbl { font-size: 12px; font-weight: 700; color: var(--muted); }

.al-ed-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r) var(--r) 0 0;
  border-bottom: 0;
}
.al-ed-btn {
  width: 30px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: .15s;
}
.al-ed-btn:hover { color: var(--text); background: var(--card); border-color: var(--stroke); }
.al-ed-btn:active { transform: translateY(1px); }
.al-ed-sep { width: 1px; height: 18px; margin: 0 3px; background: var(--stroke); }

.al-ed {
  min-height: 84px;
  max-height: 220px;
  overflow-y: auto;
  padding: 10px 11px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: 0 0 var(--r) var(--r);
}
.al-ed:focus { outline: 2px solid var(--accent); outline-offset: -1px; }




.al-ed.is-empty::before {
  content: attr(data-ph);
  color: var(--muted);
  opacity: .6;
  pointer-events: none;
}



.al-ed a { color: var(--accent); text-decoration: underline; }

.al-ed-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.al-ed-count b { color: var(--text); }


.al-ed-count.is-over,
.al-ed-count.is-over b { color: var(--red); }
.al-form label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; font-weight: 700; color: var(--muted); }
.al-form input[type="text"],
.al-form input[type="number"],
.al-form input[type="date"],
.al-form select,
.al-form textarea {
  width: 100%;

  









  height: auto;
  

  min-height: 40px;

  

  text-align: left;
  padding: 9px 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.al-form textarea { resize: vertical; }

.al-form :focus-visible { outline: 2px solid var(--accent); outline-offset: -1px; }

.al-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 12px; }





.al-lbl { display: flex; align-items: baseline; gap: 6px; min-height: 15px; }
.al-opt { font-weight: 400; opacity: .6; }
.al-hint { margin: 8px 0 0; font-size: 11.5px; }










.al-form input.al-time { font-variant-numeric: tabular-nums; letter-spacing: .06em; }


.al-form input.al-time:invalid { border-color: var(--red); }



.al-sum {
  margin: 0;
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 8%, var(--well));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: var(--r);
}

.al-checks { align-items: center; }
.al-check { flex-direction: row !important; align-items: center; gap: 8px !important; color: var(--text); }
.al-check input { width: 16px; height: 16px; accent-color: var(--accent); }
.al-sort { max-width: 120px; }





.al-icon-pick { display: flex; flex-direction: column; gap: 6px; }
.al-icon-lbl { font-size: 12px; font-weight: 700; color: var(--muted); }

.al-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  gap: 6px;
  max-height: 190px;
  overflow-y: auto;
  padding: 8px;
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}

.al-icon {
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 15px;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  cursor: pointer;
  transition: 0.15s;
}
.al-icon:hover { color: var(--text); border-color: var(--accent); }
.al-icon.is-on {
  color: var(--accent);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}



.al-icon-auto { grid-column: span 2; font-size: 13px; }
.al-icon-auto span { font-size: 9px; text-transform: uppercase; letter-spacing: .04em; }




.al-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.al-note i { font-size: 16px; color: var(--accent); flex: none; }
.al-note .sub { margin: 0; flex: 1; min-width: 220px; font-size: 12.5px; }







.ty-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 26px 30px;
}

.ty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
}



.ty-icon.is-done {
  color: var(--green);
  background: rgba(56, 211, 124, 0.12);
  border: 1px solid rgba(56, 211, 124, 0.3);
}
.ty-icon.is-wait {
  color: var(--amber);
  background: rgba(255, 204, 102, 0.12);
  border: 1px solid rgba(255, 204, 102, 0.3);
}

.ty-title { margin: 0 0 10px; font-size: 26px; }
.ty-lead  { margin: 0 auto; max-width: 42ch; }

.ty-note {
  margin: 16px auto 0;
  max-width: 46ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}
.ty-note code { font-size: 12px; }

.ty-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}


@media (max-width: 440px) {
  .ty-actions { display: grid; grid-auto-flow: row; }
  .ty-actions .btn { width: 100%; justify-content: center; }
}







.ban-perm {
  font-weight: 700;
  color: var(--amber);
}



.ban-gone { color: var(--muted); font-style: italic; }
.ban-expired td { opacity: 0.55; }



.ban-last {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}



.api-row-act .btn + .btn { margin-left: 6px; }















select option {
  background: var(--bg2);
  color: var(--text);
}







.pulse-plot.has-chart .pulse-curve,
.pulse-plot.has-chart .pulse-ymax,
.pulse-plot.has-chart .pulse-ymin { display: none; }




.pulse-plot.has-chart {
  position: relative;
  height: 74px;
}
.pulse-canvas { display: block; width: 100%; height: 100%; }



.pulse-chart:has(.pulse-plot.has-chart) .pulse-axis { display: none; }











.pl-progress > summary .hy-block-title .pl-progress-chev { margin-left: 10px; }


.pl-act {
  display: flex;
  align-items: flex-end;
  

  gap: 3px;
  height: 46px;
  padding: 0 1px;
}



.pl-act-day {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  border-radius: 3px;
  cursor: help;
}
.pl-act-day > span {
  display: block;
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--accent) 85%, transparent),
      color-mix(in srgb, var(--accent) 40%, transparent));
  transition: filter .15s;
}
.pl-act-day:hover > span { filter: brightness(1.25); }




.pl-act-day.is-off > span {
  height: 2px !important;
  background: var(--stroke);
}
.pl-act-day.is-off:hover > span { filter: none; background: var(--muted); }


.pl-act-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  font-size: 12.5px;
  color: var(--muted);
}
.pl-fact { display: inline-flex; align-items: center; gap: 7px; }
.pl-fact i { font-size: 11px; color: var(--accent); opacity: .85; }
.pl-fact b { color: var(--text); font-weight: 800; }



.pl-fact .fa-fire { color: var(--amber); opacity: 1; }



@media (max-width: 560px) {
  .pl-act { height: 38px; gap: 2px; }
  .pl-act-facts { gap: 6px 12px; font-size: 12px; }
}





.pl-act-day.has-ev::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 3px;
  height: 3px;
  margin-left: -1.5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55;
}
.pl-act-day { position: relative; appearance: none; border: 0; padding: 0; background: none; }
.pl-act-day:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }



.pl-act-day.is-picked > span {
  background: var(--accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent);
}
.pl-act-day.is-picked::after { opacity: 1; }

.pl-act:has(.is-picked) .pl-act-day:not(.is-picked) > span { opacity: .45; }


.pl-tl-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
  padding: 8px 11px;
  font-size: 12.5px;
  color: var(--text);
  background: var(--well);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
}
.pl-tl-clear {
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.pl-tl-clear:hover { color: var(--accent); }







.hy-stat-insight {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--stroke);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
}
.hy-stat-insight i {
  flex: none;
  font-size: 12px;
  color: var(--accent);
}











.hy-stat-grid li { transition: border-color .15s, transform .15s; }
.hy-stat-grid li:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--stroke));
  transform: translateY(-1px);
}

















.hy-group { position: relative; overflow: hidden; }

.hy-group[class*="tone-"]::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--tone);
  

  border-radius: var(--r) var(--r) 0 0;
}


.hy-group[class*="tone-"] .hy-block-title i { color: var(--tone); }


.hy-group[class*="tone-"] .hy-stat-insight i { color: var(--tone); }



.hy-group[class*="tone-"] .hy-stat-grid li:hover {
  border-color: color-mix(in srgb, var(--tone) 45%, var(--stroke));
}









.pl-avatar-wrap {
  position: relative;
  flex: none;
  

  padding-bottom: 4px;
}



.pl-avatar-wrap .acc-avatar,
.pl-avatar-wrap .pl-avatar-fallback {
  border: 3px solid var(--stroke);
  transition: border-color .25s, box-shadow .25s;
}
.pl-avatar-wrap.is-online .acc-avatar,
.pl-avatar-wrap.is-online .pl-avatar-fallback {
  border-color: var(--green);
  
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 14%, transparent);
}


.pl-avatar-lvl {
  position: absolute;
  right: -4px;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 26px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--bg);
  background: var(--accent);
  

  border: 2px solid var(--card);
  justify-content: center;
}
.pl-avatar-pres { font-size: 9px; color: var(--amber); }

@media (max-width: 560px) {
  .pl-avatar-lvl { height: 22px; font-size: 11px; padding: 0 7px; }
}











.hy-level-card .hy-bar {
  height: 22px;
  position: relative;
}
.hy-level-card .hy-bar > span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  

  background: linear-gradient(90deg,
      color-mix(in srgb, var(--accent) 55%, transparent), var(--accent));
}



.hy-bar-pct {
  font-size: 11px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: .2px;
}

.hy-bar-pct.is-out {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}


.hy-level-card .hy-bar-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.hy-bar-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
}
.hy-bar-left i { font-size: 10px; opacity: .85; }












.hy-stat-grid li.has-spark { position: relative; overflow: hidden; }

.hy-spark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 26px;
  

  color: var(--accent);
  opacity: .28;
  pointer-events: none;
}
.hy-group[class*="tone-"] .hy-spark { color: var(--tone); }



.hy-stat-grid li.has-spark:hover .hy-spark { opacity: .55; }



.hy-stat-grid li.has-spark .hy-stat-val,
.hy-stat-grid li.has-spark .hy-stat-key { position: relative; z-index: 1; }





.hy-stat-of {
  margin-left: 2px;
  font-size: .72em;
  font-weight: 700;
  color: var(--muted);
}


.hy-stat-grid li.has-max { position: relative; padding-bottom: 12px; }
.hy-stat-max {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--stroke);
  overflow: hidden;
}
.hy-stat-max > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}
.hy-group[class*="tone-"] .hy-stat-max > span { background: var(--tone); }




.top-cat-lead {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  font-size: 12.5px;
  color: var(--muted);
}
.top-cat-lead i {
  flex: none;
  font-size: 10px;
  

  color: var(--amber);
  align-self: center;
}
.top-cat-lead-val {
  flex: none;
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .top-cat-lead { font-size: 12px; gap: 6px; }
}



.top-cat-lead.is-riser i { color: var(--green); }
.top-cat-lead.is-riser .top-cat-lead-val { color: var(--green); }




.top-cat-lead.is-riser i,
.top-cat-lead.is-riser .top-cat-lead-val { color: var(--green); }
.top-cat-lead.is-riser .top-cat-lead-val { font-size: 13px; font-weight: 800; }
.top-cat-lead-when { color: var(--muted); }









.top-val-bar {
  


  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 110px;
  height: 3px;
  margin: 5px 0 0 auto;
  border-radius: 999px;
  background: var(--stroke);
  overflow: hidden;
}
.top-val-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  opacity: .55;
}

.top-table tbody tr:first-child .top-val-bar > span { opacity: .9; }













.top-table .top-th-gain,
.top-table .top-td-gain { text-align: right; white-space: nowrap; width: 1%; }

.top-gain {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.top-gain i { font-size: 10px; opacity: .85; }

.top-gain.is-none { color: var(--muted); font-weight: 600; }



.top-gain-inline { display: none; }

@media (max-width: 560px) {
  


  .top-th-gain, .top-td-gain { display: none; }
  .top-gain-inline { display: block; margin-top: 5px; font-size: 12px; }
  .top-val-bar { max-width: 80px; }
}












.acc-bar .acc-profile { flex-wrap: nowrap; }
.acc-bar-btn { margin-left: auto; flex: none; }



.acc-badge.is-supporter { color: #ff6b8a; }


.acc-total-rank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--well);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.acc-total-rank i { font-size: 11px; color: var(--accent); }


.acc-sup-rhythm { margin-top: 16px; }

.acc-sup-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
}


.acc-sup-bar {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  min-width: 0;
}










.acc-sup-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 20px;
  height: 100%;
  border-radius: 3px;
  background: color-mix(in srgb, var(--stroke) 38%, transparent);
}
.acc-sup-bar > i {
  position: relative;   
  width: 100%;
  border-radius: 3px;
  background: var(--stroke);
}
.acc-sup-bar.has > i {
  background: linear-gradient(180deg, #ff6b8a, rgba(255, 107, 138, .55));
}

.acc-sup-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 560px) {
  

  .acc-bar .acc-profile { flex-wrap: wrap; }
  .acc-bar-btn { margin-left: 0; width: 100%; justify-content: center; }
}




.acc-sup-bar > i { max-width: 20px; margin: 0 auto; }












.home-num-move {
  display: block;
  margin-top: 7px;
  

  text-wrap: balance;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.home-num-move i { font-size: 9px; margin-right: 5px; opacity: .85; }



.home-num-of {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  opacity: .85;
}






.home-top-gain {
  flex: none;
  width: 46px;
  text-align: right;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.home-top-gain i { font-size: 9px; margin-right: 3px; opacity: .85; }

@media (max-width: 460px) {
  
  .home-top-gain { display: none; }
}


















.hy-badges .hy-badges-lead { margin: 14px 0 16px; }

.hy-badge-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  

  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.hy-badge {
  


  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: var(--r);
  background: var(--well);
  

  border: 1px dashed var(--stroke);
  min-width: 0;
}
.hy-badge.is-earned {
  border-style: solid;
  border-color: rgba(230, 178, 60, 0.45);
  background: linear-gradient(180deg, rgba(230, 178, 60, 0.10), transparent 70%), var(--well);
}

.hy-badge-ico {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
}
.hy-badge.is-earned .hy-badge-ico {
  color: var(--amber);
  border-color: rgba(230, 178, 60, 0.45);
}

.hy-badge-body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }

.hy-badge-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.25;
}
.hy-badge.is-earned .hy-badge-name { color: var(--text); }



.hy-badge-epithet {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  opacity: .85;
  line-height: 1.35;
}

.hy-badge-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.hy-badge-meta.is-done { color: var(--green); font-weight: 700; }
.hy-badge-meta i { margin-right: 5px; font-size: 10px; }
.hy-badge-mastery { color: var(--muted); font-weight: 600; }

.hy-badge-prog {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.hy-badge-pct { color: var(--muted); font-weight: 600; margin-left: 6px; }



.hy-badge-bar {
  margin-top: 5px;
  height: 4px;
  border-radius: 999px;
  background: var(--stroke);
  overflow: hidden;
}
.hy-badge-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  
  background: hsl(var(--bar-hue, 197) 78% 52%);
  transition: width .4s ease, background-color .4s ease;
}
body.light-mode .hy-badge-bar > span {
  background: hsl(var(--bar-hue, 197) 72% 40%);
}









.pt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  align-items: start;
}
.pt-grid > .card { margin-bottom: 0; }

.pt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pt-name-wrap { min-width: 0; }
.pt-name {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  
  overflow-wrap: anywhere;
}
.pt-unnamed {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}



.pt-lvl {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(85, 214, 255, 0.08);
  border: 1px solid rgba(85, 214, 255, 0.25);
  font-size: 11px;
  color: var(--muted);
}
.pt-lvl b { font-size: 14px; font-weight: 800; color: var(--accent); }

.pt-bar {
  margin-top: 12px;
  height: 6px;
  border-radius: 999px;
  background: var(--well);
  border: 1px solid var(--stroke);
  overflow: hidden;
}
.pt-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 55%, transparent));
  transition: width .4s ease;
}
.pt-bar-lbl { margin: 5px 0 0; font-size: 11px; color: var(--muted); }

.pt-facts {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
}
.pt-facts li { display: flex; align-items: baseline; gap: 8px; }
.pt-facts i { flex: none; width: 14px; font-size: 11px; color: var(--accent); opacity: .85; }
.pt-facts b { color: var(--text); font-weight: 800; font-variant-numeric: tabular-nums; }

.pt-members {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
}
.pt-members-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
}
.pt-members-head i { margin-right: 6px; opacity: .8; }


.pt-size { font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }

.pt-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.pt-member { display: flex; align-items: center; gap: 9px; font-size: 13.5px; min-width: 0; }
.pt-member > a, .pt-member > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pt-mico { font-size: 10px; color: var(--muted); opacity: .6; width: 12px; }


.pt-crown { font-size: 11px; color: var(--amber); width: 12px; }
.pt-member.is-leader > a, .pt-member.is-leader > span { font-weight: 800; }




.user-menu-panel .user-menu-ico {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 3px;
  

  opacity: .85;
}




.hy-badge.has-art .hy-badge-ico {
  background: none;
  border: 0;
  border-radius: 0;
  


  width: 46px;
  height: 46px;
}
.hy-badge.has-art .hy-badge-ico img { width: 100%; height: 100%; object-fit: contain; }


.hy-badge:not(.is-earned).has-art .hy-badge-ico img { filter: grayscale(1); opacity: .45; }





.pt-member .pl-dot { margin-left: auto; flex: none; }















.home-specs {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  

  gap: 14px 26px;
}
.home-specs li {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.home-specs b {
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.home-specs span {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 560px) {
  

  .home-specs { gap: 12px 18px; }
  .home-specs b { font-size: 18px; }
}






.pl-avatar-wrap.is-sm { padding-bottom: 0; display: inline-flex; }
.pl-avatar-wrap.is-sm .pl-row-avatar { border-width: 2px; border-style: solid; }
.pl-avatar-wrap.is-sm.is-online .pl-row-avatar {
  border-color: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 14%, transparent);
}

.home-top-list .pl-avatar-wrap { margin-right: 2px; }





.home-top-name { min-width: 0; }
.home-top-name a,
.home-top-name > span:not(.pl-dot) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.hy-badge-meta,
.hy-badge-prog,
.hy-badge-bar { grid-column: 1 / -1; }


.hy-badge-meta { margin-top: 0; }
.hy-badge-prog { margin-top: 0; }
.hy-badge-bar  { margin-top: 0; }


.hy-badge-prog + .hy-badge-bar { margin-top: -3px; }
