/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e31b1b;
  --red-dark: #9c0f0f;
  --red-glow: rgba(227, 27, 27, 0.4);
  --gold: #d4a017;
  --gold-light: #f0c040;
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --white: #ffffff;
  --gray: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.d-only { display: inline; }
@media (max-width: 768px) { .d-only { display: none; } }

.red { color: var(--red); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-primary:hover {
  background: #ff2020;
  border-color: #ff2020;
  box-shadow: 0 0 30px rgba(255,32,32,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--gray);
  border-color: transparent;
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--white); }

.btn-lg { padding: 14px 36px; font-size: 17px; }
.btn-xl { padding: 18px 48px; font-size: 20px; letter-spacing: 0.08em; }

.btn-event {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  width: 100%;
  text-align: center;
  font-size: 15px;
}
.btn-event:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

/* Social buttons */
.btn-social {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
}
.btn-ig { background: linear-gradient(135deg, #833ab4, #e1306c, #fd1d1d); color: #fff; border-color: transparent; }
.btn-tt { background: #010101; color: #fff; border: 2px solid #69c9d0; }
.btn-yt { background: #ff0000; color: #fff; border-color: #ff0000; }
.btn-sp { background: #1db954; color: #000; border-color: #1db954; }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.95);
  border-bottom: 1px solid rgba(227,27,27,0.2);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  box-shadow: 0 0 15px var(--red-glow);
}
@media (max-width: 600px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(227,27,27,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,27,27,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow-red {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 500px; height: 500px;
  background: rgba(227,27,27,0.18);
  top: -100px; left: -100px;
  animation: pulse1 4s ease-in-out infinite;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(180,10,10,0.12);
  bottom: 0; right: -50px;
  animation: pulse2 5s ease-in-out infinite;
}

@keyframes pulse1 {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes pulse2 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 20px 80px;
  max-width: 820px;
}

.hero-tag {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 0 40px rgba(227,27,27,0.3);
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.stroke-text {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
  text-shadow: 0 0 30px var(--red-glow);
}

.hero-sub {
  font-family: var(--font-cond);
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-years {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  animation: fadeUp 0.8s ease 0.5s both;
}
.years-line {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.years-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   SECTIONS
   ===================== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(227,27,27,0.4);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================
   EVENTS
   ===================== */
.events-section {
  background: var(--dark);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.event-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227,27,27,0.3);
  box-shadow: 0 8px 40px rgba(227,27,27,0.15);
}

.event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  border-radius: 6px;
  padding: 8px 14px;
  min-width: 58px;
  box-shadow: 0 0 15px var(--red-glow);
}
.event-month {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.event-day {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.event-badge {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(227,27,27,0.15);
  color: var(--red);
  border: 1px solid rgba(227,27,27,0.3);
  padding: 4px 10px;
  border-radius: 2px;
}
.event-badge-gold {
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  border-color: rgba(212,160,23,0.3);
}

.event-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-meta span {
  font-family: var(--font-cond);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.events-cta {
  text-align: center;
}
.events-cta p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: 0.05em;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.glow-cta {
  width: 600px; height: 600px;
  background: rgba(227,27,27,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse1 6s ease-in-out infinite;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr; }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.cta-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}
.cta-text p strong { color: var(--white); }
.cta-text .btn { margin-top: 24px; }

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.music-tag {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.music-tag:hover {
  border-color: var(--red);
  color: var(--white);
}

/* =====================
   SOCIAL / PHONES
   ===================== */
.social-section {
  background: var(--dark);
}

.phones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
@media (max-width: 900px) {
  .phones-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .phones-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

.phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-card-center .phone-frame {
  transform: scale(1.06);
  transform-origin: bottom center;
}

.phone-frame {
  background: #111;
  border-radius: 28px;
  border: 3px solid rgba(255,255,255,0.12);
  padding: 10px;
  width: 100%;
  max-width: 180px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 40px rgba(0,0,0,0.5);
}
.phone-frame-featured {
  border-color: var(--red);
  box-shadow:
    0 0 0 1px rgba(227,27,27,0.3),
    0 20px 40px rgba(0,0,0,0.5),
    0 0 40px rgba(227,27,27,0.15);
}

.phone-notch {
  width: 60px; height: 14px;
  background: #111;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}
.phone-notch::before {
  content: '';
  position: absolute;
  top: 3px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  background: #222;
  border-radius: 50%;
}

.phone-screen {
  border-radius: 18px;
  overflow: hidden;
  background: #0d0d0d;
  min-height: 260px;
}

.phone-app-header {
  padding: 10px 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.app-logo {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.ig-logo { color: #e1306c; }
.tt-logo { color: #69c9d0; }
.yt-logo { color: #ff0000; }
.sp-logo { color: #1db954; }

.phone-content { padding: 10px 12px; }
.phone-handle { font-family: var(--font-cond); font-size: 13px; font-weight: 700; margin-top: 8px; margin-bottom: 4px; }
.phone-bio { font-size: 11px; color: var(--gray); }

/* Instagram grid */
.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
}
.ig-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #1a1a1a;
}

/* TikTok */
.tiktok-content { padding: 0; }
.tiktok-video {
  background: linear-gradient(180deg, #1a0a0a 0%, #0d0d1a 100%);
  min-height: 200px;
  border-radius: 12px;
  margin: 8px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-play {
  font-size: 28px;
  text-align: center;
  opacity: 0.6;
  padding-top: 40px;
}
.tiktok-user { font-family: var(--font-cond); font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.tiktok-desc { font-size: 10px; color: rgba(255,255,255,0.7); margin-bottom: 8px; line-height: 1.4; }
.tiktok-stats { display: flex; gap: 10px; font-size: 10px; color: rgba(255,255,255,0.6); font-family: var(--font-cond); }

/* YouTube */
.yt-thumb {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 12px 10px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yt-play { font-size: 16px; color: #ff0000; }
.yt-thumb p { font-size: 11px; color: rgba(255,255,255,0.7); font-family: var(--font-cond); }

/* Spotify */
.sp-cover {
  background: linear-gradient(135deg, #1db954, #0f5c2a);
  width: 80px; height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 10px;
}
.sp-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 12px;
}
.sp-bar {
  flex: 1;
  background: #1db954;
  border-radius: 2px 2px 0 0;
  animation: bar-dance 1.2s ease-in-out infinite alternate;
}
.sp-bar:nth-child(2) { animation-delay: 0.15s; }
.sp-bar:nth-child(3) { animation-delay: 0.3s; }
.sp-bar:nth-child(4) { animation-delay: 0.45s; }
.sp-bar:nth-child(5) { animation-delay: 0.6s; }
.sp-bar:nth-child(6) { animation-delay: 0.75s; }
.sp-bar:nth-child(7) { animation-delay: 0.9s; }
@keyframes bar-dance {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}

/* =====================
   CONCEPT
   ===================== */
.concept-section {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .concept-inner { grid-template-columns: 1fr; }
}
.concept-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.8;
}
.concept-years {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  font-family: var(--font-cond);
}
.concept-year { text-align: center; }
.year-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}
.year-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.concept-divider {
  color: rgba(255,255,255,0.2);
  font-size: 20px;
  letter-spacing: -4px;
}

/* Vinyl */
.concept-visual {
  display: flex;
  justify-content: center;
}
.vinyl {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 30%, #111 30.5%, #1c1c1c 31%, #111 70%, #181818 100%);
  border: 2px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 8s linear infinite;
  box-shadow: 0 0 60px rgba(0,0,0,0.8), 0 0 20px rgba(227,27,27,0.1);
}
.vinyl-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #e31b1b 35%, #9c0f0f 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(227,27,27,0.4);
}
.vinyl-center {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--white);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 50px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-tagline {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-cond);
  letter-spacing: 0.05em;
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
