/* Shark's Logo — Paralympic hero (standing character + aura) */
.sharks-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  user-select: none;
}

/* ── Hero stage (auth / large) ── */
.logo-hero-stage {
  position: relative;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: logoFloat 4s ease-in-out infinite;
}

.logo-agitos-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo-agito-arc {
  opacity: 0.85;
  filter: drop-shadow(0 0 4px currentColor);
}

.logo-agito-red { animation: agitoArcPulse 2.4s ease-in-out infinite; }
.logo-agito-blue { animation: agitoArcPulse 2.4s ease-in-out 0.35s infinite; }
.logo-agito-green { animation: agitoArcPulse 2.4s ease-in-out 0.7s infinite; }

@keyframes agitoArcPulse {
  0%, 100% { opacity: 0.65; stroke-width: 3.5; }
  50% { opacity: 1; stroke-width: 4; }
}

.logo-aura {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.logo-aura--1 {
  width: 120px;
  height: 36px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.45) 0%, transparent 72%);
  animation: auraPulse 2.8s ease-in-out infinite;
}

.logo-aura--2 {
  width: 140px;
  height: 140px;
  bottom: 8px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.15), inset 0 0 20px rgba(34, 197, 94, 0.08);
  animation: auraSpin 12s linear infinite;
}

.logo-aura--3 {
  width: 156px;
  height: 156px;
  bottom: 0;
  border: 1px dashed rgba(168, 85, 247, 0.22);
  animation: auraSpin 18s linear infinite reverse;
}

@keyframes auraPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes auraSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

.logo-hero-char {
  position: relative;
  z-index: 2;
  margin-bottom: 6px;
  filter: drop-shadow(0 10px 28px rgba(34, 197, 94, 0.35));
}

.logo-hero-stage .swimmer-standing.swimmer-hero .swimmer-stand-svg {
  width: 108px;
  height: auto;
}

.logo-hero-stage .swimmer-hero-glow {
  width: 90%;
  height: 32px;
  animation: heroGlowPulse 2.8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ── Mini badge (top bar) ── */
.sharks-logo--mini { gap: 0; }

.logo-mini-stage {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.logo-agitos-svg--sm {
  width: 40px;
  height: 40px;
}

.logo-agitos-svg--sm .logo-agito-arc {
  stroke-width: 2.5;
}

.logo-mini-aura {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 28px;
  height: 10px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.5) 0%, transparent 70%);
  pointer-events: none;
  animation: auraPulse 2.8s ease-in-out infinite;
}

.logo-mini-char {
  position: relative;
  z-index: 1;
  margin-bottom: 2px;
}

.logo-mini-stage .swimmer-standing.swimmer-team .swimmer-stand-svg {
  width: 26px;
  height: auto;
}

.logo-mini-stage .swimmer-hero-glow {
  width: 22px;
  height: 8px;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Title ── */
.logo-title-wrap { text-align: center; }

.logo-title-main {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 40%, #a855f7 70%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 4s ease-in-out infinite;
  background-size: 200% 200%;
}

.logo-title-main--lg { font-size: 42px; }
.logo-title-main.mini { font-size: 15px; letter-spacing: 1px; }

@keyframes logoShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.logo-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.logo-agitos {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  justify-content: center;
}

.logo-agito {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: agitoPulse 2s ease-in-out infinite;
}
.logo-agito.red { background: #ef4444; animation-delay: 0s; }
.logo-agito.blue { background: #3b82f6; animation-delay: 0.3s; }
.logo-agito.green { background: #22c55e; animation-delay: 0.6s; }

@keyframes agitoPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px currentColor; }
}

.brand-mini-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
