/* ==================== КАМПАНИИ ==================== */

.campaigns-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px 16px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.campaigns-container .screen-header h1 {
  color: #ffd700;
  font-size: 2em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.loading-indicator {
  text-align: center;
  color: #aaa;
  font-size: 1.1em;
  padding: 40px;
}

/* ==================== КАРТОЧКА КАМПАНИИ ==================== */
.campaign-card {
  background: url("../card_background.jpg") center / cover no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
}
.campaign-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}
.campaign-card > * {
  position: relative;
  z-index: 1;
}

.campaign-card-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.campaign-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.campaign-card:hover .campaign-card-cover img {
  transform: scale(1.05);
}

/* ── Бейдж фракции на обложке кампании ─────────────────── */
.campaign-card-faction-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  height: 50%; /* высота = половина высоты обложки */
  aspect-ratio: 1; /* квадрат */
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.campaign-card-header,
.campaign-card-desc,
.campaign-card-progress,
.campaign-card-stars {
  padding-left: 20px;
  padding-right: 20px;
}

.campaign-card-header {
  padding-top: 14px;
}

.campaign-card:hover {
  transform: translateY(-3px);
  border-color: #ffd700;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2);
}

/* ==================== ЗАБЛОКИРОВАННАЯ КАМПАНИЯ ==================== */
.campaign-card-locked {
  cursor: default;
  opacity: 0.45;
}

.campaign-card-locked .campaign-card-cover img {
  filter: grayscale(100%);
}

.campaign-card-locked:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.campaign-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}

.campaign-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
}

.campaign-card-title {
  font-size: 1.25em;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.campaign-card-desc {
  color: #ccc;
  font-size: 0.9em;
  margin-bottom: 12px;
  line-height: 1.4;
}

.campaign-card-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
}

.progress-bar-bg {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.85em;
  color: #aaa;
  white-space: nowrap;
}

/* ==================== ОБРЕЗКА ОПИСАНИЯ ==================== */
.campaign-desc-toggle,
.battle-desc-toggle {
  color: #ffd700;
  cursor: pointer;
  font-size: 0.85em;
  margin-left: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.campaign-desc-toggle:hover,
.battle-desc-toggle:hover {
  color: #ffec80;
}

/* ==================== ДЕТАЛИЗАЦИЯ КАМПАНИИ ==================== */
#campaign-detail {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px;
}

.campaign-detail-header {
  margin-bottom: 24px;
}

.campaign-detail-cover {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#campaign-detail-title {
  color: #ffd700;
  font-size: 1.6em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.campaign-detail-desc {
  color: #ccc;
  font-size: 0.95em;
  line-height: 1.4;
}

/* ==================== ЦЕПОЧКА БОЁВ ==================== */
.battle-chain {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.battle-node {
  display: flex;
  align-items: flex-start;
  padding: 0;
  position: relative;
}

.battle-node-card {
  flex: 1;
  background: url("../card_background.jpg") center / cover no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
}
.battle-node-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}
.battle-node-card > * {
  position: relative;
  z-index: 1;
}

.battle-node-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.battle-node-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.battle-node-card:hover:not(.node-locked) .battle-node-cover img {
  transform: scale(1.05);
}

.battle-node-header,
.battle-node-desc,
.battle-node-difficulty,
.battle-node-reward,
.battle-stars {
  padding-left: 16px;
  padding-right: 16px;
}

.battle-node-header {
  padding-top: 12px;
}

.battle-node-desc {
  color: #ccc;
  font-size: 0.85em;
  line-height: 1.4;
  margin-top: 4px;
}

.battle-stars {
  padding-bottom: 14px;
}

.battle-node-card:not(.node-locked) {
  cursor: pointer;
}

.battle-node-card:hover:not(.node-locked) {
  transform: translateY(-2px);
  border-color: #ffd700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.battle-node-card.node-locked {
  opacity: 0.45;
  cursor: not-allowed;
}

.battle-node-card.node-completed {
  border-color: rgba(76, 175, 80, 0.4);
}

.battle-node-card.node-lost {
  border-color: rgba(244, 67, 54, 0.3);
}

.battle-node-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.battle-node-name {
  font-size: 1.15em;
  font-weight: bold;
  color: #ffd700;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ==================== ЗВЁЗДЫ БОЯ ==================== */
.battle-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.battle-star {
  font-size: 1.8em;
  transition: all 0.2s;
}

.battle-star.earned {
  color: #ffd700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.battle-star.unearned {
  color: rgba(255, 255, 255, 0.15);
}

.battle-node-reward {
  font-size: 0.8em;
  color: #ff8c00;
  margin-top: 8px;
}

/* ==================== СТАТИСТИКА АРМИЙ ==================== */
.battle-node-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 16px;
  padding: 6px 16px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 6px;
}

.battle-stats-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.battle-stats-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
  flex-shrink: 0;
}

.battle-stats-text {
  font-size: 0.78em;
  color: #e0c878;
  font-weight: 500;
}

.battle-stats-sep {
  color: rgba(255, 215, 0, 0.3);
  font-size: 0.9em;
  flex-shrink: 0;
}

.battle-node-card.node-locked .battle-node-stats {
  opacity: 0.4;
}

/* ==================== ОЧКИ СЛАВЫ (inline) ==================== */
.card-fame-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85em;
  font-weight: bold;
  color: #ffd700;
  text-shadow:
    0 0 8px rgba(255, 215, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
}

.fame-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
}

.fame-icon-sm {
  width: 18px;
  height: 18px;
}

/* ==================== МОДАЛКА ВЫБОРА СЛОЖНОСТИ ==================== */
.modal-difficulty {
  max-width: 900px;
  width: 95%;
  background: linear-gradient(160deg, #2a2118, #1a1510);
  border-color: #6b5a40;
}

.modal-title {
  color: #c9a84c;
  font-size: 1.6em;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.modal-difficulty .modal-title {
  color: #e8d5b0;
}

.modal-difficulty .difficulty-choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-difficulty .difficulty-card {
  width: 140px;
}

/* Мобильный адаптив модалки сложности: 2 колонки, 5-я карточка на всю ширину */
@media (max-width: 480px) {
  .modal-difficulty {
    width: 96%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 16px 12px;
  }

  .modal-difficulty .difficulty-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .modal-difficulty .difficulty-card {
    width: 100%;
    padding: 10px 8px;
  }

  .modal-difficulty .difficulty-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .modal-difficulty .difficulty-level {
    font-size: 1.4em;
    margin-bottom: 2px;
  }

  .modal-difficulty .difficulty-name {
    font-size: 0.85em;
    margin-bottom: 3px;
  }

  .modal-difficulty .difficulty-desc {
    font-size: 0.65em;
  }
}

/* ==================== МОДАЛКА НАГРАД ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 20, 10, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: url("../card_background.jpg") center / cover no-repeat;
  border: 3px solid #8b7355;
  border-radius: 18px;
  padding: 28px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}
/* Полупрозрачный тёмный слой поверх фона для читаемости */
.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 28, 16, 0.75);
  border-radius: 15px;
  z-index: 0;
  pointer-events: none;
}
.modal-title,
.rewards-list,
.modal-buttons {
  position: relative;
  z-index: 1;
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(60, 45, 30, 0.5);
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  animation: reward-appear 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.reward-item:nth-child(1) {
  animation-delay: 0.1s;
}
.reward-item:nth-child(2) {
  animation-delay: 0.25s;
}
.reward-item:nth-child(3) {
  animation-delay: 0.4s;
}
.reward-item:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes reward-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reward-item-icon {
  font-size: 1.8em;
  flex-shrink: 0;
}

.reward-item-info {
  text-align: left;
}

.reward-item-name {
  color: #c9a84c;
  font-weight: bold;
  font-size: 1em;
}

.reward-item-type {
  color: #a09080;
  font-size: 0.8em;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-btn {
  padding: 10px 28px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 10px;
  border: 2px solid #5aacdd;
  background: linear-gradient(135deg, #1a5070, #2a6888);
  color: #e8f4ff;
  cursor: pointer;
  transition: all 0.2s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.modal-btn:hover {
  transform: translateY(-2px);
  border-color: #70c0f0;
  box-shadow: 0 4px 20px rgba(90, 172, 221, 0.45);
}

.modal-btn-primary {
  border-color: #ffd700;
  background: linear-gradient(135deg, #c89a20, #e8b830);
  color: #fff8dc;
}

.modal-btn-primary:hover {
  box-shadow: 0 4px 22px rgba(255, 215, 0, 0.5);
  border-color: #ffe860;
  background: linear-gradient(135deg, #d8aa30, #f0c840);
}

/* Кнопка «Отмена» в модалке сложности — коричневая */
#difficulty-cancel-btn {
  border-color: #6b5a40;
  background: linear-gradient(135deg, #4a3a2a, #6b5a40);
  color: #e8d5b0;
}
#difficulty-cancel-btn:hover {
  border-color: #8b7355;
  box-shadow: 0 4px 20px rgba(107, 90, 64, 0.45);
}

/* ==================== ПУСТОЙ СОСТОЯНИЕ ==================== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}

.empty-state-icon {
  font-size: 3em;
  margin-bottom: 16px;
}

.empty-state-text {
  font-size: 1.1em;
  line-height: 1.5;
}

/* ==================== ЭКРАН НАГРАД КАМПАНИИ (РЕДИЗАЙН) ==================== */

/* Модалка наград — шире и скроллируемая */
#rewards-modal .modal-content {
  max-width: 560px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

#rewards-modal .modal-title {
  flex-shrink: 0;
  margin-bottom: 16px;
}

#rewards-modal .modal-title.result-win {
  color: #c9a84c;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

#rewards-modal .modal-title.result-lose {
  color: #cc5544;
  text-shadow: 0 0 20px rgba(204, 85, 68, 0.5);
}

#rewards-modal .modal-title.result-draw {
  color: #b0a090;
  text-shadow: 0 0 20px rgba(176, 160, 144, 0.4);
}

/* Список наград — скроллируемый */
#rewards-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding-right: 4px;
}

/* Секция наград */
.reward-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reward-section-title {
  color: #b89840;
  font-size: 0.85em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.3);
  padding-bottom: 4px;
}

/* Прирост бюджета */
.reward-budget-delta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  padding: 8px 0;
}

.reward-budget-value {
  color: #88cc66;
  font-size: 1.8em;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(136, 204, 102, 0.4);
}

.reward-budget-label {
  color: #90a888;
  font-size: 0.85em;
}

/* Звёзды */
.reward-stars-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
  padding: 6px 0;
}

.reward-stars-count {
  color: #c9a84c;
  font-size: 1.6em;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.reward-stars-label {
  color: #a89060;
  font-size: 0.85em;
}

/* Фракции */
.reward-faction-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.reward-faction-card {
  background: rgba(60, 45, 30, 0.5);
  border: 1px solid rgba(139, 115, 85, 0.35);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 120px;
  max-width: 180px;
  text-align: center;
  animation: reward-appear 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.reward-faction-card:nth-child(1) {
  animation-delay: 0.1s;
}
.reward-faction-card:nth-child(2) {
  animation-delay: 0.2s;
}
.reward-faction-card:nth-child(3) {
  animation-delay: 0.3s;
}

.reward-faction-pattern {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 6px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(139, 115, 85, 0.5);
}

.reward-faction-name {
  color: #c9a84c;
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 2px;
}

.reward-faction-tag {
  color: #908070;
  font-size: 0.7em;
}

/* Карты — сетка миниатюр */
.reward-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.reward-card-wrapper {
  animation: reward-appear 0.4s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.reward-card-wrapper:nth-child(1) {
  animation-delay: 0.05s;
}
.reward-card-wrapper:nth-child(2) {
  animation-delay: 0.1s;
}
.reward-card-wrapper:nth-child(3) {
  animation-delay: 0.15s;
}
.reward-card-wrapper:nth-child(4) {
  animation-delay: 0.2s;
}
.reward-card-wrapper:nth-child(5) {
  animation-delay: 0.25s;
}
.reward-card-wrapper:nth-child(6) {
  animation-delay: 0.3s;
}
.reward-card-wrapper:nth-child(7) {
  animation-delay: 0.35s;
}
.reward-card-wrapper:nth-child(8) {
  animation-delay: 0.4s;
}

.reward-card-thumb {
  width: 108px;
  height: 150px;
  font-size: 0.8em;
  transform: none;
  position: relative;
  cursor: default;
  flex-shrink: 0;
  margin: 0;
}

.reward-card-thumb:hover {
  transform: none;
  z-index: auto;
}

/* Fallback для карт без createCardEl */
.reward-card-fallback {
  width: 108px;
  height: 150px;
  background: rgba(60, 45, 30, 0.5);
  border: 1px solid rgba(139, 115, 85, 0.35);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  text-align: center;
}

.reward-card-fallback-name {
  color: #d8d0c0;
  font-size: 0.65em;
  font-weight: bold;
  line-height: 1.2;
}

.reward-card-fallback-info {
  color: #908070;
  font-size: 0.55em;
  margin-top: 2px;
}

/* Кампании */
.reward-campaign-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(60, 45, 30, 0.5);
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  animation: reward-appear 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.reward-campaign-item:nth-child(1) {
  animation-delay: 0.1s;
}
.reward-campaign-item:nth-child(2) {
  animation-delay: 0.25s;
}

.reward-campaign-pattern {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(139, 115, 85, 0.4);
}

.reward-campaign-name {
  color: #c9a84c;
  font-weight: bold;
  font-size: 0.9em;
}

.reward-campaign-faction {
  color: #908070;
  font-size: 0.75em;
}

/* Пустое состояние (поражение/ничья) */
.reward-empty {
  color: #908070;
  font-size: 0.95em;
  text-align: center;
  padding: 20px 10px;
  line-height: 1.5;
}

/* Кнопка наград */
#rewards-continue-btn {
  flex-shrink: 0;
  padding: 12px 36px;
  font-size: 1.1em;
  border-color: #b89a50;
  background: linear-gradient(135deg, #6a5a30, #8a7a40);
  color: #ffd700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}
#rewards-continue-btn:hover {
  transform: translateY(-2px);
  border-color: #d4b860;
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.45);
}

/* Адаптив для маленьких экранов */
@media (max-width: 480px) {
  #rewards-modal .modal-content {
    padding: 18px 14px;
    max-height: 90vh;
  }

  .reward-card-thumb {
    width: 90px;
    height: 126px;
  }

  .reward-card-grid {
    gap: 6px;
  }

  /* Мобильный адаптив карточек кампаний */
  .campaigns-container {
    padding: 12px 10px 0 10px;
    gap: 12px;
  }

  .campaigns-container .screen-header h1 {
    font-size: 1.4em;
  }

  .campaign-card-cover {
    height: 180px;
  }

  .campaign-card-header,
  .campaign-card-desc,
  .campaign-card-progress {
    padding-left: 12px;
    padding-right: 12px;
  }

  .campaign-card-title {
    font-size: 1.05em;
  }

  .campaign-card-desc {
    font-size: 0.8em;
  }

  /* Мобильный адаптив детализации кампании */
  #campaign-detail {
    padding: 10px;
  }

  .campaign-detail-header {
    margin-bottom: 16px;
  }

  .campaign-detail-cover {
    max-height: 300px;
  }

  #campaign-detail-title {
    font-size: 1.2em;
  }

  .battle-node-cover {
    height: 180px;
  }

  .battle-node-header,
  .battle-node-desc,
  .battle-node-difficulty,
  .battle-node-reward,
  .battle-stars {
    padding-left: 10px;
    padding-right: 10px;
  }

  .battle-node-name {
    font-size: 1em;
  }

  .battle-node-desc {
    font-size: 0.78em;
  }

  .battle-star {
    font-size: 1.4em;
  }

  .battle-stats-text {
    font-size: 0.7em;
  }
}
