/* ==========================================
   CHAMPION RUSH PANEL STYLING
   ========================================== */

.champion-rush-panel {
  position: absolute;
  left: 50px;
  top: 380px; /* Positioned below zone status panel */
  width: 220px;
  background: linear-gradient(135deg, rgba(20, 5, 5, 0.95) 0%, rgba(45, 5, 5, 0.98) 100%);
  border: 1.5px solid rgba(255, 214, 0, 0.25);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

/* Header bar */
.champion-rush-header {
  background: linear-gradient(90deg, #990000 0%, #550000 100%);
  height: 36px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary-gold);
}

.champion-rush-header .crown-icon {
  font-size: 18px;
  color: var(--primary-gold);
  filter: drop-shadow(0 0 4px rgba(255, 214, 0, 0.8));
}

/* Empty State / Standard text info */
.rush-empty-message {
  padding: 20px 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-style: italic;
}

/* Logo cards row */
.rush-team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 8px;
  justify-content: center;
  min-height: 110px;
}

/* Individual card */
.rush-team-card {
  flex: 0 0 96px;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 214, 0, 0.2);
  border-radius: 4px;
  padding: 8px 4px 6px 4px;
  position: relative;
  transition: all 0.3s ease;
}

.rush-team-card:hover {
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.6);
}

/* Crown overlay on top of logo card */
.rush-team-card .crown-overlay {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  filter: drop-shadow(0 0 6px rgba(255, 214, 0, 0.9));
  z-index: 10;
}

/* Logo image inside card */
.rush-team-card img.logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1.5px solid var(--primary-gold);
  border-radius: 4px;
  background-color: #000;
}

/* Team acronym inside card */
.rush-team-card .team-code {
  font-weight: 900;
  font-size: 12px;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}

/* Page indicator dots */
.rush-page-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 8px;
  align-items: center;
}

.rush-page-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.rush-page-dots span.active {
  background: var(--primary-gold);
  box-shadow: 0 0 6px var(--primary-gold);
  transform: scale(1.2);
}

/* Org Logo view styling */
.rush-org-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  min-height: 120px;
  gap: 8px;
}

.rush-org-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
  filter: drop-shadow(0 0 8px rgba(255, 214, 0, 0.6));
  animation: logoPulse 2s infinite ease-in-out;
}

.rush-org-name {
  font-size: 13px;
  font-weight: 900;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 0 6px rgba(255, 214, 0, 0.55);
}

@keyframes logoPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(255, 214, 0, 0.45)); }
  50% { transform: scale(1.015); filter: drop-shadow(0 0 14px rgba(255, 214, 0, 0.75)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(255, 214, 0, 0.45)); }
}
