.footer {
  margin-top: 50px;
  background: radial-gradient(
      120% 120% at 0% 0%,
      color-mix(in srgb, var(--footer-bg-soft) 70%, #22304f 30%) 0%,
      transparent 58%
    ),
    linear-gradient(180deg, var(--footer-bg-soft) 0%, var(--footer-bg) 100%);
  padding: 80px 0 30px;
  color: var(--footer-text);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sticky-border) 50%, transparent 100%);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand .logo .text-bold {
  fill: var(--footer-title);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.f-pill {
  background: var(--footer-pill-bg);
  border: 1px solid var(--footer-pill-border);
  color: var(--footer-text-strong);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.f-pill:hover {
  border-color: color-mix(in srgb, var(--sticky-border) 60%, #ffffff 40%);
  background: color-mix(in srgb, var(--footer-pill-bg) 65%, #ffffff 35%);
  color: var(--footer-title);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  min-width: 200px;
}

.footer-links a {
  display: inline-block;
  color: var(--footer-text);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--footer-title);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--footer-title);
  background-color: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--footer-border);
  color: color-mix(in srgb, var(--footer-text) 80%, #44526d 20%);
  font-size: 0.85rem;
  gap: 24px;
}

#stickyViralFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: var(--sticky-height);
  background-color: var(--background);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  z-index: 1030;
  box-shadow: 0 -16px 30px -20px rgba(0, 0, 0, 0.65);
  border-top: 1px solid var(--sticky-border);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  backdrop-filter: blur(8px) saturate(130%);
  flex-wrap: wrap;
}

#stickyViralFooter > * {
  margin: 0;
}

#stickyViralFooter .cta-button {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-primary);
}
.running-tournament{
  color: var(--text-muted);
}
.with-tumag{
  color: var(--primary);
  font-weight: bold;
}
.org-free-text{
  color: var(--primary);
}
#stickyViralFooter .cta-button:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-primary-hover);
  transform: translateY(-1px);
  filter: none;
}

@media (min-width: 995px) {
  body {
    padding-bottom: calc(var(--sticky-height) + 8px);
  }
}

@media (max-width: 994px) {
  .footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 28px;
  }

  .footer-links {
    min-width: 160px;
    flex: 1 1 160px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #stickyViralFooter {
    position: relative;
    min-height: auto;
    box-shadow: none;
    padding: 20px 10px;
    gap: 30px;
    text-align: center;
  }

  #stickyViralFooter span {
    font-size: 0.95rem;
    width: 100%;
  }

  #stickyViralFooter .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    gap: 18px;
  }

  .footer-links {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
