/* ══════════════════════════════════════════════════════
   YOUROCK TEASER — style.css
   ══════════════════════════════════════════════════════ */

:root {
  --bg:       #0B0B0F;
  --bg-card:  #16161D;
  --bg-elev:  #20202A;
  --border:   #2A2A33;
  --red:      #D62839;
  --amber:    #F4A261;
  --green:    #1DB954;
  --wa:       #25D366;
  --text:     #F1F5F9;
  --text2:    #9CA3AF;
  --text3:    #6B7280;
  --font-d:   'Bebas Neue', sans-serif;
  --font-b:   'Barlow', sans-serif;
  --font-c:   'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  overflow-x: hidden;
  line-height: 1.5;
}

/* CANVAS PARTÍCULAS */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* RED TEXT */
.red { color: var(--red); }

/* ══ FADE IN ANIMATIONS ══════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ══ BUTTONS ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: var(--font-c);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn-spotify {
  background: var(--green);
  color: #000;
  box-shadow: 0 4px 24px rgba(29,185,84,.3);
}
.btn-spotify:hover { box-shadow: 0 8px 32px rgba(29,185,84,.5); }

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { box-shadow: 0 8px 32px rgba(37,211,102,.5); }

.btn-spotify-lg {
  background: var(--green);
  color: #000;
  font-family: var(--font-c);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(29,185,84,.35);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-spotify-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(29,185,84,.55);
}

/* ══ NAV ════════════════════════════════════════════ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
}

.nav-logo img {
  height: 264px;
  object-fit: contain;
  display: none;
}
.nav-text-fallback {
  display: none;
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
}
.nav-text-fallback span { color: var(--red); }

.nav-badge {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--amber);
  background: rgba(244,162,97,.10);
  border: 1px solid rgba(244,162,97,.25);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.nav-center {
  flex: 1;
  text-align: center;
}
.nav-countdown-label {
  font-family: var(--font-c);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nav-countdown-date {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  color: var(--red);
  letter-spacing: .04em;
  text-shadow: 0 0 30px rgba(214,40,57,.5);
}
.nav-countdown-sub {
  font-family: var(--font-c);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text2);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .nav-countdown-label { font-size: 10px; letter-spacing: .08em; }
  .nav-countdown-date  { font-size: 28px; }
  .nav-countdown-sub   { display: none; }
}

/* ══ HERO ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-crowd {
  position: absolute;
  inset: 0;
  background: url('banner-shows.png') center/cover no-repeat;
  filter: saturate(.7) brightness(.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(214,40,57,.12) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(11,11,15,.80) 85%, rgba(11,11,15,1) 100%);
}

.hero-lights {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  animation: pulse 4s ease-in-out infinite;
}
.light-red {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(214,40,57,.6), transparent 70%);
  top: -100px; left: -100px;
}
.light-amber {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,162,97,.4), transparent 70%);
  top: 40%; right: 5%;
  animation-delay: 2s;
}
.light-red2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(214,40,57,.35), transparent 70%);
  bottom: 10%; left: 40%;
  animation-delay: 1s;
}
@keyframes pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%       { opacity: .55; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-kicker {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 7vw, 96px);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text2);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 13px;
  color: var(--text3);
  font-style: italic;
  max-width: 460px;
}

.hero-right {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PHONE MOCKUP */
.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  background: #0f0f14;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5),
    0 40px 80px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #0f0f14;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.phone-screen {
  padding: 0 0 20px;
  background: #0B0B0F;
  min-height: 520px;
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.app-name {
  font-family: var(--font-d);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text);
}
.app-name span { color: var(--red); }
.app-notif { font-size: 16px; }

.app-hero-card {
  position: relative;
  margin: 10px 10px 8px;
  border-radius: 16px;
  overflow: hidden;
  height: 130px;
}
.app-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,40,57,.35), rgba(11,11,15,.9)),
              url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=400&auto=format&fit=crop&q=60') center/cover;
}
.app-hero-content {
  position: relative;
  z-index: 1;
  padding: 14px;
}
.app-kicker {
  font-family: var(--font-c);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--amber);
  margin-bottom: 4px;
}
.app-count {
  font-family: var(--font-d);
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.app-badge-name {
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .1em;
}

.app-section-title {
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text3);
  padding: 0 14px;
  margin-bottom: 6px;
}

.app-shows { display: flex; flex-direction: column; gap: 6px; padding: 0 10px; }

.app-show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}
.app-show-band {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.app-show-info {
  font-size: 9px;
  color: var(--text2);
  margin-bottom: 2px;
}
.app-show-fans {
  font-size: 9px;
  color: var(--amber);
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(214,40,57,.4), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0 32px;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--text3);
  animation: bounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ══ FEATURES ════════════════════════════════════════ */
.features {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.kicker {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  cursor: default;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,40,57,.06), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,40,57,.4);
  box-shadow: 0 20px 60px rgba(214,40,57,.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ══ SPOTIFY ═════════════════════════════════════════ */
.spotify-section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.spotify-card {
  background: linear-gradient(135deg, rgba(29,185,84,.08), rgba(29,185,84,.03));
  border: 1px solid rgba(29,185,84,.2);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.spotify-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,185,84,.2), transparent 70%);
  filter: blur(40px);
}

.spotify-content {
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotify-left { flex: 1; }

.spotify-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 16px;
}

.spotify-left h2 {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 20px;
}

.spotify-left p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
}

.spotify-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.spotify-vinyl {
  width: 160px;
  height: 160px;
}
.vinyl-outer {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 8s linear infinite;
  box-shadow: 0 0 40px rgba(29,185,84,.2);
}
.vinyl-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a0a0f, #16161d);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinyl-center { font-size: 28px; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spotify-tracks { display: flex; flex-direction: column; gap: 6px; }
.track {
  font-family: var(--font-c);
  font-size: 13px;
  color: var(--text2);
  padding: 6px 12px;
  background: rgba(29,185,84,.06);
  border: 1px solid rgba(29,185,84,.12);
  border-radius: 8px;
}
.track-more { color: var(--green); font-style: italic; }

/* ══ COUNTDOWN ═══════════════════════════════════════ */
.countdown-section {
  padding: 48px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.countdown-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(214,40,57,.06), transparent);
}
.countdown-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(214,40,57,.2), transparent 70%);
  filter: blur(60px);
}

.countdown-content { position: relative; z-index: 1; }

.countdown-kicker {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--amber);
  margin-bottom: 20px;
}

.countdown-date {
  font-family: var(--font-d);
  font-size: clamp(56px, 10vw, 120px);
  line-height: 1;
  letter-spacing: .04em;
  color: var(--red);
  text-shadow: 0 0 60px rgba(214,40,57,.4);
  margin-bottom: 8px;
}

.countdown-label {
  font-family: var(--font-c);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text2);
  margin-bottom: 20px;
}

.countdown-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 48px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.timer-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 90px;
}
.timer-num {
  font-family: var(--font-d);
  font-size: 48px;
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 20px rgba(214,40,57,.4);
}
.timer-label {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text3);
  margin-top: 4px;
}
.timer-sep {
  font-family: var(--font-d);
  font-size: 40px;
  color: var(--border);
  line-height: 1;
  padding-bottom: 20px;
}

.countdown-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ══ FOOTER ══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 240px;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-text-fallback {
  display: none;
  font-family: var(--font-d);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 12px;
  justify-content: center;
}
.footer-text-fallback span { color: var(--red); }

.footer-url {
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 8px;
}

.footer-slogan {
  font-size: 15px;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 24px;
}

.footer-line {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 20px;
}

.footer-date {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text3);
}

/* ══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { padding: 130px 40px 60px; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { padding: 16px 20px; }
  .nav-badge { font-size: 10px; padding: 5px 10px; display: none; }

  .hero-content {
    flex-direction: column;
    padding: 80px 24px 40px;
    text-align: center;
  }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-sub  { text-align: center; margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-note { text-align: center; }

  .phone-frame { transform: none; width: 240px; }
  .phone-screen { min-height: 420px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .spotify-content { flex-direction: column; gap: 40px; text-align: center; }
  .spotify-left p   { margin: 0 auto 36px; }
  .spotify-kicker   { justify-content: center; }

  .timer-block { min-width: 70px; padding: 14px 16px; }
  .timer-num   { font-size: 36px; }
  .countdown-ctas { flex-direction: column; align-items: center; }

  .spotify-card { padding: 36px 24px; }
}

@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .timer-block { min-width: 56px; padding: 10px 12px; }
  .timer-num   { font-size: 28px; }
  .timer-sep   { font-size: 28px; }
}
