/* ===== RONALDO FAN SITE — by Leo ===== */

/* ---------- reset & base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: #0a0e27;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #7df96e;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 2px solid #7df96e;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav a:hover {
  color: #3b82f6;
}

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(125, 249, 110, 0.15) 0%, transparent 50%),
    #0a0e27;
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  text-transform: uppercase;
  background: linear-gradient(135deg, #3b82f6, #7df96e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(125, 249, 110, 0.8));
  }
}

.hero .tagline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-top: 0.5rem;
  color: #7df96e;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero .subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
}

.hero-number {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  color: rgba(125, 249, 110, 0.07);
  position: absolute;
  z-index: 0;
  user-select: none;
}

/* ---------- sections (shared) ---------- */
section {
  padding: 5rem 2rem;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3b82f6, #7df96e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- stats ---------- */
.stats {
  background: #0d1233;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: linear-gradient(145deg, #131a4a, #0a0e27);
  border: 1px solid rgba(125, 249, 110, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.stat-card .number {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #7df96e;
}

.stat-card .label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- power ---------- */
.power {
  background: #0a0e27;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.power-card {
  background: linear-gradient(145deg, #131a4a, #0a0e27);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.power-card .icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.power-card h3 {
  font-size: 1.2rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.power-card .value {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #7df96e;
}

.power-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ---------- gallery ---------- */
.gallery {
  background: #0d1233;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(125, 249, 110, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(125, 249, 110, 0.2);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card .caption {
  padding: 1rem;
  background: #131a4a;
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: center;
}

/* ---------- videos ---------- */
.videos {
  background: #0a0e27;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.2);
  background: #131a4a;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.video-card .caption {
  padding: 1rem;
  font-size: 0.95rem;
  color: #94a3b8;
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  background: #080b20;
  border-top: 2px solid #7df96e;
}

.footer p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer .made-by {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  color: #7df96e;
  margin-bottom: 0.5rem;
}

/* ---------- responsive ---------- */
@media (max-width: 600px) {
  .nav {
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .nav a {
    font-size: 0.75rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .stats-grid,
  .power-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
