/* mainprod-styles.css - Extracted from mainprod.html for better maintainability */

/* ========================================
   MISSION BAG BANNER (Top)
   ======================================== */

.mission-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #FF9E42 0%, #FFD365 100%);
  color: #000;
  text-decoration: none;
  font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.mission-banner:hover {
  background: linear-gradient(135deg, #FFB347 0%, #FFE066 100%);
}

.mission-banner.live {
  background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
  color: #fff;
  animation: banner-pulse 2s ease-in-out infinite;
}

@keyframes banner-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(29, 185, 84, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(29, 185, 84, 0.5); }
}

.mission-banner .banner-text {
  position: relative;
  z-index: 1;
}

.mission-banner .banner-icon {
  font-size: 1rem;
}

#countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* ========================================
   CHRISTMAS BANNER (Below Mission Bag)
   ======================================== */

.christmas-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #c41e3a 0%, #1a472a 100%);
  color: #fff;
  text-decoration: none;
  font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  position: fixed;
  top: 44px; /* Below Mission Bag banner */
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease;
}

.christmas-banner:hover {
  background: linear-gradient(135deg, #d42a46 0%, #236b3a 100%);
}

.christmas-banner .banner-text {
  position: relative;
  z-index: 1;
}

.christmas-banner .banner-snow {
  font-size: 1.1rem;
  animation: snowflake-spin 3s linear infinite;
}

@keyframes snowflake-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .mission-banner {
    font-size: 1rem;
    padding: 14px 16px;
    gap: 8px;
  }

  .christmas-banner {
    font-size: 0.85rem;
    padding: 10px 15px;
    gap: 8px;
    top: 50px; /* Below larger banner on mobile */
  }

  .christmas-banner .banner-snow {
    font-size: 0.9rem;
  }

  .app {
    padding-top: 70px; /* Banner only, no nav */
  }
}

/* TAN-NIMBUS Font Face - Custom Display Font */
@font-face {
  font-family: 'TAN-NIMBUS';
  src: url('/fonts/TAN-NIMBUS.woff2') format('woff2'),
       url('/fonts/TAN-NIMBUS.woff') format('woff'),
       url('/fonts/TAN-NIMBUS.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Epilogue Font Face - Body Text Font */
@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Soul Palette Text Shadow System */
:root {
  --text-shadow-xl: 0 3px 12px rgba(255, 158, 66, 0.4);      /* Hero headings */
  --text-shadow-lg: 0 2px 8px rgba(255, 158, 66, 0.3);       /* Section titles */
  --text-shadow-md: 0 1px 6px rgba(255, 158, 66, 0.25);      /* Card headings */
  --text-shadow-sm: 0 1px 4px rgba(255, 158, 66, 0.2);       /* Small labels */
  --text-shadow-gold: 0 2px 12px rgba(255, 211, 101, 0.5);   /* Gold text extra glow */
}

/* Global Heading Text Shadows */
h1, .name-first, .name-last {
  text-shadow: var(--text-shadow-xl);
}

h2, .experiences-title {
  text-shadow: var(--text-shadow-lg);
}

h3, .track-title {
  text-shadow: var(--text-shadow-md);
}

h4, h5, h6 {
  text-shadow: var(--text-shadow-sm);
}

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

body {
  font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  color: #fff;
}

.app {
  min-height: 100vh;
  background: #000;
  position: relative;
  padding-top: 80px; /* Banner only, no nav */
}

/* Navigation - REMOVED (nav bar no longer used)
.main-nav { ... }
.nav-brand { ... }
.nav-link { ... }
*/

/* Homepage */
.homepage {
  background: #000;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.homepage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 211, 101, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 50%, rgba(255, 158, 66, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 158, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.genre-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255, 211, 101, 0.15);
  border: 1px solid rgba(255, 211, 101, 0.4);
  color: rgba(255, 211, 101, 0.9);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(255, 211, 101, 0.2);
  animation: tagGlow 5s ease-in-out infinite;
}

@keyframes tagGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 211, 101, 0.2); }
  50% { box-shadow: 0 0 25px rgba(255, 211, 101, 0.35); }
}

.who-link {
  display: inline-block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
  animation: fadeInUp 0.9s ease-out;
}

.who-link:hover {
  color: #FF9E42;
  border-color: #FF9E42;
  background: rgba(255, 158, 66, 0.1);
}

/* Hero Photo (in-hero placement) */
.hero-photo-container {
  max-width: 900px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 20px;
  position: relative;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  filter: contrast(1.05);
}

.hero-photo-container .photo-credit {
  position: absolute;
  bottom: 16px;
  right: 36px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-photo-container {
    padding: 0 16px;
    margin: 1.5rem auto;
  }

  .hero-photo {
    border-radius: 12px;
  }

  .hero-photo-container .photo-credit {
    bottom: 12px;
    right: 28px;
    font-size: 0.65rem;
  }
}

.title {
  font-family: 'TAN-NIMBUS', sans-serif;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.name-first {
  font-size: 4rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  line-height: 1;
  animation: fadeInUp 1s ease-out;
}

.name-last {
  font-size: 3rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  line-height: 1;
  animation: fadeInUp 1.2s ease-out;
}

.logo-container {
  margin: 1rem 0;
  animation: float 4s ease-in-out infinite;
}

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

.logo-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 211, 101, 0.4));
  transition: filter 0.5s;
}

.logo-image:hover {
  filter: drop-shadow(0 0 60px rgba(255, 211, 101, 0.8));
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1.4s ease-out;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 0;
  animation: fadeInUp 1.6s ease-out;
}

/* ========================================
   BIO SECTION
   ======================================== */
.bio-section {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.bio-content {
  text-align: left;
}

.bio-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.bio-content p:first-child {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

.about-link {
  display: inline-block;
  font-size: 1rem;
  color: #FF9E42;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.2s ease;
}

.about-link:hover {
  color: #FFD365;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bio-section {
    padding: 40px 20px;
  }

  .bio-content p {
    font-size: 1rem;
  }

  .bio-content p:first-child {
    font-size: 1.1rem;
  }
}

.hero-cta-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  font-weight: 400;
}

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

/* Artist Photo Section */
.artist-photo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.artist-photo {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 211, 101, 0.15);
  border: 2px solid rgba(255, 211, 101, 0.2);
  transition: all 0.4s ease;
}

.artist-photo:hover {
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 211, 101, 0.25);
  border-color: rgba(255, 211, 101, 0.4);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .artist-photo-section {
    padding: 0 1rem 2rem;
  }

  .artist-photo {
    border-radius: 12px;
    max-width: 100%;
  }
}

/* ========================================
   MEET COOKIE SECTION (Hero Photo)
   ======================================== */
.meet-cookie-section {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: -40px 0 40px 0;
}

.meet-cookie-image-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.meet-cookie-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  filter: contrast(1.05);
}

.photo-credit {
  position: absolute;
  bottom: 16px;
  right: 36px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 768px) {
  .meet-cookie-section {
    margin: -20px 0 30px 0;
  }

  .meet-cookie-image-container {
    padding: 0 16px;
  }

  .meet-cookie-image {
    border-radius: 12px;
  }

  .photo-credit {
    bottom: 12px;
    right: 28px;
    font-size: 0.65rem;
  }
}

/* Spotify Follow Section */
.spotify-section {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  margin: 0 auto;
  max-width: 600px;
}

.spotify-headline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.spotify-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.spotify-btn svg {
  flex-shrink: 0;
}

.spotify-btn-standard {
  background: #1DB954;
  color: #fff;
}

.spotify-btn-standard:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.spotify-btn-soul {
  background: linear-gradient(135deg, #FF9E42 0%, #FFD365 100%);
  color: #1C1612;
}

.spotify-btn-soul:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 158, 66, 0.5);
}

@media (max-width: 480px) {
  .spotify-buttons {
    flex-direction: column;
    align-items: center;
  }

  .spotify-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Featured Section */
.featured-section {
  padding: 80px 2rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 211, 101, 0.05) 50%, transparent 100%);
}

/* Spotify Embed Container */
.spotify-embed-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 211, 101, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.spotify-embed-container:hover {
  border-color: #FFD365;
  box-shadow: 0 20px 60px rgba(255, 211, 101, 0.2);
}

.spotify-embed-container .cta-button {
  display: inline-block;
  margin-top: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Music Player Styles (Legacy - can remove later) */
.featured-player {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 211, 101, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.featured-player:hover {
  border-color: #FFD365;
  box-shadow: 0 20px 60px rgba(255, 211, 101, 0.3);
  transform: translateY(-5px);
}

.player-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.vinyl-disc {
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle at center, #1a1a1a 25%, #000 25%, #000 35%, #1a1a1a 35%, #1a1a1a 40%, #000 40%),
    linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%),
    linear-gradient(-45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%);
  background-size: 100% 100%, 20px 20px, 20px 20px;
  border-radius: 50%;
  border: 3px solid #FFD365;
  box-shadow: 0 0 30px rgba(255, 211, 101, 0.4);
  position: relative;
  flex-shrink: 0;
}

.vinyl-disc.spinning {
  animation: vinylSpin 3s linear infinite;
}

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

.vinyl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px;
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.track-title {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.8rem;
  color: #FFD365;
  margin: 0 0 8px 0;
}

.track-artist {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  background: rgba(255, 211, 101, 0.2);
  border: 2px solid #FFD365;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.control-btn:hover {
  background: rgba(255, 211, 101, 0.4);
  transform: scale(1.1);
}

.play-pause {
  width: 60px;
  height: 60px;
  font-size: 24px;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  border: none;
}

.progress-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.time-display {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Courier New', monospace;
  min-width: 45px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD365 0%, #FF9E42 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
}

.volume-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #FFD365;
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #FFD365;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.player-cta {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 211, 101, 0.2);
}

.cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 15px 0;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #FFD365 0%, #FFD365 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 211, 101, 0.4);
  font-size: 0.95rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 211, 101, 0.6);
}

.hidden {
  display: none;
}

/* Experiences Section */
.experiences-section {
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
}

.experiences-title {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  color: #FFD365;
  margin-bottom: 60px;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 211, 101, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.experience-card:hover {
  transform: translateY(-10px);
  border-color: #FFD365;
  box-shadow: 0 20px 60px rgba(255, 211, 101, 0.4);
}

.card-icon {
  font-size: 5rem;
  margin: 0 auto 20px;
  display: block;
  text-align: center;
}

.card-icon-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

/* Dough-Jo Card - Primary CTA, visually dominant */
.doughjo-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(255, 158, 66, 0.1) 100%);
  border-color: rgba(139, 92, 246, 0.4);
  padding: 50px 40px;
}

.doughjo-card:hover {
  border-color: #8B5CF6;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.doughjo-card h3 {
  font-size: 2.2rem;
}

.doughjo-card .card-description {
  font-size: 1.15rem;
  min-height: auto;
}

.doughjo-card .card-icon-img {
  width: 140px;
  height: 140px;
}

/* GSR Card specific styles */
.gsr-card {
  overflow: visible !important;
}

.gsr-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: -30px auto 10px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  clip-path: inset(30px 0 0 0);
  transform: translateY(-30px);
}

.experience-card h3 {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #FFD365;
}

.card-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  min-height: 60px;
  text-align: left;
}

.card-arrow {
  font-size: 2.5rem;
  color: #FFD365;
  opacity: 0.6;
  transition: all 0.3s;
}

.experience-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(10px);
}

.flagship-badge-small {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: flagshipPulse 2s infinite;
}

@keyframes flagshipPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
  }
}

.card-token-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 211, 101, 0.2);
  border: 1px solid #FFD365;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.card-token-badge span {
  font-size: 1.1rem;
  color: #FFD365;
  font-weight: 800;
}

.streaming-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.streaming-icons a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
}

.streaming-icons a:hover {
  transform: scale(1.2);
  background: rgba(255, 211, 101, 0.2);
  border-color: #FFD365;
}

.streaming-icons .icon-spotify,
.streaming-icons .icon-apple-music {
  width: 36px;
  height: 36px;
}

/* GSR Listen Now Button */
.gsr-listen-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF9E42 0%, #FFD365 100%);
  color: #1C1612;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 15px rgba(255, 158, 66, 0.4),
    0 0 0 0 rgba(255, 211, 101, 0);
  text-transform: uppercase;
}

.gsr-listen-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(255, 158, 66, 0.6),
    0 0 30px rgba(255, 211, 101, 0.4);
  background: linear-gradient(135deg, #FFB347 0%, #FFE066 100%);
}

.gsr-listen-btn:active {
  transform: translateY(-1px) scale(1);
}

/* Gear Photo Card (in experiences grid) */
.gear-card {
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  grid-column: span 2;
}

.gear-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

@media (max-width: 768px) {
  .gear-card {
    grid-column: span 1;
  }
}

.gear-photo-credit {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0;
}

/* Footer */
.homepage-footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 211, 101, 0.2);
  padding: 4rem 2rem 2rem;
  margin-top: 120px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand h3 {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-tagline {
  font-style: italic;
  color: #FFD365;
}

/* Responsive */
@media (max-width: 768px) {
  .player-content {
    flex-direction: column;
    gap: 30px;
  }

  .vinyl-disc {
    width: 140px;
    height: 140px;
  }

  .track-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .track-artist {
    text-align: center;
  }

  .player-controls {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .progress-section {
    width: 100%;
  }

  .volume-section {
    width: 100%;
    justify-content: center;
  }

  .name-first {
    font-size: 3rem;
  }

  .name-last {
    font-size: 2rem;
  }

  .logo-image {
    width: 150px;
    height: 150px;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .doughjo-card {
    grid-column: span 1;
    padding: 40px 30px;
  }

  .doughjo-card h3 {
    font-size: 1.8rem;
  }

  .experiences-title {
    font-size: 2rem;
  }

  .card-icon {
    font-size: 4rem;
    margin: 0 auto 20px;
  }

  .card-icon-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
  }

  .experience-card h3 {
    font-size: 1.5rem;
  }

  .footer-social {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .name-first {
    font-size: 2.5rem;
  }

  .name-last {
    font-size: 1.5rem;
  }

  .featured-player {
    padding: 25px;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}
