/* Reset y estilos base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 10%, rgba(254, 250, 177, 0.25), transparent 55%),
    radial-gradient(circle at 70% 0%, rgba(20, 58, 42, 0.35), transparent 60%),
    var(--carbon);
  min-height: 100vh;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Crect fill='%23000000' fill-opacity='0' width='160' height='160'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.02' cx='40' cy='40' r='1'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.01' cx='120' cy='80' r='1'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.02' cx='80' cy='120' r='1'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
}

/* Tipografía base - Impact solo para títulos */
h1,
h2,
h3,
h4,
h5,
h6,
.artist-name,
.artists-section-title,
.section-heading h2,
.stage-headliner,
.card-label,
.timeline-artist {
  font-family: "Impact", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  /* color: rgba(255, 248, 248, 0.95); */
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.75rem;
  color: rgba(254, 250, 177, 0.8);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: #ffe7c9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

