:root{
  font-family:Inter,Arial,sans-serif;
  color:#e9f1ff;
  background:#060b12;
  --bg:#060b12;
  --bg2:#0a1320;
  --bg3:#0d1827;
  --panel:#0e1624;
  --panel2:#101c2d;
  --line:#28415d;
  --line-soft:#213246;
  --text:#e9f1ff;
  --muted:#8ea4bf;
  --blue:#64b4ff;
  --blue-soft:#1a3555;
  --gold:#f3c867;
  --gold-line:#9f7a2b;
  --violet:#b78cff;
  --violet-line:#6845a8;
  --green:#4dd4b0;
  --shadow:0 18px 48px rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html{background:var(--bg)}

body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(38,86,160,.55), transparent 28%),
    radial-gradient(circle at 10% 15%, rgba(39,104,180,.16), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(159,120,43,.12), transparent 20%),
    linear-gradient(180deg,#07101a 0%,#050a12 100%);
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, transparent 0, rgba(116,178,255,.04) 50%, transparent 100%);
  mask-image:linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.18));
}

a{
  color:#a9d3ff;
  text-decoration:none;
}

a:hover{
  color:#d7ecff;
}

header{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 max(20px,5vw);
  border-bottom:1px solid #19304a;
  background:
    linear-gradient(180deg, rgba(6,11,18,.92), rgba(5,9,15,.86));
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}

.brand{
  font-size:21px;
  font-weight:900;
  letter-spacing:-.02em;
  color:#f3f8ff;
  text-transform:uppercase;
}

nav a{
  margin-left:20px;
  font-weight:700;
  color:#9dbde0;
}

nav a:hover{
  color:#ffffff;
}

main{
  max-width:1300px;
  margin:auto;
  padding:34px 22px 84px;
}

h1,h2,h3{
  letter-spacing:-.03em;
  margin:0;
}

h1{
  font-size:clamp(36px,5vw,64px);
  line-height:1;
}

h2{
  font-size:30px;
}

h3{
  font-size:30px;
}

.eyebrow{
  color:#6fb8ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.muted,
small{
  color:var(--muted);
}

.back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  font-weight:700;
}

.hero-head{
  text-align:center;
  padding:42px 0 26px;
}

.hero-head p{
  color:var(--muted);
  font-size:17px;
  margin:8px 0 0;
}

.finder{
  max-width:580px;
  margin:25px auto 18px;
}

.finder input,
input,
textarea{
  width:100%;
  padding:15px 18px;
  font-size:15px;
  color:#fff;
  background:#0d1622;
  border:1px solid #365271;
  border-radius:14px;
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.finder input:focus,
input:focus,
textarea:focus{
  border-color:#69b3ff;
  box-shadow:0 0 0 3px rgba(70,143,227,.18);
}

.role-filter{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
}

button{
  font:inherit;
}

.role-filter button,
.copy-code{
  cursor:pointer;
  color:#d8eaff;
  border:1px solid #3c5e86;
  background:
    linear-gradient(180deg,#15263d,#0e1d2f);
  border-radius:10px;
  padding:10px 14px;
  transition:.15s ease;
}

.role-filter button:hover,
.copy-code:hover{
  transform:translateY(-1px);
  border-color:#73b8ff;
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.role-filter button.active{
  background:
    linear-gradient(180deg,#23528c,#18385f);
  border-color:#7cc1ff;
  color:#fff;
}

.hero-count{
  margin:2px 0 14px;
  color:var(--muted);
  font-size:13px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(138px,1fr));
  gap:14px;
}

.hero-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:10px;
  background:
    linear-gradient(180deg, rgba(17,28,44,.96), rgba(10,16,26,.96));
  border:1px solid #26415f;
  border-radius:16px;
  transition:.16s ease;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
  opacity:.45;
}

.hero-card:hover{
  transform:translateY(-4px);
  border-color:#5f9de0;
  box-shadow:0 22px 42px rgba(0,0,0,.35);
}

.hero-card[hidden]{display:none}

.hero-image{
  position:relative;
}

.hero-card img{
  display:block;
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:11px;
  border:1px solid rgba(255,255,255,.05);
}

.hero-card b{
  color:#f6fbff;
  font-size:15px;
  line-height:1.2;
}

.hero-card > span{
  color:var(--muted);
  font-size:12px;
}

.build-count{
  position:absolute;
  right:7px;
  bottom:7px;
  padding:4px 7px;
  border-radius:8px;
  font-size:10px;
  font-weight:800;
  background:rgba(7,15,26,.88);
  color:#d5e9ff;
  border:1px solid rgba(116,178,255,.25);
  backdrop-filter:blur(6px);
}

.profile{
  display:flex;
  gap:24px;
  align-items:center;
  padding:24px;
  background:
    linear-gradient(135deg, rgba(14,25,40,.98), rgba(9,16,28,.98));
  border:1px solid #25415e;
  border-radius:20px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.profile::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 22%, rgba(90,164,255,.16), transparent 18%),
    linear-gradient(90deg, transparent 0, rgba(255,255,255,.04) 50%, transparent 100%);
}

.hero-profile{
  min-height:170px;
}

.portrait{
  width:132px;
  height:132px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 38px rgba(0,0,0,.45);
  position:relative;
  z-index:1;
}

.profile-text{
  position:relative;
  z-index:1;
}

.en-name{
  margin-top:8px;
  font-size:16px;
}

.meta{
  margin-top:14px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.meta span{
  background:rgba(17,35,58,.88);
  border:1px solid #28486e;
  padding:6px 9px;
  border-radius:9px;
  color:#bfdcff;
  font-size:12px;
  font-weight:700;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin:28px 0 16px;
}

.section-title h2{
  margin-top:5px;
}

.build-stack{
  display:grid;
  gap:16px;
}

.build-panel{
  background:
    linear-gradient(180deg, rgba(13,22,35,.98), rgba(10,17,28,.98));
  border:1px solid #27425f;
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.build-panel::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}

.build-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:14px;
}

.build-card-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:9px;
}

.build-card-title h3{
  font-size:25px;
}

.build-card-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.build-tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
  border:1px solid #3b597d;
  background:linear-gradient(180deg,#16304f,#10233a);
  color:#d8eaff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.build-tag-recommended{
  color:#fff3cd;
  border-color:rgba(212,163,62,.78);
  background:
    linear-gradient(180deg, rgba(107,75,18,.96), rgba(60,44,12,.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 0 1px rgba(255,201,103,.08);
}

.build-tag-situational{
  color:#dff1ff;
  border-color:rgba(88,153,220,.82);
  background:
    linear-gradient(180deg, rgba(28,69,116,.96), rgba(18,43,74,.96));
}

.build-tag-aram{
  color:#f0e4ff;
  border-color:rgba(153,117,228,.82);
  background:
    linear-gradient(180deg, rgba(77,49,130,.96), rgba(47,29,82,.96));
}

.talent-row{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:10px;
}

.talent{
  min-width:0;
  padding:9px;
  border-radius:13px;
  background:
    linear-gradient(180deg,#0a1018,#0b121d);
  border:1px solid #2a3d57;
  position:relative;
}

.talent::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  opacity:.35;
}

.talent > img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:9px;
  display:block;
  margin:5px 0 8px;
  border:1px solid rgba(255,255,255,.05);
}

.talent em{
  color:#79c3ff;
  font-style:normal;
  font-weight:900;
  font-size:18px;
  display:block;
  margin-bottom:2px;
}

.talent strong{
  display:block;
  font-size:12px;
  line-height:1.32;
  color:#f0f6ff;
}

.alts{
  margin-top:9px;
  padding-top:8px;
  border-top:1px solid #27384e;
  font-size:10px;
  color:#b2bfd0;
}

.alts > span{
  display:block;
  margin-bottom:5px;
  color:#f1c768;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.alt{
  display:flex;
  gap:6px;
  align-items:center;
  margin-top:4px;
  line-height:1.25;
}

.alt img{
  width:22px;
  height:22px;
  border-radius:5px;
  border:1px solid rgba(255,255,255,.05);
}

.build-description{
  margin-top:16px;
  line-height:1.72;
  color:#c3cede;
  white-space:pre-line;
}

.build-footer{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding-top:14px;
  margin-top:14px;
  border-top:1px solid #26384e;
  color:var(--muted);
  font-size:12px;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:18px;
}

.info-card{
  background:
    linear-gradient(180deg, rgba(11,20,31,.98), rgba(9,16,26,.98));
  border:1px solid #29425d;
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}

.pros,
.cons{
  margin:0;
  padding-left:22px;
  line-height:1.72;
}

.pros li::marker{color:#4fd39d}
.cons li::marker{color:#ff7676}

.relations{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(135px,1fr));
  gap:10px;
}

.relation{
  display:flex;
  align-items:center;
  gap:8px;
  background:
    linear-gradient(180deg,#111f30,#0d1724);
  padding:8px;
  border-radius:11px;
  border:1px solid #2a3d55;
}

.relation img{
  width:40px;
  height:40px;
  object-fit:cover;
  border-radius:8px;
}

.relation span{
  font-size:12px;
  font-weight:700;
  line-height:1.25;
}

.admin-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.line{
  display:block;
  padding:8px;
  border-bottom:1px solid #26334a;
}

.job{
  padding:12px;
  margin-bottom:8px;
  border:1px solid #28364b;
  border-radius:10px;
  background:rgba(14,22,34,.94);
}

.job small{
  display:block;
}

@media(max-width:1000px){
  .talent-row{
    display:flex;
    overflow-x:auto;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
  }

  .talent{
    flex:0 0 148px;
    scroll-snap-align:start;
  }
}

@media(max-width:760px){
  main{
    padding:24px 12px 56px;
  }

  header{
    padding:0 14px;
  }

  nav a{
    margin-left:12px;
    font-size:12px;
  }

  .hero-head{
    padding-top:18px;
  }

  .grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }

  .hero-card{
    padding:7px;
  }

  .hero-card b{
    font-size:12px;
  }

  .hero-card > span{
    font-size:10px;
  }

  .profile{
    padding:14px;
    gap:14px;
    align-items:flex-start;
  }

  .portrait{
    width:94px;
    height:94px;
  }

  .profile h1{
    font-size:30px;
  }

  .section-title,
  .build-card-head,
  .build-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .two,
  .admin-grid{
    grid-template-columns:1fr;
  }

  .build-panel{
    padding:13px;
  }

  .relations{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:420px){
  .grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .role-filter{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:5px;
  }

  .role-filter button{
    flex:none;
  }
}


/* =========================================================
   HOTS POLISH V3
   ========================================================= */

body::after{
  content:"";
  position:fixed;
  pointer-events:none;
  left:50%;
  top:68px;
  width:min(1100px,90vw);
  height:320px;
  transform:translateX(-50%);
  background:
    radial-gradient(
      ellipse at center top,
      rgba(38,126,221,.11),
      rgba(25,67,125,.035) 48%,
      transparent 72%
    );
  filter:blur(18px);
  z-index:-1;
}

main{
  position:relative;
}

main::before{
  content:"";
  display:block;
  position:absolute;
  top:5px;
  left:50%;
  width:min(620px,65vw);
  height:1px;
  transform:translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(94,180,255,.55),
      rgba(224,242,255,.8),
      rgba(94,180,255,.55),
      transparent
    );
  box-shadow:
    0 0 12px rgba(80,166,255,.4),
    0 0 26px rgba(48,122,219,.16);
}

.profile::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  left:-65px;
  top:-55px;
  background:
    radial-gradient(
      circle,
      rgba(55,151,255,.14),
      transparent 66%
    );
  pointer-events:none;
}

.portrait{
  box-shadow:
    0 15px 35px rgba(0,0,0,.6),
    0 0 0 1px rgba(100,183,255,.25),
    0 0 30px rgba(39,134,229,.12);
}

.build-card{
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.build-card:hover{
  border-color:#365d87;
  box-shadow:
    0 22px 52px rgba(0,0,0,.38),
    0 0 25px rgba(49,132,220,.055);
}

/* RECOMMENDED — bright HOTS green */

.build-tag-recommended{
  color:#ddffe9 !important;
  border-color:#36e483 !important;
  background:
    linear-gradient(
      180deg,
      #168447,
      #0b502d
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 0 10px rgba(43,232,128,.27),
    0 0 24px rgba(26,195,99,.12) !important;
  text-shadow:
    0 1px 0 rgba(0,0,0,.7),
    0 0 8px rgba(123,255,178,.18);
}

.build-card-recommended{
  border-color:#277c51;
  box-shadow:
    0 18px 48px rgba(0,0,0,.35),
    inset 3px 0 0 #25c873,
    0 0 28px rgba(39,199,112,.055);
}

.build-card-recommended::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:55px;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(29,184,99,.055),
      transparent
    );
}


/* SITUATIONAL — yellow / gold */

.build-tag-situational{
  color:#fff4c3 !important;
  border-color:#f0c348 !important;
  background:
    linear-gradient(
      180deg,
      #9b7611,
      #624707
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 10px rgba(241,195,58,.23),
    0 0 24px rgba(222,165,25,.09) !important;
  text-shadow:0 1px 0 rgba(0,0,0,.7);
}

.build-card-situational{
  border-color:#695921;
  box-shadow:
    0 18px 48px rgba(0,0,0,.35),
    inset 3px 0 0 #d7ad32;
}


/* ARAM — purple */

.build-tag-aram{
  color:#f3e6ff !important;
  border-color:#b36cff !important;
  background:
    linear-gradient(
      180deg,
      #7135aa,
      #432166
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 11px rgba(178,97,255,.24),
    0 0 26px rgba(121,55,189,.1) !important;
  text-shadow:0 1px 0 rgba(0,0,0,.7);
}

.build-card-aram{
  border-color:#563373;
  box-shadow:
    0 18px 48px rgba(0,0,0,.35),
    inset 3px 0 0 #9251d0;
}


/* talent level crystal-ish badge */

.talent em{
  width:28px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:6px;
  border-radius:6px;
  color:#dcefff;
  font-size:13px;
  background:
    linear-gradient(
      180deg,
      #1e4e7f,
      #102e4e
    );
  border:1px solid #427bb0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 10px rgba(55,139,224,.08);
}

.talent:hover{
  border-color:#416b96;
  background:
    linear-gradient(
      180deg,
      #0d1826,
      #0a111b
    );
}


/* decorative headers */

.section-title{
  position:relative;
  padding-bottom:12px;
}

.section-title::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:
    linear-gradient(
      90deg,
      #3979b4,
      rgba(57,121,180,.15) 55%,
      transparent
    );
}

.info-card h2{
  font-size:24px;
  padding-bottom:10px;
  margin-bottom:13px;
  border-bottom:1px solid #253b54;
}


/* hero cards slightly more game-like */

.hero-card:hover img{
  filter:
    saturate(1.07)
    contrast(1.03);
}

.hero-image::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:11px;
  pointer-events:none;
  box-shadow:
    inset 0 0 18px rgba(0,0,0,.26),
    inset 0 0 0 1px rgba(159,211,255,.08);
}


/* scrollbar — compact */

.talent-row::-webkit-scrollbar,
.role-filter::-webkit-scrollbar{
  height:7px;
}

.talent-row::-webkit-scrollbar-track,
.role-filter::-webkit-scrollbar-track{
  background:#09111a;
}

.talent-row::-webkit-scrollbar-thumb,
.role-filter::-webkit-scrollbar-thumb{
  background:#284b70;
  border-radius:10px;
}


/* smaller expensive-looking desktop layout */

@media(min-width:1001px){
  .build-card{
    padding:20px 18px 17px;
  }

  .talent{
    padding:8px;
  }

  .talent strong{
    min-height:32px;
  }
}


/* =========================================================
   HOTS COMPACT V4
   reduce vertical size and scrolling on hero pages
   ========================================================= */

@media(min-width:1001px){

  main{
    max-width:1220px;
    padding-top:26px;
  }

  .hero-profile{
    min-height:auto;
    padding:18px 20px;
    gap:18px;
  }

  .portrait{
    width:104px;
    height:104px;
    border-radius:14px;
  }

  .profile h1{
    font-size:56px;
  }

  .en-name{
    margin-top:4px;
    font-size:14px;
  }

  .meta{
    margin-top:10px;
    gap:6px;
  }

  .meta span{
    padding:5px 8px;
    font-size:11px;
  }

  .section-title{
    margin:18px 0 12px;
    padding-bottom:9px;
  }

  .section-title h2{
    font-size:22px;
  }

  .build-stack{
    gap:12px;
  }

  .build-panel,
  .build-card{
    padding:14px 14px 12px;
    border-radius:16px;
  }

  .build-card-head{
    margin-bottom:10px;
    gap:14px;
  }

  .build-card-title{
    gap:6px;
  }

  .build-card-title h3{
    font-size:19px;
    line-height:1.15;
  }

  .build-tag{
    padding:4px 9px;
    font-size:10px;
  }

  .copy-code{
    padding:8px 11px;
    font-size:13px;
    border-radius:9px;
  }

  .talent-row{
    grid-template-columns:repeat(7, minmax(92px, 112px));
    justify-content:space-between;
    gap:8px;
  }

  .talent{
    padding:7px;
    border-radius:11px;
  }

  .talent > img{
    margin:4px 0 6px;
    border-radius:7px;
  }

  .talent em{
    width:24px;
    height:20px;
    margin-bottom:5px;
    border-radius:5px;
    font-size:11px;
  }

  .talent strong{
    font-size:11px;
    line-height:1.22;
    min-height:26px;
  }

  .alts{
    margin-top:6px;
    padding-top:6px;
    font-size:9px;
    line-height:1.22;
  }

  .alts > span{
    margin-bottom:3px;
    font-size:9px;
  }

  .alt{
    gap:4px;
    margin-top:3px;
  }

  .alt img{
    width:18px;
    height:18px;
    border-radius:4px;
  }

  .build-description{
    margin-top:12px;
    font-size:14px;
    line-height:1.55;
  }

  .build-footer{
    margin-top:10px;
    padding-top:10px;
    font-size:11px;
  }

  .two{
    gap:12px;
    margin-top:14px;
  }

  .info-card{
    padding:15px;
    border-radius:16px;
  }

  .info-card h2{
    font-size:21px;
    margin-bottom:10px;
    padding-bottom:8px;
  }

  .pros,
  .cons{
    line-height:1.55;
    font-size:14px;
  }

  .relations{
    grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
    gap:8px;
  }

  .relation{
    padding:7px;
    gap:7px;
  }

  .relation img{
    width:34px;
    height:34px;
  }

  .relation span{
    font-size:11px;
    line-height:1.18;
  }
}


/* slightly tighter tablet/mobile too */

@media(max-width:1000px){

  .hero-profile{
    padding:14px;
  }

  .build-panel{
    padding:12px;
  }

  .build-card-title h3{
    font-size:22px;
  }

  .copy-code{
    padding:8px 10px;
    font-size:13px;
  }

  .talent{
    flex:0 0 124px;
    padding:7px;
  }

  .talent em{
    width:24px;
    height:20px;
    font-size:11px;
  }

  .talent strong{
    font-size:11px;
    line-height:1.24;
  }

  .alt img{
    width:18px;
    height:18px;
  }

  .build-description{
    font-size:14px;
    line-height:1.55;
  }
}


/* extra compact wide desktop for long pages */

@media(min-width:1280px){

  .profile h1{
    font-size:52px;
  }

  .talent-row{
    grid-template-columns:repeat(7, 106px);
    justify-content:space-between;
  }

  .talent{
    min-height:210px;
  }
}


/* =========================================================
   HOME COMPACT V5
   ========================================================= */

.home-hero-head{
  padding:22px 0 18px;
}

.home-subtitle{
  margin:7px 0 0 !important;
  font-size:14px !important;
}

.hots-brand-block{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom:9px;
  user-select:none;
}

.hots-wordmark{
  display:grid;
  justify-items:center;
  line-height:.78;
  transform:skewX(-4deg);
  text-transform:uppercase;
  filter:
    drop-shadow(0 2px 0 #09101c)
    drop-shadow(0 0 9px rgba(70,158,255,.28));
}

.hots-wordmark-top,
.hots-wordmark-bottom{
  font-family:Georgia,Times New Roman,serif;
  font-weight:900;
  letter-spacing:.075em;
  color:#dcecff;
  -webkit-text-stroke:1px #4776a7;
  text-shadow:
    0 1px 0 #fff,
    0 3px 0 #172b46,
    0 0 12px rgba(75,168,255,.3);
}

.hots-wordmark-top{
  font-size:35px;
}

.hots-wordmark-mid{
  font-size:9px;
  line-height:1.5;
  font-weight:900;
  letter-spacing:.25em;
  color:#86bdf0;
}

.hots-wordmark-bottom{
  font-size:31px;
}

.hots-emblem-css{
  width:62px;
  height:62px;
  position:relative;
  display:grid;
  place-items:center;
}

.hots-emblem-ring{
  position:absolute;
  inset:7px;
  border-radius:50%;
  border:4px solid #78c7ff;
  box-shadow:
    0 0 0 2px #1d4772,
    inset 0 0 12px #298ee4,
    0 0 16px rgba(60,163,255,.5);
}

.hots-emblem-ring::before,
.hots-emblem-ring::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:35px;
  height:4px;
  background:#70c4ff;
  border-radius:10px;
  box-shadow:0 0 8px #52adf5;
}

.hots-emblem-ring::before{
  transform:
    translate(-50%,-50%)
    rotate(45deg);
}

.hots-emblem-ring::after{
  transform:
    translate(-50%,-50%)
    rotate(-45deg);
}

.hots-emblem-core{
  width:16px;
  height:16px;
  border-radius:50%;
  background:#d9f4ff;
  border:3px solid #5ab9ff;
  box-shadow:
    0 0 9px #61c4ff,
    0 0 20px rgba(45,148,239,.8);
  z-index:2;
}

.home-hero-head .finder{
  max-width:500px;
  margin:17px auto 12px;
}

.home-hero-head .finder input{
  padding:12px 15px;
}

.home-hero-head .role-filter button{
  padding:8px 11px;
  font-size:12px;
}

.compact-hero-grid{
  grid-template-columns:
    repeat(auto-fill,minmax(100px,1fr));
  gap:8px;
}

.compact-hero-card{
  padding:6px;
  border-radius:11px;
  gap:5px;
}

.compact-hero-card .hero-image img{
  border-radius:7px;
}

.compact-hero-card .build-count{
  right:4px;
  bottom:4px;
  min-width:23px;
  text-align:center;
  padding:3px 5px;
  font-size:9px;
}

.compact-hero-meta{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.compact-hero-meta b{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:12px;
}

.compact-hero-meta span{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:var(--muted);
  font-size:9px;
}

.hero-count{
  margin:0 0 8px;
  font-size:11px;
}

@media(min-width:1200px){

  .compact-hero-grid{
    grid-template-columns:
      repeat(10,minmax(0,1fr));
  }

  .compact-hero-card{
    max-width:none;
  }
}

@media(min-width:1500px){

  main{
    max-width:1280px;
  }

  .compact-hero-grid{
    grid-template-columns:
      repeat(11,minmax(0,1fr));
  }
}

@media(max-width:900px){

  .compact-hero-grid{
    grid-template-columns:
      repeat(6,minmax(0,1fr));
  }

  .hots-emblem-css{
    width:52px;
    height:52px;
  }

  .hots-wordmark-top{
    font-size:30px;
  }

  .hots-wordmark-bottom{
    font-size:27px;
  }
}

@media(max-width:650px){

  .compact-hero-grid{
    grid-template-columns:
      repeat(4,minmax(0,1fr));
  }

  .hots-brand-block{
    gap:8px;
  }

  .hots-emblem-css{
    width:44px;
    height:44px;
  }

  .hots-wordmark-top{
    font-size:25px;
  }

  .hots-wordmark-bottom{
    font-size:22px;
  }

  .hots-wordmark-mid{
    font-size:7px;
  }
}

@media(max-width:420px){

  .compact-hero-grid{
    grid-template-columns:
      repeat(4,minmax(0,1fr));
    gap:6px;
  }

  .compact-hero-card{
    padding:5px;
  }

  .compact-hero-meta b{
    font-size:10px;
  }

  .compact-hero-meta span{
    font-size:8px;
  }
}


/* =========================================================
   OFFICIAL HOTS LOGO V6
   ========================================================= */

.official-hots-brand{
  min-height:86px;
  margin:0 0 4px;
}

.official-hots-logo{
  display:block;
  width:auto;
  max-width:min(390px,72vw);
  max-height:100px;
  object-fit:contain;
  margin:0 auto;
  filter:
    drop-shadow(0 7px 10px rgba(0,0,0,.55))
    drop-shadow(0 0 14px rgba(59,146,255,.2));
}

/* Hide old CSS artwork if any stale markup survives */
.official-hots-brand .hots-emblem-css,
.official-hots-brand .hots-wordmark{
  display:none !important;
}

@media(max-width:650px){
  .official-hots-logo{
    max-width:min(300px,78vw);
    max-height:78px;
  }

  .official-hots-brand{
    min-height:68px;
  }
}


/* =========================================================
   LANGUAGE SWITCH RU / EN V1
   ========================================================= */

.lang-switch{
  display:flex;
  align-items:center;
  gap:4px;
  margin-left:14px;
  padding:4px;
  background:#0c1724;
  border:1px solid #294965;
  border-radius:9px;
}

.lang-switch span{
  color:#49647d;
  font-size:10px;
}

.lang-switch button{
  padding:4px 6px;
  border:0;
  border-radius:6px;
  background:transparent;
  color:#7894af;
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}

.lang-switch button.active{
  color:#fff;
  background:#23588b;
  box-shadow:
    0 0 10px rgba(76,166,255,.18);
}

html[data-lang="ru"] .lang-en{
  display:none !important;
}

html[data-lang="en"] .lang-ru{
  display:none !important;
}

/* RU is default before JS initializes */
html:not([data-lang]) .lang-en{
  display:none !important;
}

@media(max-width:650px){
  .lang-switch{
    margin-left:5px;
  }

  .lang-switch button{
    padding:4px;
  }
}


/* =========================================================
   XHOTS SEO FOOTER V2
   ========================================================= */

.seo-intro{
  max-width:760px;
  margin:13px auto 0;
}

.seo-intro p{
  margin:0;
  color:#8194a9;
  font-size:12px;
  line-height:1.55;
}

.site-footer{
  max-width:1280px;
  margin:8px auto 0;
  padding:19px 22px 26px;
  text-align:center;
  border-top:1px solid rgba(92,137,181,.18);
}

.traffic-counter{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:11px;
  color:#71879e;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.065em;
}

.traffic-counter span{
  display:flex;
  align-items:center;
  gap:6px;
}

.traffic-counter b{
  color:#bdd8f2;
  font-size:11px;
}

.traffic-counter i{
  width:3px;
  height:3px;
  background:#365978;
  border-radius:50%;
}

.fan-disclaimer{
  max-width:760px;
  margin:0 auto;
  color:#566b7e;
  font-size:10px;
  line-height:1.5;
}

.footer-mini{
  margin:7px 0 0;
  color:#405569;
  font-size:9px;
}

@media(max-width:650px){

  .traffic-counter{
    gap:7px;
    font-size:9px;
  }

  .site-footer{
    padding:16px 14px 22px;
  }

}
