/* ===== HYPE PAGE ===== */

.hype-main {
  min-height: 100vh;
}

/* Hero */
.hype-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hype-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hypeSlow 20s ease-in-out infinite;
}

@keyframes hypeSlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hype-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,0,16,0.3) 0%, rgba(8,0,16,0.9) 100%);
}

.hype-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.hype-label {
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: 0.4em;
  color: var(--accent-1);
  display: block;
  margin-bottom: 16px;
  animation: takePulse 2s ease-in-out infinite;
}

.hype-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
}

.hype-date {
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-top: 16px;
}

/* Big countdown */
.hype-countdown-section {
  padding: 60px 20px;
  text-align: center;
}

.hype-countdown {
  justify-content: center;
}

.hype-countdown .countdown-segment {
  min-width: 80px;
  padding: 12px 16px;
}

.hype-countdown .countdown-num {
  font-size: 40px;
}

/* Lineup */
.hype-lineup {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.hype-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.hype-section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.hype-artists {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hype-artist {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
}

.hype-artist-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hype-artist-bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Details */
.hype-details {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.hype-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.hype-detail a {
  color: var(--accent-2);
  transition: opacity 0.3s;
}

.hype-detail a:hover { opacity: 0.8; }

.hype-detail-label {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* CTA */
.hype-cta {
  text-align: center;
  padding: 40px 20px 60px;
}

.hype-ticket-btn {
  display: inline-flex;
  padding: 20px 56px;
  background: var(--accent-1);
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s;
  animation: ctaPulse 2s ease-in-out infinite;
}

.hype-ticket-btn:hover {
  background: #ff4da0;
  transform: scale(1.05);
}

.hype-share {
  margin-top: 40px;
}

.hype-share-label {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 16px;
}

.hype-share-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hype-share-btn {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.hype-share-btn:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

.hype-details-link {
  display: block;
  margin-top: 24px;
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
}

.hype-details-link:hover { color: var(--text); }

/* Footer */
.hype-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hype-footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(255, 45, 135, 0.3);
}

@media (max-width: 768px) {
  .hype-hero { height: 60vh; min-height: 400px; }
}
