/* -------------------------------------------------------------
   PICCADILLY 90S - 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: #121212;
  --surface-card: #0A0A0A;
  --primary-orange: #FF6600;
  --primary-orange-glow: rgba(255, 102, 0, 0.15);
  --primary-orange-hover: #E05300;
  --text-white: #FFFFFF;
  --text-grey: #A0A0A0;
  --text-muted: #6E6E6E;
  --border-color: rgba(255, 102, 0, 0.15);
  
  --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;
}

/* 1990s Fine 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(255, 102, 0, 0.015) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 102, 0, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Radial Glow Elements */
.glow-ambient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-orange-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.glow-top-right {
  top: -150px;
  right: -150px;
}

.glow-mid-left {
  top: 35%;
  left: -250px;
}

.glow-bottom-right {
  bottom: 8%;
  right: -250px;
}

/* Sticky Slim Navigation Header */
.header-nav {
  position: sticky;
  top: 0;
  background-color: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(12px);
  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.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Typography & Tasteful Warm Halo Glow */
.brand-logo-text {
  font-family: var(--font-retro);
  font-size: 1.8rem;
  color: var(--primary-orange);
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.25);
  transition: transform 0.3s ease;
}

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

.brand-logo-text img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.35)); /* Tasteful, warm restrained halo glow */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo-text:hover img {
  filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.6)); /* Sleek reactive hover glow */
}

.brand-logo-text span {
  color: var(--text-white);
}

/* Navigation Links Drawer & Menu */
.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: 600;
  font-size: 0.95rem;
  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-orange);
  transition: width 0.3s ease;
}

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

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

/* Header Action CTA Button */
.header-cta {
  background-color: var(--primary-orange);
  color: #111111;
  text-decoration: none;
  font-family: var(--font-retro);
  font-size: 1.1rem;
  padding: 0.55rem 1.6rem;
  border: 2px solid var(--primary-orange);
  border-radius: 4px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.35);
  font-weight: bold;
}

.header-cta:hover {
  background-color: transparent;
  color: var(--primary-orange);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.55);
  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);
}

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

.marquee-content span {
  font-family: var(--font-retro);
  font-size: 1.35rem;
  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: 6rem 2rem;
  position: relative;
  z-index: 2;
}

/* Section Line Dividers */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
  opacity: 0.5;
  margin: 0 auto;
  max-width: 1200px;
}

/* Headings Styles */
.heading-retro {
  font-family: var(--font-retro);
  font-size: 4.8rem;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.15);
}

.heading-retro.orange {
  color: var(--primary-orange);
}

.heading-retro.white {
  color: var(--text-white);
}

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

.heading-description strong {
  color: var(--text-white);
  font-weight: 600;
}

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

/* SECTION 1: HERO & PLAYER WIDGET */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.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: 1px;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

/* Premium Player Card Widget */
.player-widget-container {
  display: flex;
  justify-content: center;
}

.player-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--surface-charcoal);
  border: 1px solid rgba(255, 102, 0, 0.18);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 102, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.player-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 102, 0, 0.18);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
}

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

.player-artwork-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  filter: blur(40px);
  opacity: 0.22;
  z-index: 1;
}

.player-artwork-logo {
  width: 160px;
  height: 160px;
  z-index: 2;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.26));
}
.player-card:hover .player-artwork-logo {
  transform: scale(1.06) rotate(1.5deg);
  filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.55));
}

/* Player typography */
.player-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.9rem;
  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.2);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.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);
}

/* Live on air status */
.player-meta-item.live-indicator {
  color: var(--primary-orange);
  letter-spacing: 1px;
}

/* Pulse Dot */
.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.6s infinite ease-in-out;
}

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

/* Player Play CTA Button */
.player-btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  background-color: var(--primary-orange);
  color: #111;
  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.3);
  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.5);
  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 Header */
.recently-played-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--primary-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Dynamic Song Lists */
.recently-played-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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: 6px;
  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-orange);
  transform: translateX(4px);
}

.track-disc {
  color: var(--primary-orange);
  font-size: 1.15rem;
  animation: spinDisc 3s 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 geometry statement) */
.soundwave-statement-section {
  position: relative;
  background-color: #0c0c0c;
  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.85;
  z-index: 1;
  pointer-events: none;
}

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

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

.soundwave-text {
  font-family: var(--font-retro);
  font-size: 5.5rem;
  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.9), 0 0 25px rgba(255, 102, 0, 0.4);
}

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

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

.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.18) brightness(0.7) sepia(0.2) hue-rotate(-10deg);
}

.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 20%, transparent 80%, 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.3;
  color: var(--text-white);
  font-style: italic;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 8px rgba(255, 102, 0, 0.35);
}

/* SECTION 4: CORE VALUES (THE VIBE) */
.values-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.values-section .heading-description {
  margin: 0 auto 4rem auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background-color: var(--surface-card);
  border: 1px solid rgba(255, 102, 0, 0.08);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  height: 100%;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  background-color: #0c0c0c;
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.08);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card-inner {
  padding: 3.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-retro);
  font-size: 2.4rem;
  color: var(--primary-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.15);
}

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

/* SECTION 5: COMMUNITY SECTION */
.community-section {
  padding-bottom: 6rem;
}

.values-badge {
  background-color: rgba(255, 102, 0, 0.12);
  color: var(--primary-orange);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.community-text-col {
  padding-right: 2rem;
}

/* Community image overlay card style */
.community-image-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--surface-charcoal);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.community-card-border {
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: -5px;
  width: 1px;
  background-color: var(--primary-orange);
  opacity: 0.65;
}

.community-image-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.community-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: brightness(0.82) contrast(1.12);
}

.community-image-card:hover .community-image-container img {
  transform: scale(1.04);
}

/* Caption overlay matching Pomelli screenshots */
.community-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.65) 55%, transparent 100%);
  padding: 4rem 2.2rem 2.2rem 2.2rem;
  z-index: 2;
}

.community-caption h3 {
  font-family: var(--font-retro);
  font-size: 3rem;
  color: var(--text-white);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.community-caption p {
  color: var(--text-grey);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
}

/* FOOTER SECTION */
.footer {
  background-color: #030303;
  border-top: 2px solid rgba(255, 102, 0, 0.15);
  padding: 5.5rem 2rem 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

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

.footer-logo {
  font-family: var(--font-retro);
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.25);
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--text-white);
}

.footer-motto {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.footer-network {
  color: var(--primary-orange);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  list-style: none;
  margin-bottom: 2.5rem;
}

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

.social-circle-link:hover {
  background-color: var(--primary-orange);
  color: #111111;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.footer-bottom-links {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-grey);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.dot-separator {
  color: var(--primary-orange);
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 992px) {
  .grid-two-col {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .heading-retro {
    font-size: 3.6rem;
  }
  
  .community-image-container {
    height: 420px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .soundwave-text {
    font-size: 4rem;
  }
  
  .quote-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Sidebar Navigation Drawer */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(15px);
    border-left: 2px solid var(--border-color);
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-links-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.8rem;
  }
  
  .header-cta-wrapper {
    width: 100%;
    margin-top: 1rem;
  }
  
  .nav-menu .header-cta {
    display: block;
    text-align: center;
    width: 100%;
  }
  
  .header-container {
    padding: 0.7rem 1.5rem;
  }
  
  .brand-logo-text {
    font-size: 1.55rem;
  }
  
  .brand-logo-text img {
    height: 32px;
  }
  
  .section-wrapper {
    padding: 4.5rem 1.5rem;
  }
  
  .heading-retro {
    font-size: 2.8rem;
  }
  
  .community-image-container {
    height: 340px;
  }
  
  .community-caption h3 {
    font-size: 2.2rem;
  }
  
  .record-quote-banner {
    height: 240px;
  }
  
  .quote-text {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .heading-retro {
    font-size: 2.25rem;
  }
  
  .brand-logo-text {
    font-size: 1.35rem;
  }
  
  .brand-logo-text img {
    height: 28px;
  }
  
  .player-card {
    padding: 0.8rem;
  }
  
  .player-title {
    font-size: 1.55rem;
  }
  
  .player-btn-play {
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
  }
  
  .soundwave-text {
    font-size: 2.6rem;
  }
  
  .soundwave-description {
    font-size: 1.1rem;
  }
  
  .quote-text {
    font-size: 1.25rem;
  }
}
