/* ===== BANDCAMP SECTION - Modern & Elegant ===== */

#bandcamp_section {
  max-width: var(--max-width, 1400px);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, #0f0f0f 0%, #181818 100%);
  position: relative;
  text-align: center;
}

/* Subtle background glow */
#bandcamp_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

#bandcamp_section .bandcamp-embed {
  position: relative;
  z-index: 1;
}

#bandcamp_section .bandcamp-embed__inner {
  display: flex;
  justify-content: center;
  align-items: center;

  /* Modern container with glassmorphism - usa variables */
  background: var(--card-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: var(--card-border);
  border-radius: 14px;
  padding: 2rem;

  /* Enhanced shadows */
  box-shadow: var(--card-shadow);

  max-width: 800px;
  margin: 0 auto;
  transition: box-shadow 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}

#bandcamp_section .bandcamp-embed__inner:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--card-shadow-hover);
}

#bandcamp_section iframe {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Placeholder quando marketing non consentito */
#bandcamp_section .consent-placeholder {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 600px;

  /* Glassmorphism - usa variables */
  background: var(--card-bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: var(--card-border);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
}

#bandcamp_section .consent-placeholder .bc-placeholder-text {
  color: rgba(231, 219, 182, 0.9);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  #bandcamp_section {
    padding: 2.5rem 1rem;
  }

  #bandcamp_section .bandcamp-embed__inner {
    padding: 1.5rem 1rem;
  }

  #bandcamp_section .consent-placeholder {
    padding: 2rem 1.5rem;
  }
}
  