
/* === GOATED HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #0a0f3c 0%, #1f2a63 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  background: linear-gradient(to right, #00e0ff, #8f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-top: 1rem;
  color: #cfd8ff;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.btn {
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.btn-primary {
  background: #00d1ff;
  color: #000;
  box-shadow: 0 0 16px #00d1ff80;
}
.btn-secondary {
  background: #8f00ff;
  color: white;
  box-shadow: 0 0 16px #8f00ff88;
}
.btn-premium {
  background: linear-gradient(45deg, gold, orange);
  color: #111;
  box-shadow: 0 0 16px gold;
}
.btn-outline {
  background: transparent;
  border: 2px solid #00d1ff;
  color: #00d1ff;
}
.btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* === TOOLTIP HINTS === */
.btn::after {
  content: attr(data-hint);
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border-radius: 6px;
  box-shadow: 0 0 5px #0006;
  transition: opacity 0.2s ease-in-out;
}
.btn:hover::after {
  opacity: 1;
}

/* === MESSI AVATAR GLOW === */
.messi-preview {
  position: relative;
  margin-top: 2.5rem;
}
.messi-image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 5px solid white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
              0 0 40px rgba(0, 255, 255, 0.3);
  animation: glowFade 2s ease-in-out infinite alternate;
}
@keyframes glowFade {
  0% { box-shadow: 0 0 10px #0ff; }
  100% { box-shadow: 0 0 30px #0ff; }
}
