/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  scroll-behavior: smooth;
  line-height: 1.6;
}

.hero {
  height: 100vh;
  background: url("Goku11.webp") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  padding: 12px 30px;
  background: #9c0404;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #ffd700;
  color: #111;
}

/* Characters Section */
.characters {
  padding: 60px 10%;
  text-align: center;
}
.characters h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffd700;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  background: #1f1f1f;
  border-radius: 12px;
  width: 250px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  border-radius: 10px;
}
.card h3 {
  margin-top: 15px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  color: #ccc;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.5s ease forwards;
}
.slide-in {
  animation: slideIn 1.5s ease forwards;
}
.pulse {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}
