/* -------------------------------------------------------------
   PICCADILLY 103 - PREMIUM DESIGN SYSTEM & STYLESHEET
   ------------------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Anton&display=swap');

/* CSS Variables */
:root {
  --bg-dark: #070707;
  --surface-charcoal: rgba(18, 18, 18, 0.7);
  --surface-card: #0A0A0A;
  --primary-orange: #FF6600;
  --primary-orange-glow: rgba(255, 102, 0, 0.15);
  --primary-orange-hover: #E05300;
  --primary-blue: #00D2FF;
  --primary-blue-glow: rgba(0, 210, 255, 0.15);
  --primary-blue-hover: #00B4DB;
  --text-white: #FFFFFF;
  --text-grey: #B0B0B0;
  --text-muted: #7E7E7E;
  --border-color: rgba(255, 102, 0, 0.2);
  --border-blue: rgba(0, 210, 255, 0.2);
  
  --font-body: 'Outfit', sans-serif;
  --font-retro: 'Anton', sans-serif;
}

/* Reset & Core Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  position: relative;
  overflow-x: hidden;
}

/* 103 Fine Club Canvas Grid & Ambient Soft Glows */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 210, 255, 0.012) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 102, 0, 0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Radial Glow Elements */
.glow-ambient {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.glow-top-right {
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, var(--primary-blue-glow) 0%, transparent 70%);
}

.glow-mid-left {
  top: 35%;
  left: -300px;
  background: radial-gradient(circle, var(--primary-orange-glow) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: 5%;
  right: -300px;
  background: radial-gradient(circle, var(--primary-blue-glow) 0%, transparent 70%);
}

/* Sticky Slim Navigation Header */
.header-nav {
  position: sticky;
  top: 0;
  background-color: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border-color);
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Typography & Heavy Club Presence */
.brand-logo-text {
  font-family: var(--font-retro);
  font-size: 1.7rem;
  color: var(--text-white);
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.35);
  transition: transform 0.3s ease;
}

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

.orange-square {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
  transition: transform 0.3s ease;
}

.brand-logo-text:hover .orange-square {
  transform: rotate(45deg) scale(1.2);
}

.brand-logo-text .accent-weight {
  color: var(--primary-orange);
}

.brand-logo-text img {
  height: 28px;
  width: auto;
  display: block;
  max-width: 100%;
}

/* Navigation Links & Hamburger Menu Drawer */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: var(--text-grey);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Placeholders matching screenshot 1 precisely */
.header-cta-placeholder {
  display: inline-block;
  border: 2px dashed var(--text-white);
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-retro);
  font-size: 1.1rem;
  padding: 0.55rem 1.6rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: bold;
}

.header-cta-placeholder:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
  transform: translateY(-2px);
}

/* Mobile Menu Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 101;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: var(--primary-orange);
}

/* Custom Scrolling Marquee Ticker */
.marquee-container {
  width: 100%;
  background-color: var(--primary-orange);
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.2);
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding: 0.8rem 0;
  animation: marqueeAnimation 38s linear infinite;
}

.marquee-content span {
  font-family: var(--font-retro);
  font-size: 1.3rem;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes marqueeAnimation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Layout Framework */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6.5rem 2rem;
  position: relative;
  z-index: 2;
}

/* Grid Layout Helper */
.grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5.5rem;
  align-items: center;
}

/* Typographic Headings & Badges */
.heading-heavy {
  font-family: var(--font-retro);
  font-size: 4.8rem;
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 2rem;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.heading-description {
  color: var(--text-grey);
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

.live-stream-badge {
  background-color: var(--primary-orange);
  color: #111111;
  font-family: var(--font-retro);
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  display: inline-block;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}

.foundation-badge {
  background-color: var(--primary-blue);
  color: #111111;
  font-family: var(--font-retro);
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  display: inline-block;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

/* SECTION 1: HERO & INTERACTIVE PLAYER */
.hero-section {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

/* Soundwave SVG behind player */
.hero-wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.hero-wave-background svg {
  width: 100%;
  height: 100%;
}

.wave-path {
  stroke-dasharray: 8px, 4px;
  animation: moveWave 20s linear infinite;
}

.path-orange {
  animation-duration: 25s;
  animation-direction: reverse;
}

@keyframes moveWave {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 360; }
}

.player-widget-container {
  display: flex;
  justify-content: center;
  z-index: 5;
}

/* High Fidelity Premium Glassmorphism Card */
.player-card {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 102, 0, 0.22);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 
              0 0 50px rgba(255, 102, 0, 0.06),
              inset 0 0 20px rgba(255, 255, 255, 0.02);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
}

.player-card:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 
              0 0 60px rgba(0, 210, 255, 0.15);
  border-color: var(--primary-blue);
  transform: translateY(-4px);
}

/* Player Artwork Box */
.player-artwork-box {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(10, 10, 10, 0.98) 95%);
  border-radius: 14px;
  border: 1px solid rgba(0, 210, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  margin-bottom: 1.8rem;
  position: relative;
  overflow: hidden;
}

.player-artwork-glow {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  filter: blur(45px);
  opacity: 0.25;
  z-index: 1;
}

.player-artwork-logo {
  width: 140px;
  height: 140px;
  z-index: 2;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.player-card:hover .player-artwork-logo {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.65));
}

/* Player Info */
.player-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.95rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.player-description {
  color: var(--text-grey);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 1.6rem;
}

/* Stats Metadata Row */
.player-meta-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.player-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-grey);
}

.player-meta-item i {
  font-size: 1rem;
  color: var(--primary-orange);
}

.player-meta-item.live-indicator {
  color: var(--primary-orange);
  letter-spacing: 1px;
  gap: 0.5rem;
}

/* Pulse Dot Animation */
.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--primary-orange);
  animation: pulseAnimation 1.5s infinite ease-in-out;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.8);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
  }
  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}

/* Listen Live CTA Play Button */
.player-btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  background-color: var(--primary-orange);
  color: #111111;
  border: none;
  border-radius: 50px;
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.player-btn-play i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.player-btn-play:hover {
  background-color: var(--primary-orange-hover);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.6);
  transform: translateY(-2px);
}

.player-btn-play:hover i {
  transform: scale(1.2) translateX(2px);
}

.player-card-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.6rem;
}

/* Recently Played Subtitle */
.recently-played-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Interactive Song Rotation lists */
.recently-played-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  animation: slideInTrack 0.5s ease-out forwards;
}

.track-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-left-color: var(--primary-blue);
  transform: translateX(4px);
}

.track-disc {
  color: var(--primary-blue);
  font-size: 1.1rem;
  animation: spinDisc 4s infinite linear;
}

.track-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.track-title {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.track-artist {
  color: var(--text-grey);
  font-size: 0.82rem;
}

.track-time {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

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

@keyframes spinDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SECTION 2: NOBODY DOES IT BETTER SOUNDWAVE BANNER */
.soundwave-statement-section {
  position: relative;
  background-color: #0A0A0A;
  padding: 8rem 2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  text-align: center;
}

.soundwave-geometry-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.soundwave-geometry-bg svg {
  width: 100%;
  height: 100%;
}

.animated-soundwave-path {
  stroke-dasharray: 10px, 5px;
  animation: strokeShift 35s linear infinite;
}

.animated-soundwave-path-delayed {
  stroke-dasharray: 8px, 4px;
  animation: strokeShift 25s linear infinite reverse;
}

@keyframes strokeShift {
  to { stroke-dashoffset: 500; }
}

.soundwave-content-box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.soundwave-text {
  font-family: var(--font-retro);
  font-size: 5.6rem;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.95), 
              0 0 30px rgba(255, 102, 0, 0.4);
}

.soundwave-description {
  font-size: 1.4rem;
  color: var(--text-grey);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

/* SECTION 3: RECORD QUOTE BANNER */
.record-quote-banner {
  position: relative;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-blue);
}

.record-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  z-index: 1;
}

.record-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(0.6) sepia(0.15) hue-rotate(180deg); /* Hue-rotated to match beautiful electric blue/cyan theme */
}

.record-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(7, 7, 7, 0.4) 30%, rgba(7, 7, 7, 0.4) 70%, var(--bg-dark) 100%),
              linear-gradient(to right, var(--bg-dark) 0%, transparent 25%, transparent 75%, var(--bg-dark) 100%);
  z-index: 2;
}

.record-quote-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
}

.quote-text {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 1.35;
  color: var(--text-white);
  font-style: italic;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 
              0 0 10px rgba(0, 210, 255, 0.45);
}

/* SECTION 4: OUR FOUNDATION / STANDING OUT IN THE FREQUENCY */
.foundation-section {
  position: relative;
  overflow: hidden;
}

/* High Fidelity Skyscraper Container */
.foundation-image-col {
  display: flex;
  justify-content: center;
}

.foundation-image-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 0.8 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.foundation-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Orange border overlay around the image */
.foundation-card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-orange);
  pointer-events: none;
  z-index: 5;
  box-shadow: inset 0 0 20px rgba(255, 102, 0, 0.15);
}

.foundation-image-container:hover img {
  transform: scale(1.05);
}

/* Captions overlay over Manchester Skyscraper */
.foundation-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  z-index: 4;
}

.foundation-caption p {
  color: var(--text-white);
  font-size: 1.8rem;
  line-height: 1.25;
  font-family: var(--font-body);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.foundation-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* IDENTITY & DEDICATION Cards precisely styled matching references */
.foundation-card {
  background-color: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
}

.foundation-card h3 {
  font-family: var(--font-retro);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.foundation-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

.card-identity {
  border-color: rgba(255, 255, 255, 0.08);
}

.card-identity h3 {
  color: var(--text-white);
}

.card-identity:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 25px rgba(0, 210, 255, 0.08);
}

/* DEDICATION has bright orange border & neon glow matching screenshot 2 */
.card-dedication {
  border: 1px solid var(--primary-orange);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
}

.card-dedication h3 {
  color: var(--primary-orange);
}

.card-dedication:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.2);
}

/* FOOTER SECTION */
.footer {
  background-color: #050505;
  border-top: 2px solid var(--border-blue);
  padding: 5rem 2rem 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-retro);
  font-size: 2.8rem;
  color: var(--text-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.footer-logo-accent {
  color: var(--primary-orange);
}

.footer-motto {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-network {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Social links styling */
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.social-circle-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--text-grey);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-circle-link:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #111111;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
  transform: translateY(-3px) scale(1.05);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-bottom-links span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dot-separator {
  color: var(--primary-orange);
  font-size: 0.8rem;
}

.footer-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
  .heading-heavy {
    font-size: 3.8rem;
  }
  .grid-two-col {
    gap: 3.5rem;
  }
  .soundwave-text {
    font-size: 4.2rem;
  }
}

@media (max-width: 768px) {
  /* Header Mobile Layout Adjustments */
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 61px; /* precisely below sticky nav */
    right: -100%;
    width: 280px;
    height: calc(100vh - 61px);
    background-color: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(20px);
    border-left: 2px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 3rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }

  .header-cta-wrapper {
    width: 100%;
    margin-top: 1rem;
  }

  .header-cta-placeholder {
    width: 100%;
    text-align: center;
  }

  /* Grid Conversions for Mobile viewports */
  .grid-two-col {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .hero-right-content {
    text-align: center;
    order: -1; /* Place text above player card on mobile screens */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .heading-heavy {
    font-size: 3.2rem;
  }

  .heading-description {
    text-align: center;
  }

  .soundwave-text {
    font-size: 2.8rem;
  }

  .soundwave-description {
    font-size: 1.1rem;
  }

  .quote-text {
    font-size: 1.6rem;
  }

  .foundation-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .foundation-image-col {
    order: 2; /* Move image down on mobile screens */
  }

  .foundation-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foundation-cards-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-logo {
    font-size: 2.2rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .heading-heavy {
    font-size: 2.6rem;
  }
  .player-card {
    padding: 1.5rem;
  }
  .player-title {
    font-size: 1.6rem;
  }
  .foundation-caption p {
    font-size: 1.3rem;
  }
}
