/**
 * loading.css — Оверлей загрузки с барабаном мастей.
 *
 * 6 бейджей по кругу (horse > bow > spear) × 2 комплекта,
 * между ними стрелки «>» символизирующие преимущества мастей.
 * В центре — swords (нейтральная масть, без преимуществ/уязвимостей).
 * Бейджи и стрелки движутся по кругу, но не вращаются вокруг своей оси.
 */

/* ── Оверлей ─────────────────────────────────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.loading-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Аренка барабана ────────────────────────────────────── */
.loading-arena {
  position: relative;
  width: 200px;
  height: 200px;
}

/* ── Центральный бейдж (swords) ─────────────────────────── */
.drum-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #95a5a6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.drum-center img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ── Контейнер карусели — вращается целиком ────────────── */
.drum-carousel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  animation: drum-rotate 6s linear infinite;
}

/* ── Бейдж масти (круглый) ─────────────────────────────── */
.suit-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  top: -24px;
  left: -24px;
}

.suit-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ── Цвета рамок по мастям ─────────────────────────────── */
.suit-badge:has(img[alt="horse"]) {
  border-color: #f39c12;
}
.suit-badge:has(img[alt="bow"]) {
  border-color: #2ecc71;
}
.suit-badge:has(img[alt="spear"]) {
  border-color: #4a90e2;
}
.suit-badge:has(img[alt="swords"]) {
  border-color: #95a5a6;
}

/* ── Стрелка между бейджами ────────────────────────────── */
.suit-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  color: #ffd700;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ── 6 бейджей по кругу (radius 75px, шаг 60°) ────────── */
.drum-carousel .suit-badge:nth-child(1) {
  transform: rotate(0deg) translateY(-75px);
}
.drum-carousel .suit-badge:nth-child(2) {
  transform: rotate(60deg) translateY(-75px);
}
.drum-carousel .suit-badge:nth-child(3) {
  transform: rotate(120deg) translateY(-75px);
}
.drum-carousel .suit-badge:nth-child(4) {
  transform: rotate(180deg) translateY(-75px);
}
.drum-carousel .suit-badge:nth-child(5) {
  transform: rotate(240deg) translateY(-75px);
}
.drum-carousel .suit-badge:nth-child(6) {
  transform: rotate(300deg) translateY(-75px);
}

/* ── 6 стрелок между ними (30°, 90°, 150°, 210°, 270°, 330°) */
.drum-carousel .suit-arrow:nth-child(7) {
  transform: rotate(30deg) translateY(-75px);
}
.drum-carousel .suit-arrow:nth-child(8) {
  transform: rotate(90deg) translateY(-75px);
}
.drum-carousel .suit-arrow:nth-child(9) {
  transform: rotate(150deg) translateY(-75px);
}
.drum-carousel .suit-arrow:nth-child(10) {
  transform: rotate(210deg) translateY(-75px);
}
.drum-carousel .suit-arrow:nth-child(11) {
  transform: rotate(270deg) translateY(-75px);
}
.drum-carousel .suit-arrow:nth-child(12) {
  transform: rotate(330deg) translateY(-75px);
}

/* ── Вращение барабана ──────────────────────────────────── */
@keyframes drum-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── Текст статуса ─────────────────────────────────────── */
.loading-text {
  color: #ccc;
  font-size: 1.05em;
  font-family: inherit;
  text-align: center;
  max-width: 280px;
  line-height: 1.4;
}

/* ── Точки-пульсатор под текстом ───────────────────────── */
.loading-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 3px;
  background: #ffd700;
  border-radius: 50%;
  animation: loading-dot-pulse 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loading-dot-pulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
