/* -------------------------------------------------------------
   PICCADILLY GOLD - PREMIUM HERITAGE DESIGN SYSTEM & STYLESHEET
   ------------------------------------------------------------- */

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

/* CSS Variables */
:root {
  --bg-dark: #070605;              /* Dark chocolate charcoal base */
  --surface-charcoal: #0e0c0a;     /* Slightly lighter chocolate-tinted surface */
  --surface-card: #080706;         /* Slightly darker card surface */
  --primary-gold: #d4af37;         /* Metallic luxury gold */
  --muted-gold: #c5a880;           /* Soft warm classic gold */
  --gold-glow: rgba(212, 175, 55, 0.12); /* Subtle radial gold aura */
  --text-white: #ffffff;
  --text-grey: #b5b1ab;            /* Soft warm grey for readability */
  --text-muted: #7d7870;           /* Darker warm grey for meta details */
  --border-gold: rgba(212, 175, 55, 0.15); /* Heritage gold borders */
  
  --primary-orange: #ff5e00;       /* High-contrast solid player CTA orange */
  --primary-orange-hover: #e04e00;
  
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Cinzel', serif; /* Timeless classic heritage font */
}

/* 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;
  line-height: 1.6;
}

/* Subtle heritage fine vertical line accents on background */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(212, 175, 55, 0.01) 1px, transparent 1px);
  background-size: 100px 100%;
  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(--gold-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

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

.glow-mid-left {
  top: 45%;
  left: -250px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
}

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

/* Sticky Navigation Header */
.header-nav {
  position: sticky;
  top: 0;
  background-color: rgba(7, 6, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  width: 100%;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Brand Typography */
.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s ease;
}

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

.brand-logo-text img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.25));
  transition: filter 0.3s ease;
}

.brand-logo-text:hover img {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

.brand-gold-text {
  color: var(--primary-gold);
  font-weight: 800;
}

/* Menu Links */
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.nav-link {
  color: var(--text-grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  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-gold);
  transition: width 0.3s ease;
}

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

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

/* Dashed Placeholder Link - matching screenshot header */
.header-cta-placeholder {
  color: var(--primary-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border: 1px dashed var(--primary-gold);
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.header-cta-placeholder:hover {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--text-white);
  border-style: solid;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

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

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

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

.section-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Typography styles */
.heading-gold {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.heading-description {
  color: var(--text-grey);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 300;
}

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

/* Grid helper */
.grid-two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: center;
}

/* SECTION 1: HERO / INTRODUCTION (Bokeh overlay matching screenshot 2) */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050403;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.hero-bokeh-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.58) contrast(1.1);
  z-index: 1;
}

.hero-glow-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 6, 5, 0.4) 0%, rgba(7, 6, 5, 0.95) 100%);
  z-index: 2;
}

.hero-section .section-wrapper {
  padding: 8rem 2rem;
  width: 100%;
  z-index: 3;
}

.hero-content-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-motto {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 35px rgba(212, 175, 55, 0.18);
  animation: floatMotto 4s ease-in-out infinite;
}

@keyframes floatMotto {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-description {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.hero-scroll-btn {
  color: var(--primary-gold);
  font-size: 1.4rem;
  text-decoration: none;
  animation: bounceArrow 2s infinite;
  transition: color 0.3s ease;
}

.hero-scroll-btn:hover {
  color: var(--text-white);
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* SECTION 2: POLISHED NOSTALGIA GRID (Screenshot 5) */
.nostalgia-section {
  border-bottom: 1px solid var(--border-gold);
}

.nostalgia-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
  background-color: var(--surface-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.nostalgia-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.25) brightness(0.7) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.card-gold-border {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  pointer-events: none;
  z-index: 3;
}

.nostalgia-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(7, 6, 5, 0.95) 0%, rgba(7, 6, 5, 0.4) 60%, transparent 100%);
  padding: 3.5rem 2.2rem 2.2rem 2.2rem;
  z-index: 2;
}

.nostalgia-caption h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-white);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* SECTION 3: HERITAGE SPLIT SECTION (Screenshot 3) */
.heritage-split-section {
  background-color: #060504;
  border-bottom: 1px solid var(--border-gold);
}

.heritage-split-section .grid-two-col {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.heritage-image-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

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

.heritage-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.heritage-image-card:hover .heritage-image-container img {
  transform: scale(1.03);
}

.heritage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(7, 6, 5, 0.95) 0%, rgba(7, 6, 5, 0.4) 60%, transparent 100%);
  padding: 2.2rem 1.8rem 1.8rem 1.8rem;
  z-index: 2;
}

.heritage-caption h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: 1px;
}

/* SECTION 4: LISTEN LIVE & FLOATING PLAYER CARD (Screenshot 4) */
.listen-section {
  border-bottom: 1px solid var(--border-gold);
}

/* Heritage Stack */
.heritage-values-stack {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.2rem;
  background-color: var(--surface-charcoal);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: rgba(212, 175, 55, 0.15);
  background-color: #110e0c;
  transform: translateX(4px);
}

.value-item i {
  font-size: 1.6rem;
  color: var(--primary-gold);
  margin-top: 0.2rem;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.value-item p {
  color: var(--text-grey);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Floating 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(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.05);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.player-card:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.98), 0 0 55px rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

/* Player Artwork Box */
.player-artwork-box {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(8, 7, 6, 0.98) 90%);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  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: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  filter: blur(40px);
  opacity: 0.12;
  z-index: 1;
}

.player-artwork-logo {
  width: 175px;
  height: 175px;
  z-index: 2;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.player-card:hover .player-artwork-logo {
  transform: scale(1.02);
}

/* Player details formatting */
.player-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.player-description {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1.6rem;
}

/* Stats Metadata Row */
.player-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

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

.player-meta-item i {
  font-size: 1.1rem;
  width: 20px;
  color: var(--primary-gold);
}

/* Live on air tag matching Screenshot 4 orange */
.player-meta-item.live-indicator {
  color: var(--primary-orange);
  letter-spacing: 1px;
  font-weight: 600;
}

.player-meta-item.live-indicator i {
  color: var(--primary-orange);
}

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

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

/* Player Solid Custom Orange CTA Button (Screenshot 4) */
.player-btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  background-color: var(--primary-orange);
  color: var(--text-white);
  border: none;
  border-radius: 50px;
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.12rem;
  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, 94, 0, 0.3);
  margin-bottom: 2rem;
}

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

.player-btn-play:hover {
  background-color: var(--primary-orange-hover);
  box-shadow: 0 12px 30px rgba(255, 94, 0, 0.45);
  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.06);
  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: 700;
  font-size: 0.88rem;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Dynamic Song Track List */
.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-gold);
  transform: translateX(4px);
}

.track-disc {
  color: var(--primary-gold);
  font-size: 1.05rem;
}

.track-disc.rotate {
  animation: spinDisc 3s infinite linear;
}

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

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

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

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

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

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

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

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--text-white);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

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

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

.footer-network {
  color: var(--primary-gold);
  font-size: 0.88rem;
  margin-top: -0.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

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

.social-circle-link:hover {
  background-color: var(--primary-gold);
  color: #110e0c;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-grey);
  margin-bottom: 1.5rem;
}

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

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

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.8rem;
  line-height: 1.5;
}

/* RESPONSIVE MEDIA QUERIES (MOBILE-FIRST) */
@media (max-width: 992px) {
  .glow-ambient {
    width: 320px;
    height: 320px;
  }
  
  .grid-two-col {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .section-wrapper {
    padding: 4rem 1.5rem;
  }
  
  .hero-section .section-wrapper {
    padding: 6rem 1.5rem;
  }
  
  .hero-motto {
    font-size: 3.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .nostalgia-image-container {
    height: 400px;
  }
  
  .heritage-split-section .grid-two-col {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  
  .heritage-image-container {
    height: 320px;
  }
  
  .heading-gold {
    font-size: 2.2rem;
  }
  
  /* Navigation Menu Drawer on Mobile */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 61px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 61px);
    background-color: rgba(7, 6, 5, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 3rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-links-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.05rem;
    display: block;
    width: 100%;
  }
  
  .header-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .header-cta-placeholder {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-motto {
    font-size: 2.8rem;
  }
  
  .heading-gold {
    font-size: 1.85rem;
  }
  
  .player-card {
    padding: 1.5rem;
  }
  
  .player-artwork-box {
    margin-bottom: 1.4rem;
  }
  
  .player-title {
    font-size: 1.6rem;
  }
  
  .footer-logo {
    font-size: 1.95rem;
  }
}
