@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
  --bg-color: #060606;
  --text-main: #ffffff;
  --text-muted: #8e8e93;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------
   HEADER NAVBAR
------------------------------------------------------------- */
.site-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 36px;
}

.brand-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: scale(1.06);
}

.ab-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.brand-logo:hover .ab-logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.follow-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.follow-link:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(4px);
}

.x-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.follow-link:hover .x-logo-img {
  transform: scale(1.1) rotate(4deg);
}

/* -------------------------------------------------------------
   HERO BANNER SECTION
------------------------------------------------------------- */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(to bottom, rgba(6, 6, 6, 0.3) 0%, rgba(0, 0, 0, 0) 40%, rgba(6, 6, 6, 0.4) 100%),
    url('../assets/images/hero-bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 80px;
}

/* Player & Platforms Section (Below Banner) */
.player-section {
  width: 100%;
  background-color: #060606;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Hero Branding Text */
.hero-content {
  text-align: center;
  z-index: 2;
  margin-bottom: 0;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title-svg {
  width: 100%;
  height: auto;
  max-height: 80px;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.25));
  transition: filter 0.5s ease;
}

.hero-title-svg:hover {
  filter: drop-shadow(0 0 45px rgba(255, 255, 255, 0.6));
}

.hero-subtitle {
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.72em;
  text-indent: 0.72em;
  word-spacing: 1.6em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 20px;
}

.title-separator {
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto 28px auto;
}

/* LOCATION TAG - 100% Dead Center Screen Positioning */
.location-tag-wrapper {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.location-tag {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.location-x-logo {
  height: 12px;
  width: auto;
  object-fit: contain;
  margin-right: 4px;
}

.platform-img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

/* -------------------------------------------------------------
   PLAYER CARD CONTAINER (Spotify Embed)
------------------------------------------------------------- */
.player-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  padding: 0 16px;
  z-index: 10;
}

.player-card-wrapper iframe {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-card-wrapper iframe:hover {
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   STREAMING PLATFORMS FOOTER BAR
------------------------------------------------------------- */
.platforms-footer {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  width: 100%;
  max-width: 680px;
  padding: 0 16px;
}

.platform-logos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.platform-logo-item {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.platform-logo-item:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.08);
  color: #ffffff;
}

.platform-logo-item:hover .platform-img {
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

/* Bottom Indicator Pulse Animations */
@keyframes indicatorPulseBob {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes dotGlowPulse {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.95), 0 0 22px rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
  }
}

.bottom-line-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  animation: indicatorPulseBob 2.4s ease-in-out infinite;
}

.bottom-line-indicator::before {
  content: '';
  width: 1.5px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.95));
}

.bottom-line-indicator::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-top: 1px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  animation: dotGlowPulse 2.4s ease-in-out infinite;
}

/* -------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------------------------------------- */
@media (max-width: 576px) {
  .site-navbar {
    padding: 16px 20px;
  }

  .ab-logo-img {
    height: 50px;
  }

  .follow-link {
    font-size: 0.95rem;
    gap: 8px;
  }

  .x-logo-img {
    height: 18px;
  }

  .hero-banner {
    padding-top: 100px;
  }

  .location-tag {
    bottom: 20px;
    font-size: 0.6rem;
  }

  .platform-logos {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .platform-img {
    height: 24px;
    max-width: 100px;
  }
}