body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fdf6f9;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(135deg, #ffb6c1, #ffd700);
  text-align: center;
  padding: 40px 20px;
}

/* Nav */
nav {
  background: #ff8fab;
  text-align: center;
  padding: 12px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

/* Sections */
section {
  max-width: 900px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
}

h2 {
  color: #ff6f91;
}

/* Hero Image */
.hero img {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}

/* Button */
.button {
  display: inline-block;
  background: #ff6f91;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
}

/* Social */
.social {
  margin-top: 15px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}

/* Sponsors */
.sponsor-slider {
  overflow: hidden;
  padding: 20px 0;
}

.sponsor-track {
  display: flex;
  width: calc(200px * 8);
  animation: scroll 20s linear infinite;
}

.sponsor-track img {
  width: 150px;
  margin: 0 25px;
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}