* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

:root {
--bg-main: #050509;
--glass-bg: rgba(15, 15, 20, 0.82);
--glass-border: rgba(255, 255, 255, 0.06);
--accent: #3a7bd5;
--accent-soft: rgba(58, 123, 213, 0.18);
--text-main: #f5f5f7;
--text-muted: #9b9ba1;
--nav-height: 70px;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background:
radial-gradient(circle at 0% 0%, rgba(255, 0, 92, 0.24), transparent 55%),
radial-gradient(circle at 100% 100%, rgba(255, 0, 0, 0.18), transparent 55%),
radial-gradient(circle at 0% 100%, rgba(120, 0, 40, 0.18), transparent 55%),
linear-gradient(145deg, #020107 0%, #050509 45%, #050307 100%);
min-height: 100vh;
color: var(--text-main);
padding-bottom: var(--nav-height);
}

.app-container {
max-width: 620px;
margin: 0 auto;
min-height: 100vh;
position: relative;
}

.page {
display: none;
padding: 20px;
animation: fadeIn 0.3s ease;
}

.page.active {
display: block;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.dashboard-header {
text-align: center;
margin-bottom: 24px;
}

.dashboard-header h1 {
font-size: 24px;
font-weight: 700;
margin-bottom: 6px;
}

.dashboard-header p {
font-size: 14px;
color: var(--text-muted);
}

.card {
background: var(--glass-bg);
border-radius: 20px;
padding: 20px;
margin-bottom: 16px;
border: 1px solid var(--glass-border);
backdrop-filter: blur(22px) saturate(140%);
-webkit-backdrop-filter: blur(22px) saturate(140%);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

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

.card-icon {
font-size: 24px;
}

.card-title {
font-size: 16px;
font-weight: 600;
}

.card-content {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
}

.position-result {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px;
background: rgba(58, 123, 213, 0.12);
border-radius: 14px;
margin-top: 12px;
border: 1px solid rgba(58, 123, 213, 0.3);
}

.position-result-text {
font-size: 18px;
font-weight: 600;
}

.position-result-date {
font-size: 12px;
color: var(--text-muted);
margin-top: 4px;
}

.btn-small {
padding: 8px 16px;
background: var(--accent);
color: #fff;
border: none;
border-radius: 999px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.15s ease;
}

.btn-small:hover {
transform: translateY(-1px);
box-shadow: 0 8px 16px rgba(58, 123, 213, 0.4);
}

.hero-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 16px;
}

.hero-result-header {
  display: flex;
  align-items: center;      /* центр по горизонтали */
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;      /* побольше отступ до списка героев */
}

.hero-header-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #a70008, #461818);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #e5f6ff;
  box-shadow:
    0 0 0 0px rgba(0, 0, 0, 0.7),
    0 0 16px rgba(241, 40, 40, 0.514);
}

.hero-header-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
}

/* старые hero-item можно оставить, но они больше не используются для hero-quiz */
.hero-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 14px;
background: rgba(255, 255, 255, 0.04);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.06);
gap: 12px;
}

.hero-rank {
font-size: 16px;
font-weight: 700;
color: #00d2ff;
min-width: 24px;
flex-shrink: 0;
}

.hero-icon {
width: 48px;
height: 27px;
object-fit: cover;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
flex-shrink: 0;
}

.hero-name {
font-size: 14px;
font-weight: 500;
flex: 1;
}

.hero-tags {
font-size: 11px;
color: var(--text-muted);
margin-top: 2px;
}

.hero-match {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 4px;
min-width: 60px;
flex-shrink: 0;
}

.hero-match-percent {
font-size: 14px;
font-weight: 600;
color: #00d2ff;
}

.hero-match-bar {
width: 60px;
height: 4px;
background: rgba(255, 255, 255, 0.1);
border-radius: 999px;
overflow: hidden;
}

.hero-match-fill {
height: 100%;
background: linear-gradient(90deg, #3a7bd5, #00d2ff);
border-radius: 999px;
transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
}

.quick-actions {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
margin-top: 12px;
}

.action-btn {
padding: 14px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
color: var(--text-main);
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.15s ease;
text-align: left;
display: flex;
align-items: center;
gap: 10px;
}

.action-btn:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(58, 123, 213, 0.5);
transform: translateY(-1px);
}

.action-btn.disabled {
opacity: 0.5;
cursor: not-allowed;
}

.action-btn.disabled:hover {
transform: none;
}

.badge-soon {
margin-left: auto;
padding: 4px 10px;
background: rgba(255, 255, 255, 0.1);
border-radius: 999px;
font-size: 11px;
color: var(--text-muted);
}

.quiz-container {
background: var(--glass-bg);
border-radius: 26px;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
padding: 28px 20px 26px;
backdrop-filter: blur(22px) saturate(140%);
border: 1px solid var(--glass-border);
}

h1 {
font-size: 22px;
color: var(--text-main);
margin-bottom: 6px;
font-weight: 700;
letter-spacing: 0.02em;
text-align: center;
}

.subtitle {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 22px;
text-align: center;
}

.progress-bar {
width: 100%;
height: 6px;
background: rgba(255, 255, 255, 0.06);
border-radius: 999px;
margin-bottom: 22px;
overflow: hidden;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, #3a7bd5, #00d2ff);
width: 0%;
transition: width 0.3s ease;
box-shadow: 0 0 12px rgba(0, 210, 255, 0.6);
}

.question {
font-size: 17px;
color: var(--text-main);
margin-bottom: 18px;
font-weight: 600;
line-height: 1.5;
text-align: left;
}

.answers {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 12px;
}

.answer-btn {
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.12), rgba(10, 10, 16, 0.96));
border: 1px solid rgba(255, 255, 255, 0.06);
padding: 12px 13px;
border-radius: 18px;
font-size: 15px;
cursor: pointer;
transition: all 0.18s ease;
text-align: left;
color: var(--text-main);
font-weight: 500;
line-height: 1.4;
display: flex;
align-items: flex-start;
gap: 10px;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 10px 24px rgba(0, 0, 0, 0.8);
}

@media (hover: hover) and (pointer: fine) {
.answer-btn:hover {
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.18), rgba(15, 15, 22, 0.98));
border-color: rgba(58, 123, 213, 0.45);
transform: translateY(-1px);
}
}

.answer-btn.selected {
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.28), rgba(8, 8, 14, 0.98));
border-color: #3a7bd5;
transform: scale(0.98);
}

.answer-btn span.emoji {
font-size: 18px;
flex-shrink: 0;
}

.answer-btn span.text {
flex: 1;
}

.quiz-hint {
font-size: 12px;
color: var(--text-muted);
margin-bottom: 14px;
opacity: 0.7;
}

.quiz-nav {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 20px;
padding-top: 16px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quiz-nav-back,
.quiz-nav-next {
font-family: inherit;
font-size: 13px;
font-weight: 500;
padding: 9px 18px;
border-radius: 12px;
cursor: pointer;
outline: none;
transition: all 0.18s ease;
}

.quiz-nav-back {
background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
border: 1px solid rgba(255, 255, 255, 0.16);
color: rgba(255, 255, 255, 0.7);
}

.quiz-nav-back:not(:disabled):hover {
border-color: rgba(255, 255, 255, 0.28);
background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
color: var(--text-main);
}

.quiz-nav-back:disabled {
opacity: 0.3;
cursor: not-allowed;
}

.quiz-nav-next {
font-weight: 600;
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.3), rgba(10, 10, 16, 0.96));
border: 1px solid rgba(58, 123, 213, 0.55);
color: var(--text-main);
}

.quiz-nav-next:not(:disabled):hover {
border-color: #3a7bd5;
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.44), rgba(15, 15, 22, 0.98));
transform: translateY(-1px);
}

.quiz-nav-next:disabled {
opacity: 0.3;
cursor: not-allowed;
border-color: rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.03);
}

/* Кнопка "Назад" (общая) */
.btn-back {
  margin-top: 16px;         /* расстояние от низа карточки */
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;      /* прямоугольная с лёгким скруглением */
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  outline: none;
}

.btn-back::before {
  content: "←";
  display: inline-block;
  opacity: 0.9;
}

.btn-back:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.btn-back:active {
  transform: translateY(1px);
  opacity: 0.9;
}

.result {
display: none;
text-align: center;
}

.result.active {
display: block;
animation: fadeIn 0.45s ease;
}

.result-header {
font-size: 32px;
margin-bottom: 6px;
}

.result-title {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 16px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.position-primary {
font-size: 18px;
color: var(--text-main);
margin-bottom: 10px;
font-weight: 600;
line-height: 1.3;
}

.position-main-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e9f5ff;
  background: radial-gradient(circle at 0 0, #2aa4ff33, transparent 60%),
              linear-gradient(135deg, #1b2638, #111827);
  border: 1px solid #3cc3ff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.65),
    0 0 10px rgba(60, 195, 255, 0.45);
  margin: 0 auto 14px;
}

.position-secondary-label {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.75);
  margin-top: 10px;
  margin-bottom: 6px;
}

/* Бейдж доп. позиции */
.position-extra-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;

  color: #d7e2ff;
  background: linear-gradient(135deg, #0f172a, #020617);
  border: 1px solid rgba(80, 180, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6);

  margin: 0 auto 18px;
}

.description {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 20px;
white-space: pre-line;
text-align: left;
background: rgba(58, 123, 213, 0.08);
border: 1px solid rgba(58, 123, 213, 0.25);
border-radius: 16px;
padding: 16px;
}

.hidden {
display: none;
}

.btn-outline {
background: transparent;
color: var(--text-main);
border: 1px solid rgba(58, 123, 213, 0.5);
padding: 11px 26px;
border-radius: 999px;
font-size: 15px;
cursor: pointer;
font-weight: 600;
transition: all 0.15s ease;
display: block;
margin: 0 auto 12px auto;
width: fit-content;
}

.btn-outline:hover {
background: rgba(58, 123, 213, 0.1);
border-color: #3a7bd5;
}

.btn-outline-sm {
padding: 4px 12px;
font-size: 11px;
font-weight: 500;
display: inline-block;
margin: 0;
flex-shrink: 0;
}

.btn-secondary {
background: transparent;
color: var(--text-muted);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 11px 26px;
border-radius: 999px;
font-size: 15px;
cursor: pointer;
font-weight: 500;
transition: all 0.15s ease;
display: block;
margin: 0 auto;
width: fit-content;
}

.btn-secondary:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.25);
color: var(--text-main);
}

.position-select-grid {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
margin-top: 16px;
}

.position-option {
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.12), rgba(10, 10, 16, 0.96));
border: 1px solid rgba(255, 255, 255, 0.06);
padding: 14px 16px;
border-radius: 16px;
cursor: pointer;
transition: all 0.18s ease;
text-align: left;
color: var(--text-main);
font-weight: 500;
font-size: 15px;
}

.position-option:hover {
background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.18), rgba(15, 15, 22, 0.98));
border-color: rgba(58, 123, 213, 0.45);
transform: translateY(-1px);
}

.bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: var(--nav-height);
background: rgba(10, 10, 15, 0.95);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-top: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
justify-content: space-around;
align-items: center;
padding: 0 20px;
z-index: 1000;
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.nav-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
padding: 8px 16px;
cursor: pointer;
transition: all 0.2s ease;
border-radius: 12px;
color: var(--text-muted);
}

.nav-item:hover {
background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
color: #00d2ff;
}

.nav-icon {
font-size: 24px;
transition: transform 0.2s ease;
}

.nav-item.active .nav-icon {
transform: scale(1.1);
}

.nav-label {
font-size: 11px;
font-weight: 500;
letter-spacing: 0.02em;
}

.placeholder {
text-align: center;
padding: 60px 20px;
}

.placeholder-icon {
font-size: 64px;
margin-bottom: 16px;
opacity: 0.5;
}

.placeholder-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 8px;
}

.placeholder-text {
font-size: 14px;
color: var(--text-muted);
}

@media (max-width: 380px) {
h1 {
font-size: 20px;
}
.question {
font-size: 16px;
}
.answer-btn {
font-size: 14px;
padding: 10px 11px;
}
}

/* === НОВЫЙ БЛОК: сетка и карточки героев для hero-quiz === */

.hero-result-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-top: 14px;
}

/* Карточка героя: общий контейнер */
.hero-card {
  background: rgba(15, 15, 20, 0.9);
  border-radius: 16px;
  padding: 16px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Рамки по качеству совпадения */
.hero-card--gold {
  border-color: rgba(255, 215, 90, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 215, 90, 0.35),
    0 0 26px rgba(255, 215, 90, 0.55);
}

.hero-card--silver {
  border-color: rgba(210, 218, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(210, 218, 255, 0.28),
    0 0 16px rgba(210, 218, 255, 0.25);
}

.hero-card--bronze {
  border-color: rgba(224, 169, 109, 0.8);
  box-shadow:
    0 0 0 1px rgba(224, 169, 109, 0.22),
    0 0 10px rgba(224, 169, 109, 0.25);
}

/* Верхняя строка: иконка + имя + ранг */
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-icon {
  width: 44px;
  height: 25px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-name {
  font-size: 13px;
  font-weight: 600;
  color: #f7f7fb;
}

.hero-rank {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #1f2937, #020617); /* тёмный фон */
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #f9fafb; /* светлая цифра */
}

/* Блок совпадения + прогресс‑бар */
.match-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.match-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.match-value {
  font-weight: 600;
  color: #ffd75a;
}

.match-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(30, 30, 40, 1);
  overflow: hidden;
}

.match-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9f1c, #ffd75a);
  box-shadow: 0 0 8px rgba(255, 159, 28, 0.7);
}

/* Нижняя строка: "Гайд: D2PT" + кнопка */
.guide-row {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  color: #e5f4ff; 
}

/* подпись слева "Гайд: D2PT" — обычный текст */
.guide-row span:first-child {
  /* можно оставить по умолчанию */
}

/* кнопка "Открыть гайд" справа */
.guide-chip {
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  color: #e0f2fe;
  font-size: 11px;
  font-weight: 500; /* было 500 */
  border: 1px solid rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 5px rgba(56, 189, 248, 0.25); /* лёгкий глоу */
}

/* чтобы твой JS‑обработчик продолжал работать */
.hero-card__guide-btn {
  /* этот класс используем совместно с guide-chip */
}

.guide-chip:hover {
  background: rgba(74, 158, 255, 0.2);
  box-shadow: 0 0 6px rgba(74, 158, 255, 0.4);
  transform: translateY(-1px);
}

.guide-chip:active {
  transform: translateY(0);
  box-shadow: none;
}

/* адаптация под мобильный */
@media (max-width: 400px) {
  .hero-card {
    padding: 9px 8px 10px;
  }
  .hero-name {
    font-size: 12px;
  }
  .match-line,
  .guide-row {
    font-size: 10px;
  }
}

/* ========== ПРОФИЛЬ ========== */

.profile-container {
  padding: 0;
}

/* Шапка профиля */
.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: radial-gradient(circle at 0% 0%, rgba(58, 123, 213, 0.22), transparent 70%),
              var(--glass-bg);
  border-radius: 20px;
  border: 1px solid rgba(58, 123, 213, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.profile-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(58, 123, 213, 0.6);
  box-shadow: 0 0 16px rgba(58, 123, 213, 0.35);
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
}

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

.profile-info h2 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.profile-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Карточки результатов */
.profile-card {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.profile-card-icon {
  font-size: 22px;
}

.profile-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.heroes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.heroes-footer {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.muted {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.45);
  text-decoration: none;
  color: inherit;
}

.hero-row-main {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.hero-row-rank {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  min-width: 18px;
  text-align: right;
}

.hero-row-img {
  width: 48px;
  height: 27px;
  border-radius: 6px;
  background: #1f2933;
  flex-shrink: 0;
}

.hero-row-main-text {
  flex: 1;
  min-width: 0;
}

.hero-row-name {
  font-size: 13px;
  font-weight: 600;
}

.hero-row-sub {
  font-size: 11px;
  color: #9b9ba1;
}

.link-button {
  display: inline;
  padding: 0;
  border: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  background: transparent;
  color: #60a5fa;
}

/* --- Позиция в профиле (строка статуса) --- */

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #1d4ed8, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.status-main {
  flex: 1;
  min-width: 0;
}

.status-main-title {
  font-size: 14px;
  font-weight: 500;
}

.status-main-sub {
  font-size: 12px;
  color: #9b9ba1;
  margin-top: 2px;
}

.status-link {
  font-size: 12px;
  color: #60a5fa;
  cursor: pointer;
  white-space: nowrap;
}

.profile-status-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(58, 123, 213, 0.7);
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.35), rgba(10, 10, 16, 0.98));
  color: #e5f2ff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(58, 123, 213, 0.55);
  transition: all 0.18s ease;
}

.profile-status-btn:hover {
  border-color: #3a7bd5;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 16px rgba(58, 123, 213, 0.8);
  transform: translateY(-1px);
}

.profile-status-btn:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 8px rgba(58, 123, 213, 0.5);
}

/* Пустое состояние */
.profile-empty-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.profile-action-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.2), rgba(10, 10, 16, 0.96));
  border: 1px solid rgba(58, 123, 213, 0.5);
  border-radius: 16px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.profile-action-btn:hover {
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.3), rgba(15, 15, 22, 0.98));
  border-color: #3a7bd5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
}

.profile-action-btn:active {
  transform: translateY(0);
}

/* ========== МАТЧАПЫ ========== */

/* Центрирование блока поиска по вертикали */
#matchup-search-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 40px);
}

/* Заголовок внутри матчапов — менее акцентный */
#matchup-search-screen .dashboard-header {
  margin-bottom: 14px;
}

#matchup-search-screen .dashboard-header h1 {
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  margin-bottom: 4px;
}

#matchup-search-screen .dashboard-header p {
  font-size: 14px;
  opacity: 0.8;
}

/* Поле поиска — главный акцент */
#matchup-search-screen .matchup-search-wrap {
  margin-top: 4px;
}

.matchup-search-wrap {
  position: relative;
  margin-bottom: 8px;
}

.matchup-search-input {
  width: 100%;
  padding: 14px 18px;
  /* Явные значения вместо CSS-переменных — надёжнее в desktop-клиентах Telegram */
  background: rgba(15, 15, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: #f5f5f7;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Arial, sans-serif;
  outline: none;
  box-sizing: border-box;
  display: block;
  /* Сбрасываем браузерные стили input — ключ к единому виду на desktop */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Лёгкое постоянное свечение */
  box-shadow:
    0 0 0 1px rgba(58, 123, 213, 0.12),
    0 0 14px rgba(58, 123, 213, 0.07),
    0 6px 20px rgba(0, 0, 0, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.matchup-search-input::placeholder {
  color: #9b9ba1;
}

.matchup-search-input:focus {
  border-color: rgba(58, 123, 213, 0.55);
  box-shadow:
    0 0 0 2px rgba(58, 123, 213, 0.2),
    0 0 20px rgba(58, 123, 213, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.55);
}

.matchup-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(12, 12, 18, 0.98);
  border: 1px solid rgba(58, 123, 213, 0.3);
  border-radius: 18px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.matchup-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.matchup-suggestion-item:last-child {
  border-bottom: none;
}

.matchup-suggestion-item:hover,
.matchup-suggestion-item:active {
  background: rgba(58, 123, 213, 0.18);
}

.matchup-suggestion-icon {
  width: 44px;
  height: 25px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.matchup-suggestion-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

/* Шапка экрана героя — компактная */
.matchup-hero-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: radial-gradient(circle at 0% 0%, rgba(58, 123, 213, 0.16), transparent 65%),
              var(--glass-bg);
  border-radius: 16px;
  border: 1px solid rgba(58, 123, 213, 0.2);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
  margin-top: 8px;
}

.matchup-hero-avatar {
  width: 64px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(58, 123, 213, 0.45);
  flex-shrink: 0;
}

.matchup-hero-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.matchup-hero-name-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matchup-hero-winrate {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  line-height: 1.3;
}

/* ---- Секция (обёртка блока с заголовком + табами + списком) ---- */
.matchup-section {
  margin-bottom: 14px;
}

.matchup-section-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  padding: 0 2px;
}

/* ---- Переключатель вкладок (один горизонтальный ряд) ---- */
.matchup-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 10px;
}

.matchup-tab {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  white-space: nowrap;
  text-align: center;
}

.matchup-tab.active {
  background: rgba(58, 123, 213, 0.22);
  border-color: rgba(58, 123, 213, 0.45);
  color: #d4eeff;
}

/* ---- Панель вкладки (обёртка списка) ---- */
.matchup-block {
  background: var(--glass-bg);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.matchup-placeholder-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  padding: 10px 0;
}

/* ---- Строка матчапа ---- */
.matchup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.matchup-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.matchup-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.matchup-item-icon {
  width: 38px;
  height: 22px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.matchup-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matchup-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  min-width: 96px;
}

.matchup-item-stat {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.matchup-item-delta {
  font-size: 13px;
  font-weight: 700;
}

.matchup-item-games {
  font-size: 10px;
  color: var(--text-muted);
}

/* Цвет дельты по знаку */
.matchup-item.positive .matchup-item-delta { color: #22C55E; }
.matchup-item.negative .matchup-item-delta { color: #EF4444; }
.matchup-item.neutral  .matchup-item-delta { color: var(--text-muted); }

/* Прогресс-бар */
.matchup-item-bar-wrap {
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.matchup-item-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.matchup-item.positive .matchup-item-bar-fill { background: #22C55E; }
.matchup-item.negative .matchup-item-bar-fill { background: #EF4444; }
.matchup-item.neutral  .matchup-item-bar-fill { background: rgba(255, 255, 255, 0.2); }

/* ========== STATS WARNING ========== */

.stats-warning {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #f57c00 !important;
  color: #fff !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  margin: 0 0 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(255, 152, 0, 0.35) !important;
}

.stats-warning span:first-child {
  font-size: 18px !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* ========== DONATE ========== */

.donate-entry-btn {
  border-color: rgba(255, 100, 100, 0.35);
  background: radial-gradient(circle at 0 0, rgba(213, 58, 58, 0.18), rgba(12, 12, 20, 0.95));
}

.donate-entry-btn:hover {
  background: radial-gradient(circle at 0 0, rgba(213, 58, 58, 0.28), rgba(12, 12, 20, 0.98));
  border-color: rgba(255, 100, 100, 0.6);
}

.donate-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donate-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
  width: 100%;
}

.donate-da-btn {
  display: block !important;
  width: auto !important;
  max-width: 280px !important;
  margin: 0 auto !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 12px !important;
  background: #0088cc !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  transition: opacity 0.2s, transform 0.15s;
}

.donate-da-btn:active {
  opacity: 0.85 !important;
  transform: scale(0.98);
}

.donate-back-btn {
  margin-top: 12px;
}

/* ========== FEEDBACK ========== */

/* Кнопка входа на главной странице */
.feedback-entry-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 20px;
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.16), rgba(8, 8, 14, 0.96));
  border: 1px solid rgba(58, 123, 213, 0.4);
  border-radius: 16px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  font-family: inherit;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 14px rgba(58, 123, 213, 0.18);
}

.feedback-entry-btn:hover {
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.26), rgba(12, 12, 20, 0.98));
  border-color: #3a7bd5;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 0 20px rgba(58, 123, 213, 0.38);
  transform: translateY(-1px);
}

.feedback-entry-btn:active {
  transform: translateY(0);
}

.feedback-entry-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.feedback-entry-text {
  flex: 1;
}

.feedback-entry-arrow {
  font-size: 15px;
  opacity: 0.55;
  color: #7eb6ff;
}

/* Подзаголовок-интро */
.feedback-intro {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 340px;
  margin: 0 auto;
}

/* Рейтинговые кнопки */
.feedback-rating-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.feedback-rating-btn {
  padding: 12px 16px;
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.07), rgba(8, 8, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-family: inherit;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 6px 16px rgba(0, 0, 0, 0.65);
}

.feedback-rating-btn:hover {
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.16), rgba(10, 10, 18, 0.97));
  border-color: rgba(58, 123, 213, 0.35);
}

.feedback-rating-btn.selected {
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.28), rgba(8, 8, 14, 0.98));
  border-color: #3a7bd5;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 14px rgba(58, 123, 213, 0.4);
}

/* Теги-чипы */
.feedback-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.feedback-tag-chip {
  padding: 7px 16px;
  background: rgba(10, 10, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.feedback-tag-chip:hover {
  background: rgba(58, 123, 213, 0.12);
  border-color: rgba(58, 123, 213, 0.35);
  color: var(--text-main);
}

.feedback-tag-chip.selected {
  background: rgba(58, 123, 213, 0.2);
  border-color: rgba(58, 123, 213, 0.65);
  color: #d4eeff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 0 8px rgba(58, 123, 213, 0.25);
}

/* Textarea */
.feedback-textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px 14px;
  background: rgba(8, 8, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 14px;
  font-family: inherit;
  line-height: 1.55;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.feedback-textarea::placeholder {
  color: rgba(155, 155, 161, 0.7);
}

.feedback-textarea:focus {
  border-color: rgba(58, 123, 213, 0.5);
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.14), inset 0 2px 8px rgba(0, 0, 0, 0.35);
}

.feedback-char-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  text-align: right;
  margin-top: 6px;
}

/* Строка статуса */
.feedback-status {
  font-size: 13px;
  text-align: center;
  min-height: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feedback-status.ok {
  color: #22C55E;
}

.feedback-status.err {
  color: #EF4444;
}

.feedback-status.hint {
  color: var(--text-muted);
}

/* Кнопка отправки — центрированная, акцентная */
.feedback-submit-btn {
  display: block;
  width: fit-content;
  min-width: 200px;
  padding: 14px 40px;
  margin: 0 auto 16px;
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.32), rgba(10, 10, 16, 0.98));
  border: 1px solid rgba(58, 123, 213, 0.65);
  border-radius: 999px;
  color: #e5f2ff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.55), 0 0 18px rgba(58, 123, 213, 0.28);
}

.feedback-submit-btn:hover {
  background: radial-gradient(circle at 0 0, rgba(58, 123, 213, 0.46), rgba(14, 14, 22, 0.98));
  border-color: #3a7bd5;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65), 0 0 26px rgba(58, 123, 213, 0.5);
  transform: translateY(-1px);
}

.feedback-submit-btn:active {
  transform: translateY(0);
}

.feedback-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Кнопка «Назад» внизу страницы */
.feedback-back-row {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 4px;
}

/* ── Hero Loading Screen ────────────────────────────── */
#hero-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(10, 20, 60, 0.4) 0%, transparent 65%),
    #03030a;
}

.hlo-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hlo-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: hlo-twinkle var(--dur, 2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes hlo-twinkle {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.5; }
}

/* Контейнер иконок — плоский, без колец */
.hlo-orbits-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hlo-icon {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(58, 123, 213, 0.3);
  box-shadow: 0 0 8px rgba(58, 123, 213, 0.15);
  opacity: 0;
}
@keyframes hlo-icon-in {
  from { opacity: 0; }
  to   { opacity: 0.5; }
}

.hlo-center-panel {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(3, 3, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 32px 24px;
  max-width: 320px;
  animation: hlo-panel-in 0.6s ease forwards;
}
@keyframes hlo-panel-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hlo-spinner-ring {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(58, 123, 213, 0.2);
  border-top-color: #3a7bd5;
  border-radius: 50%;
  animation: hlo-spin 0.85s linear infinite;
  margin: 0 auto 14px;
}
@keyframes hlo-spin { to { transform: rotate(360deg); } }

.hlo-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hlo-dots span {
  display: inline-block;
  opacity: 0.1;
  animation: hlo-dot-pulse 1.5s ease-in-out infinite;
}
.hlo-dots span:nth-child(1) { animation-delay: 0s;   }
.hlo-dots span:nth-child(2) { animation-delay: 0.3s; }
.hlo-dots span:nth-child(3) { animation-delay: 0.6s; }
@keyframes hlo-dot-pulse {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 1;   }
}

.hlo-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.hlo-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 3;
}
.hlo-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
}