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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

:root {
  --duty-bg: #050a12;
  --duty-card: rgba(11, 18, 28, 0.88);
  --duty-line: rgba(140, 190, 255, 0.14);
  --duty-pink: #ff4d9a;
  --duty-cyan: #00d4ff;
  --duty-blue: #3aa0ff;
  --duty-gold: #ffaa00;
  --duty-text: #e8f4ff;
  --duty-muted: rgba(180, 210, 230, 0.62);
}

.hv-duty-body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--duty-bg);
  color: var(--duty-text);
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hv-duty-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 45% at 12% 18%, rgba(255, 60, 150, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 88% 12%, rgba(0, 180, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #050a12 0%, #07101c 50%, #05080f 100%);
}

.hv-duty-neon-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
}

.hv-duty-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.15) 0%, rgba(5, 10, 18, 0.5) 100%);
}

.hv-duty-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  background: rgba(5, 10, 18, 0.62);
  border-bottom: 1px solid var(--duty-line);
}

.hv-top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.hv-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
}

.hv-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hv-duty-header .hv-nav-active {
  color: #fff;
  background: transparent;
}

.hv-duty-header .hv-nav-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--duty-pink);
  box-shadow: 0 0 10px var(--duty-pink);
}

.hv-nav-badge::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5c518;
}

.hv-icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  flex-shrink: 0;
}

.hv-nav-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}

.hv-nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hv-duty-profile {
  flex-shrink: 0;
}

/* White image slots — replace inner background with photos later */
.hv-duty-ph {
  background: #fff;
  flex-shrink: 0;
}

.hv-duty-ph-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.hv-duty-ph-portrait {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 10px 10px 0 0;
}

.hv-duty-ph-rank {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.hv-duty-ph-pass {
  height: 88px;
  border-radius: 10px 10px 0 0;
}

.hv-duty-ph-mode {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px 10px 0 0;
}

.hv-duty-ph-wep {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  z-index: 0;
}

.hv-duty-wep-img-wrap {
  position: relative;
  width: 100%;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hv-duty-wep-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 4px 8px;
  box-sizing: border-box;
}

.hv-duty-wep-img-wrap.has-image .hv-duty-ph-wep {
  display: none;
}

.hv-duty-stars-muted {
  opacity: 0.35;
}

.hv-duty-ph-eq {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
}

.hv-duty-ph-perk {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.hv-duty-ph-clan {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.hv-duty-ph-news {
  width: 100%;
  height: 92px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.hv-duty-ph-thumb {
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.hv-duty-ph-match {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.hv-duty-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr) 300px;
  grid-template-areas:
    "brand    head     ."
    "profile  activity armory"
    "profile  modes    armory"
    "pass     bottom   news";
  gap: 12px 14px;
  align-items: stretch;
  max-width: 1680px;
  margin: 0 auto;
  padding: 10px 18px 8px;
}

.hv-duty-brand { grid-area: brand; }
.hv-duty-hq-head { grid-area: head; }
.hv-duty-operator { grid-area: profile; }
.hv-duty-activity { grid-area: activity; }
.hv-duty-modes-wrap { grid-area: modes; }
.hv-duty-armory { grid-area: armory; }
.hv-duty-pass { grid-area: pass; }
.hv-duty-bottom { grid-area: bottom; }
.hv-duty-news { grid-area: news; }

.hv-duty-card {
  background: var(--duty-card);
  border: 1px solid var(--duty-line);
  border-radius: 12px;
  padding: 12px;
}

.hv-duty-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
}

.hv-duty-logo {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hv-duty-logo span {
  color: var(--duty-pink);
}

.hv-duty-brand-sub {
  margin: 4px 0 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--duty-cyan);
}

.hv-duty-hq-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 56px;
}

.hv-duty-hq-head h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  letter-spacing: 0.12em;
}

.hv-duty-hq-head p {
  margin: 4px 0 0;
  color: var(--duty-muted);
  font-size: 13px;
}

.hv-duty-operator {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.hv-duty-portrait {
  position: relative;
  flex: 1;
  min-height: 240px;
}

.hv-duty-portrait-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 16, 0.92));
}

.hv-duty-username {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
}

.hv-duty-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #7dffb0;
}

.hv-duty-online i,
.hv-duty-server i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dff8a;
  box-shadow: 0 0 8px #3dff8a;
}

.hv-duty-level-row,
.hv-duty-rank,
.hv-duty-pass-body {
  padding: 10px 12px 12px;
}

.hv-duty-level-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.hv-duty-level-badge {
  display: grid;
  place-items: center;
  height: 44px;
  border-radius: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.35);
}

.hv-duty-xp-labels,
.hv-duty-pass-row,
.hv-duty-wep-meta,
.hv-duty-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--duty-muted);
}

.hv-duty-xp-labels {
  margin-bottom: 6px;
}

.hv-duty-bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hv-duty-bar-thin {
  height: 5px;
  margin-top: 8px;
}

.hv-duty-bar-fill {
  height: 100%;
  border-radius: inherit;
}

.hv-duty-bar-fill.is-cyan { background: linear-gradient(90deg, #0077aa, var(--duty-cyan)); }
.hv-duty-bar-fill.is-pink { background: linear-gradient(90deg, #a01258, var(--duty-pink)); }
.hv-duty-bar-fill.is-blue { background: linear-gradient(90deg, #1a5aa0, var(--duty-blue)); }
.hv-duty-bar-fill.is-gold { background: linear-gradient(90deg, #b8860b, var(--duty-gold)); }

.hv-duty-rank {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 10px;
  align-items: center;
  border-top: 1px solid var(--duty-line);
}

.hv-duty-rank .hv-duty-ph-rank {
  grid-row: 1 / span 2;
}

.hv-duty-rank-copy span,
.hv-duty-rank-next span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--duty-muted);
}

.hv-duty-rank-copy strong,
.hv-duty-rank-next strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hv-duty-rank-copy em,
.hv-duty-rank-next em {
  font-style: normal;
  font-size: 11px;
  color: var(--duty-cyan);
}

.hv-duty-rank-next {
  grid-column: 2;
}

.hv-duty-rank .hv-duty-bar {
  grid-column: 1 / -1;
}

.hv-duty-pass {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.hv-duty-pass-kicker {
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--duty-gold);
}

.hv-duty-pass-tier {
  color: #fff;
  font-weight: 700;
}

.hv-duty-btn,
.hv-duty-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hv-duty-btn-ghost {
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 170, 0, 0.4);
}

.hv-duty-activity h3,
.hv-duty-modes-wrap h3,
.hv-duty-card > h3,
.hv-duty-card-head h3 {
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--duty-muted);
}

.hv-duty-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.hv-duty-stat {
  background: var(--duty-card);
  border: 1px solid var(--duty-line);
  border-radius: 10px;
  padding: 10px;
  min-height: 84px;
}

.hv-duty-stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--duty-muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.hv-duty-stat strong {
  display: block;
  margin-top: 6px;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
}

.hv-duty-stat em {
  font-style: normal;
  font-size: 11px;
  color: #7dffb0;
}

.hv-duty-spark {
  width: 46px;
  height: 16px;
  color: var(--duty-gold);
}

.hv-duty-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hv-duty-mode {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--duty-line);
  background: var(--duty-card);
  overflow: hidden;
}

.hv-duty-mode.is-gold { box-shadow: inset 0 2px 0 var(--duty-gold); }
.hv-duty-mode.is-blue { box-shadow: inset 0 2px 0 var(--duty-cyan); }
.hv-duty-mode.is-pink { box-shadow: inset 0 2px 0 var(--duty-pink); }

.hv-duty-mode-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  flex: 1;
}

.hv-duty-mode-tag {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--duty-muted);
}

.hv-duty-mode h4 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hv-duty-mode-stats {
  margin: 4px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--duty-muted);
}

.hv-duty-play {
  margin-top: auto;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #061018;
  background: var(--duty-gold);
}

.hv-duty-mode.is-blue .hv-duty-play {
  background: var(--duty-cyan);
}

.hv-duty-mode.is-pink .hv-duty-play {
  color: #fff;
  background: var(--duty-pink);
}

.hv-duty-bottom {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.1fr;
  gap: 10px;
}

.hv-duty-reset {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--duty-gold);
}

.hv-duty-mission-list,
.hv-duty-match-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hv-duty-mission-list li {
  display: grid;
  gap: 4px;
}

.hv-duty-mission-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.hv-duty-mission-top b {
  color: var(--duty-gold);
}

.hv-duty-clan-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.hv-duty-clan-row strong {
  display: block;
  font-size: 13px;
}

.hv-duty-clan-tag {
  color: var(--duty-pink);
  font-size: 12px;
}

.hv-duty-clan-row p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--duty-muted);
}

.hv-duty-pill {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #7dffb0;
  border: 1px solid rgba(61, 255, 138, 0.35);
  border-radius: 99px;
  padding: 4px 7px;
  white-space: nowrap;
}

.hv-duty-match-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}

.hv-duty-match-list strong.win { color: #7dffb0; }
.hv-duty-match-list strong.loss { color: #ff7a90; }

.hv-duty-match-list p {
  margin: 0;
  color: var(--duty-muted);
  font-size: 11px;
}

.hv-duty-link {
  color: var(--duty-cyan);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hv-duty-armory,
.hv-duty-news {
  display: flex;
  flex-direction: column;
}

.hv-duty-loadouts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

.hv-duty-loadout-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--duty-muted);
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hv-duty-loadout-tab:hover,
.hv-duty-loadout-tab:focus-visible {
  border-color: rgba(0, 229, 255, 0.35);
  color: #d9f7ff;
  outline: none;
}

.hv-duty-loadout-tab.is-active {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.08);
  color: #ffe7a3;
}

.hv-duty-loadout-tab.is-busy {
  opacity: 0.55;
  pointer-events: none;
}

.hv-duty-loadout-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.hv-duty-loadout-edit {
  font-size: 9px;
  opacity: 0.75;
}

.hv-duty-loadout-hint {
  margin: 0 0 10px;
  font-size: 10px;
  color: var(--duty-muted);
  letter-spacing: 0.04em;
}

.hv-duty-wep {
  margin-bottom: 10px;
}

.hv-duty-wep-btn {
  width: 100%;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hv-duty-wep-btn:hover,
.hv-duty-wep-btn:focus-visible {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.04);
  outline: none;
}

.hv-duty-wep-btn.is-equipped {
  border-color: rgba(212, 175, 55, 0.35);
}

.hv-duty-inv {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 16px;
}

.hv-duty-inv[hidden] {
  display: none !important;
}

.hv-duty-inv-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.hv-duty-inv-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(78vh, 640px);
  overflow: auto;
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.98), rgba(8, 12, 20, 0.98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.hv-duty-inv-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.hv-duty-inv-kicker {
  margin: 0 0 4px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--duty-cyan);
}

.hv-duty-inv-head h4 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.hv-duty-inv-close {
  border: 0;
  background: transparent;
  color: var(--duty-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hv-duty-inv-sub {
  margin: 0 0 12px;
  font-size: 11px;
  color: var(--duty-muted);
}

.hv-duty-inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.hv-duty-inv-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.hv-duty-inv-item:hover,
.hv-duty-inv-item:focus-visible {
  border-color: rgba(0, 229, 255, 0.45);
  outline: none;
  transform: translateY(-1px);
}

.hv-duty-inv-item.is-active {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.hv-duty-inv-item-img {
  position: relative;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 8px;
}

.hv-duty-inv-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px 6px;
}

.hv-duty-inv-item-img .hv-duty-ph-wep {
  position: absolute;
  inset: 0;
}

.hv-duty-inv-item-img.has-image .hv-duty-ph-wep {
  display: none;
}

.hv-duty-inv-item strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.hv-duty-inv-item span {
  display: block;
  font-size: 10px;
  color: var(--duty-muted);
}

.hv-duty-inv-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 12px;
  text-align: center;
  color: var(--duty-muted);
  font-size: 12px;
}

.hv-duty-inv-unequip {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--duty-muted);
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hv-duty-inv-unequip:hover {
  border-color: rgba(255, 120, 120, 0.35);
  color: #ffb4b4;
}

.hv-duty-armory .hv-duty-ph-wep {
  background: rgba(255, 255, 255, 0.06);
}

.hv-duty-wep-slot {
  margin: 0 0 4px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--duty-muted);
}

.hv-duty-stars {
  color: var(--duty-gold);
  letter-spacing: 1px;
}

.hv-duty-equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0 10px;
}

.hv-duty-equip {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--duty-muted);
}

.hv-duty-equip span {
  display: block;
  margin-top: 4px;
}

.hv-duty-perk-label {
  margin: 0 0 8px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--duty-muted);
}

.hv-duty-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.hv-duty-perk {
  display: grid;
  place-items: center;
  gap: 4px;
}

.hv-duty-perk em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--duty-muted);
}

.hv-duty-news-hero {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
}

.hv-duty-news-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--duty-gold);
}

.hv-duty-news-hero strong {
  display: block;
  margin-top: 4px;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
}

.hv-duty-news-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 8px 0 0;
  border-top: 1px solid var(--duty-line);
  font-size: 11px;
}

.hv-duty-news-row .hv-duty-ph-thumb {
  grid-row: 1 / span 2;
}

.hv-duty-news-row span {
  color: var(--duty-muted);
}

.hv-duty-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1680px;
  margin: 0 auto;
  padding: 10px 18px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--duty-muted);
}

.hv-duty-server {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hv-duty-server strong {
  color: #7dffb0;
}

@media (max-width: 1280px) {
  .hv-duty-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "head"
      "profile"
      "activity"
      "modes"
      "armory"
      "pass"
      "bottom"
      "news";
  }

  .hv-duty-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hv-duty-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hv-duty-header {
    flex-direction: column;
    align-items: stretch;
  }

  .hv-duty-stats,
  .hv-duty-modes {
    grid-template-columns: 1fr;
  }
}
