body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.sports-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px 8px;
}

.sports-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 1.5px 8px rgba(30,60,114,0.12);
  max-width: 500px;
  width: 100%;
  padding: 32px 24px 24px 24px;
  z-index: 2;
  animation: cardIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes cardIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.sports-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sports-icon {
  font-size: 2.2rem;
  color: #1e3c72;
  filter: drop-shadow(0 2px 2px #2a529888);
}

.sports-card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3c72;
  margin: 0;
}

.sports-section {
  margin-bottom: 20px;
}

.sports-section h2 {
  font-size: 1.15rem;
  color: #2a5298;
  margin-bottom: 6px;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.sports-section p, .sports-section ul {
  color: #333;
  font-size: 1rem;
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.sports-section ul {
  padding-left: 22px;
  margin-bottom: 8px;
}

.sports-section li {
  margin-bottom: 4px;
  position: relative;
}

.sports-section li::before {
  content: '⚽';
  margin-right: 8px;
  font-size: 1.1em;
  color: #1e3c72;
}

.sports-contact {
  font-weight: 700;
  color: #1e3c72;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.sports-floaters {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.sports-floater {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.floater1 { left: 8%; top: 12%; animation-delay: 0s; }
.floater2 { right: 10%; top: 20%; animation-delay: 1.1s; }
.floater3 { left: 15%; bottom: 15%; animation-delay: 2.2s; }
.floater4 { right: 12%; bottom: 18%; animation-delay: 3.3s; }
.floater5 { left: 20%; top: 35%; animation-delay: 4.1s; }

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .sports-card {
    padding: 18px 4vw 16px 4vw;
    border-radius: 18px;
    max-width: 98vw;
  }
  .sports-header h1 {
    font-size: 1.3rem;
  }
  .sports-icon {
    font-size: 1.5rem;
  }
  .sports-section h2 {
    font-size: 1rem;
  }
  .sports-section p, .sports-section ul {
    font-size: 0.98rem;
  }
} 