/* ── Dream Gang Additions ── */

/* ══════════════════════════════════════
   MARQUEE TICKER — SHORTER HEIGHT
══════════════════════════════════════ */
.marquee div {
  padding: 7px 0 !important;
  font-size: 11px !important;
}

/* ══════════════════════════════════════
   GLOBAL SECTION SPACING — NO GAPS
══════════════════════════════════════ */
.split-section,
.music-section,
.artist-feature,
.contact-section,
.submission-section,
.services-section,
.hero-section,
.site-footer,
.marquee,
[class*="section"] {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.split-section,
.music-section,
.artist-feature,
.contact-section,
.submission-section,
.services-section {
  padding: clamp(40px, 5vw, 64px) min(6vw, 76px) !important;
}

@media (max-width: 900px) {
  .split-section,
  .music-section,
  .artist-feature,
  .contact-section,
  .submission-section,
  .services-section {
    padding: 36px 16px !important;
  }
}
@media (max-width: 600px) {
  .split-section,
  .music-section,
  .artist-feature,
  .contact-section,
  .submission-section,
  .services-section {
    padding: 28px 14px !important;
  }
}

/* ══════════════════════════════════════
   SUBMISSIONS — BLACK BACKGROUND
══════════════════════════════════════ */
.submission-section {
  background: #000 !important;
  gap: 0 !important;
}

/* ══════════════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════════════ */
#dg-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: rgba(229,9,20,.85);
  border: 1px solid rgba(229,9,20,.5);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(229,9,20,.35);
}
#dg-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#dg-scroll-top:hover {
  background: #e50914;
  box-shadow: 0 6px 24px rgba(229,9,20,.55);
}
@media (max-width: 600px) {
  #dg-scroll-top { width: 40px; height: 40px; bottom: 20px; right: 16px; }
}

/* ══════════════════════════════════════
   MOBILE NAV LOGO
══════════════════════════════════════ */
#dg-mobile-logo {
  display: none;
  align-items: center;
  flex-shrink: 0;
  margin-right: 8px;
}
#dg-mobile-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
@media (max-width: 1100px) {
  #dg-mobile-logo { display: flex; }
}

/* ══════════════════════════════════════
   ORIGINAL SOCIAL GRID — HIDDEN
   (moved into our Contact section)
══════════════════════════════════════ */
.social-grid {
  display: none !important;
}

/* ══════════════════════════════════════
   VISUAL BANNERS — SINGLE FULL-WIDTH
   (hide left & right, keep middle only)
══════════════════════════════════════ */
.visual-banners {
  display: block !important;
  gap: 0 !important;
}
.visual-banners .banner-panel.tall {
  display: none !important;
}
.visual-banners .banner-panel.wide {
  width: 100% !important;
  min-height: 420px !important;
  display: block !important;
  position: relative !important;
}
.visual-banners .banner-panel.wide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border: none !important;
  box-shadow: none !important;
  position: absolute !important;
  inset: 0 !important;
}
@media (max-width: 768px) {
  .visual-banners .banner-panel.wide {
    min-height: 260px !important;
  }
}

/* ══════════════════════════════════════
   PRODUCERS SECTION HEADER
══════════════════════════════════════ */
.dg-producers-header {
  width: 100%;
  padding: 48px min(6vw, 76px) 20px;
  box-sizing: border-box;
}
.dg-producers-header .dg-section-eyebrow {
  margin: 0 0 8px;
}
.dg-producers-header .dg-section-title {
  margin: 0;
}
@media (max-width: 900px) {
  .dg-producers-header {
    padding: 36px 18px 16px;
  }
}

/* ══════════════════════════════════════
   PRODUCER CARD — BEAT BUTTON + WAVEFORM
══════════════════════════════════════ */
.producer-card {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.dg-beat-btn-wrap {
  width: 100%;
  margin-top: 14px;
}

.dg-beat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(229,9,20,.4);
  border-radius: 2px;
  padding: 9px 16px;
  color: #e50914;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s, border-color .25s, color .25s;
}
.dg-beat-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(229,9,20,.06), transparent);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.dg-beat-btn:hover {
  background: rgba(229,9,20,.1);
  border-color: #e50914;
}
.dg-beat-btn:hover::before { transform: translateX(100%); }
.dg-beat-play-icon {
  width: 10px;
  height: 10px;
  fill: #e50914;
  flex-shrink: 0;
  transition: transform .2s;
}
.dg-beat-btn:hover .dg-beat-play-icon { transform: scale(1.25); }

/* Waveform bars */
.dg-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  flex-shrink: 0;
}
.dg-wave-bar {
  display: block;
  width: 3px;
  background: #e50914;
  border-radius: 2px;
  opacity: .35;
  height: 4px;
  transform-origin: bottom center;
}
.dg-wave-bar:nth-child(1) { height: 5px; }
.dg-wave-bar:nth-child(2) { height: 9px; }
.dg-wave-bar:nth-child(3) { height: 6px; }
.dg-wave-bar:nth-child(4) { height: 11px; }
.dg-wave-bar:nth-child(5) { height: 4px; }

@keyframes dg-wave-bounce-1 { 0%,100%{height:3px}  50%{height:12px} }
@keyframes dg-wave-bounce-2 { 0%,100%{height:10px} 50%{height:3px}  }
@keyframes dg-wave-bounce-3 { 0%,100%{height:5px}  50%{height:14px} }
@keyframes dg-wave-bounce-4 { 0%,100%{height:12px} 50%{height:4px}  }
@keyframes dg-wave-bounce-5 { 0%,100%{height:4px}  50%{height:10px} }

.dg-beat-btn:hover .dg-wave-bar { opacity: 1; }
.dg-beat-btn:hover .dg-wave-bar:nth-child(1) { animation: dg-wave-bounce-1 .55s ease-in-out infinite; }
.dg-beat-btn:hover .dg-wave-bar:nth-child(2) { animation: dg-wave-bounce-2 .45s ease-in-out infinite .08s; }
.dg-beat-btn:hover .dg-wave-bar:nth-child(3) { animation: dg-wave-bounce-3 .6s  ease-in-out infinite .04s; }
.dg-beat-btn:hover .dg-wave-bar:nth-child(4) { animation: dg-wave-bounce-4 .5s  ease-in-out infinite .12s; }
.dg-beat-btn:hover .dg-wave-bar:nth-child(5) { animation: dg-wave-bounce-5 .52s ease-in-out infinite .02s; }

/* ══════════════════════════════════════
   BEAT STORE POP-OUT MODAL
══════════════════════════════════════ */
.dg-beat-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.dg-beat-modal.is-open { pointer-events: all; opacity: 1; }
.dg-beat-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dg-beat-modal-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  height: min(88vh, 780px);
  background: #0c0a0b;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(229,9,20,.15);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.dg-beat-modal.is-open .dg-beat-modal-panel { transform: translateY(0) scale(1); }
.dg-beat-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 46px;
  background: #141014;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
  position: relative;
}
.dg-beat-modal-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e50914, #8b0006);
}
.dg-beat-modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.dg-beat-modal-actions { display: flex; align-items: center; gap: 14px; }
.dg-beat-open-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}
.dg-beat-open-tab:hover { color: #e50914; }
.dg-beat-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  padding: 0;
}
.dg-beat-modal-close:hover {
  background: rgba(229,9,20,.15);
  border-color: rgba(229,9,20,.4);
  color: #fff;
}
.dg-beat-modal-panel iframe {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
  background: #fff;
}

/* ══════════════════════════════════════
   YOUTUBE PLAYER + PLAYLIST SIDEBAR
══════════════════════════════════════ */
/* Hide Empire partner block in hero (keep only footer) */
.empire-mark,
.empire-mark ~ small,
.hero-section .partner,
.hero-section [class*="partner"] {
  display: none !important;
}

.dg-youtube-section {
  background: #060405;
  padding: clamp(40px, 5vw, 64px) min(6vw, 76px) clamp(20px, 3vw, 36px) !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
}
.dg-youtube-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(229,9,20,.10) 0%, transparent 65%);
  pointer-events: none;
}
.dg-youtube-inner { max-width: 1180px; margin: 0 auto; }

.dg-section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e50914;
  margin: 0 0 8px;
}
.dg-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  color: #fff;
  line-height: 1;
  margin: 0 0 24px;
}

.dg-player-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: start;
}
.dg-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
}
.dg-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.dg-now-playing {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin: 10px 0 0;
  padding: 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dg-playlist {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 420px;
}
.dg-playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.dg-pl-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e50914;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .1em;
  transition: opacity .2s;
}
.dg-pl-channel-link:hover { opacity: .75; }
.dg-playlist-items {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(229,9,20,.4) transparent;
}
.dg-playlist-items::-webkit-scrollbar { width: 4px; }
.dg-playlist-items::-webkit-scrollbar-thumb { background: rgba(229,9,20,.4); border-radius: 2px; }
.dg-pl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s;
}
.dg-pl-item:hover { background: rgba(255,255,255,.05); }
.dg-pl-item.is-active { background: rgba(229,9,20,.08); border-left-color: #e50914; }
.dg-pl-thumb {
  position: relative;
  width: 68px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.dg-pl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dg-pl-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .2s;
}
.dg-pl-item:hover .dg-pl-play,
.dg-pl-item.is-active .dg-pl-play { background: rgba(229,9,20,.5); }
.dg-pl-play svg { width: 11px; height: 11px; fill: #fff; margin-left: 2px; }
.dg-pl-info { flex: 1; min-width: 0; }
.dg-pl-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dg-pl-item.is-active .dg-pl-title { color: #fff; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.dg-contact-section {
  background: #080608;
  padding: clamp(40px, 5vw, 64px) min(6vw, 76px) !important;
  position: relative;
  overflow: hidden;
}
.dg-contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(229,9,20,.09) 0%, transparent 60%);
  pointer-events: none;
}
.dg-contact-inner { max-width: 1180px; margin: 0 auto; }
.dg-contact-header { margin-bottom: 28px; }
.dg-contact-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.dg-contact-left { padding-top: 4px; display: flex; flex-direction: column; }
.dg-contact-inquiries {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.8vw, 32px);
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.15;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid #e50914;
}
.dg-contact-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 0 0 24px;
  padding-left: 14px;
}

/* Social buttons inside contact */
.dg-contact-socials {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 14px;
}
.dg-csoc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 3px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .22s, border-color .22s, color .22s, transform .2s;
}
.dg-csoc-btn svg { flex-shrink: 0; transition: color .22s; }
.dg-csoc-btn:hover {
  background: rgba(229,9,20,.1);
  border-color: rgba(229,9,20,.45);
  color: #fff;
  transform: translateX(4px);
}
.dg-csoc-btn:hover svg { color: #e50914; }

.dg-form-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 30px;
  position: relative;
}
.dg-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e50914, #8b0006);
  border-radius: 4px 4px 0 0;
}
.dg-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: .05em;
  margin: 0 0 18px;
}
.dg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dg-form-group { margin-bottom: 12px; }
.dg-form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 5px;
}
.dg-form-group input,
.dg-form-group select,
.dg-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color .25s, background .25s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.dg-form-group input::placeholder,
.dg-form-group textarea::placeholder { color: rgba(255,255,255,.18); }
.dg-form-group input:focus,
.dg-form-group select:focus,
.dg-form-group textarea:focus { border-color: #e50914; background: rgba(229,9,20,.04); }
.dg-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.dg-form-group select option { background: #1a1a1a; color: #fff; }
.dg-form-group textarea { resize: vertical; min-height: 90px; }
.dg-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #e50914, #8b0006);
  border: none;
  border-radius: 2px;
  padding: 13px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: opacity .25s, transform .2s;
  margin-top: 4px;
}
.dg-form-submit:hover { opacity: .85; transform: translateY(-1px); }
.dg-form-success {
  display: none;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
}
.dg-form-success strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

/* ══════════════════════════════════════
   MOBILE — ALL BREAKPOINTS
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-cta { display: none !important; }
  .nav-frame {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}

@media (max-width: 900px) {
  .dg-player-layout { grid-template-columns: 1fr; }
  .dg-playlist { max-height: 280px; }
  .dg-contact-body { grid-template-columns: 1fr; gap: 24px; }
  .dg-form-card { padding: 22px 16px; }
  .dg-beat-modal-panel { width: 96vw; height: 90vh; }
  .dg-youtube-section,
  .dg-contact-section { padding: 36px 16px !important; }
}

@media (max-width: 600px) {
  .dg-section-title { font-size: 34px; }
  .dg-form-row { grid-template-columns: 1fr; }
  .dg-form-card { padding: 18px 14px; }
  .dg-playlist { max-height: 240px; }
  .dg-contact-inquiries { font-size: 20px; }
  .dg-beat-modal-panel { width: 100vw; height: 95vh; border-radius: 6px 6px 0 0; }
  .dg-beat-modal { align-items: flex-end; }
  .dg-player-layout { gap: 12px; }
}

/* ══════════════════════════════════════
   HIDE WATCH-ON-YOUTUBE BAR
══════════════════════════════════════ */
.dg-iframe-wrap {
  position: relative;
}
.dg-iframe-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: #000;
  pointer-events: none;
  z-index: 2;
}

/* ══════════════════════════════════════
   MORE THAN A MOVEMENT — HIDE 2ND BANNER
══════════════════════════════════════ */
.banner-card.banner-red {
  display: none !important;
}

/* ══════════════════════════════════════
   HIDE OLD CHAIN-FINGER WIDE BANNER PANEL
══════════════════════════════════════ */
.banner-panel.wide.interactive-card {
  display: none !important;
}

/* ══════════════════════════════════════
   ALBUM / RELEASE-ITEM HOVER EFFECTS
══════════════════════════════════════ */
.release-item.interactive-card {
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease !important;
}
.release-item.interactive-card:hover {
  transform: translateX(6px) !important;
  background: rgba(229,9,20,0.08) !important;
  box-shadow: inset 3px 0 0 #e50914 !important;
}

.banner-panel.interactive-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
  cursor: pointer;
}
.banner-panel.interactive-card:hover {
  transform: scale(1.025) !important;
  box-shadow: 0 12px 40px rgba(229,9,20,0.35) !important;
  filter: brightness(1.1) !important;
}
.banner-panel.interactive-card img {
  transition: transform 0.4s ease !important;
}
.banner-panel.interactive-card:hover img {
  transform: scale(1.06) !important;
}

/* ══════════════════════════════════════
   UPCOMING RELEASE BANNER
══════════════════════════════════════ */
.dg-upcoming-banner {
  width: 100%;
  background: #060405;
  position: relative;
  overflow: hidden;
}
.dg-upcoming-banner-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.dg-upcoming-banner-inner img.dg-upcoming-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.dg-upcoming-banner-inner:hover img.dg-upcoming-img {
  transform: scale(1.03);
  filter: brightness(1.08);
}
.dg-upcoming-label {
  position: absolute;
  top: 18px;
  left: 22px;
  background: #e50914;
  color: #fff;
  font-family: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 16px 4px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 3px 14px rgba(0,0,0,0.7);
}
@media (max-width: 900px) {
  .dg-upcoming-label { font-size: 18px; padding: 5px 13px 3px; top: 14px; left: 14px; }
}
@media (max-width: 600px) {
  .dg-upcoming-label { font-size: 14px; padding: 4px 10px 3px; top: 10px; left: 10px; }
}

/* ══════════════════════════════════════
   MOBILE OPTIMISATION
══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .brand-mark span { font-size: 13px !important; }

  /* Hero slider */
  .hero-section { padding: 7rem 16px 4rem !important; min-height: 80svh !important; }
  .slide-title { font-size: clamp(2.8rem, 10vw, 5rem) !important; }

  /* YouTube section */
  .dg-youtube-section { padding: 28px 14px 20px !important; }
  .dg-player-layout { grid-template-columns: 1fr !important; gap: 14px !important; }
  .dg-section-title { font-size: clamp(28px, 8vw, 44px) !important; }
  .dg-playlist { max-height: 260px !important; }

  /* About / split section */
  .split-section .split-content { gap: 28px !important; }
  .banner-stack { gap: 10px !important; }
  .banner-card { min-height: 160px !important; }

  /* Artists */
  .artist-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .artist-photo-frame { max-width: 100% !important; }

  /* Music */
  .release-list { gap: 6px !important; }
  .release-item { padding: 12px 14px !important; }

  /* Producers */
  .producer-row { gap: 16px !important; }
  .producer-card { min-width: 0 !important; }

  /* Submissions / contact */
  .submission-section { grid-template-columns: 1fr !important; }
  .dg-contact-body { grid-template-columns: 1fr !important; gap: 20px !important; }
  .dg-form-card { padding: 20px 14px !important; }

  /* Footer */
  footer { grid-template-columns: 1fr !important; text-align: center !important; gap: 14px !important; padding: 22px 16px !important; }
  .footer-brand { align-items: center !important; }
  .footer-empire { min-width: auto !important; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero-section { padding: 5.5rem 14px 3.5rem !important; min-height: 70svh !important; }

  /* YouTube */
  .dg-youtube-section { padding: 22px 12px 16px !important; }
  .dg-section-eyebrow { font-size: 10px !important; }
  .dg-playlist-item { padding: 8px 10px !important; }
  .dg-pl-thumb { width: 44px !important; height: 32px !important; }

  /* Contact */
  .dg-contact-inquiries { font-size: 18px !important; }
  .dg-form-row { grid-template-columns: 1fr !important; }
  .dg-form-submit { width: 100% !important; }
  .dg-csoc-btn { padding: 8px 12px !important; font-size: 12px !important; }

  /* Producer beats button */
  .dg-beat-btn { font-size: 12px !important; padding: 10px 16px !important; }

  /* Upcoming banner label */
  .dg-upcoming-label { font-size: 13px !important; }

  /* General text rhythm */
  h2, .section-label h2 { font-size: clamp(2.4rem, 11vw, 4rem) !important; }
  p { font-size: 14px !important; line-height: 1.6 !important; }
}
