/* ==========================================================================
   DESTINED FOR GREATNESS (DFG)
   High-End Record Label Web Experience
   ========================================================================== */

/* --- ROOT VARIABLES --- */
:root {
  --color-bg: #000000;
  --color-card-bg: rgba(14, 14, 14, 0.7);
  --color-card-border: rgba(255, 255, 255, 0.12);
  --color-accent-red: #e01b1b;
  --color-accent-red-hover: #ff2e2e;
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-text-dim: rgba(255, 255, 255, 0.4);
  
  /* SINGLE UNIFIED FONT: Exact font from the Releases section */
  --font-heading: 'Fontsi', 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --nav-height: 80px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, select, textarea, div {
  font-family: var(--font-heading);
}

/* Fix FontAwesome Social Media Icons */
.fa, .fas, .far, .fab, .fa-brands, .fa-solid, [class*="fa-"], [class^="fa-"], .fa-instagram, .fa-youtube, .fa-spotify, .fa-apple, .fa-soundcloud {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome" !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  display: inline-block;
}

/* Lenis Locomotive-Style Smooth Momentum Scroll */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html {
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #222 #000;
}

/* Sleek Minimal Dark Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-red);
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  outline: none;
}

img, video {
  max-width: 100%;
  display: block;
}

/* --- ATMOSPHERIC SITE BACKGROUND --- */
.site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('IMG/BG.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -3;
  filter: brightness(0.22) contrast(1.15);
  pointer-events: none;
}

.site-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 30%, rgba(224, 27, 27, 0.05) 0%, rgba(0, 0, 0, 0.8) 60%, #000000 100%);
  z-index: -2;
  pointer-events: none;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  animation: navSlideDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.navbar.transparent-nav,
.navbar.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.nav-container {
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: inline-block;
  background: transparent !important;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

.navbar.scrolled .brand-logo {
  height: 46px;
}

.drawer-logo {
  height: 44px;
  width: auto;
  background: transparent !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* --- SITE VIEW ROUTING TRANSITIONS --- */
.site-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-view.active-view {
  display: block;
  opacity: 1;
  animation: viewFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes viewFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- HOME VIEW: 3 RELEASES CARDS (NO TOP TITLE) --- */
.section-home-releases {
  padding: 70px 0 110px;
  position: relative;
}

.nav-social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-social-links a {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.nav-social-links a:hover {
  opacity: 1;
  color: var(--color-accent-red);
  transform: translateY(-2px);
}

.menu-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.menu-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 12px;
}

.hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu-toggle-btn:hover .hamburger-lines .line {
  background-color: var(--color-accent-red);
}

/* --- OFF-CANVAS DRAWER MENU --- */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.offcanvas-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.offcanvas-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 420px;
  max-width: 88vw;
  height: 100vh;
  background-color: #0a0a0a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 201;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.offcanvas-drawer.active {
  right: 0;
}

.drawer-inner {
  padding: 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.drawer-logo {
  height: 44px;
  width: auto;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  background: var(--color-accent-red);
  transform: rotate(90deg);
}

.close-x {
  position: relative;
  width: 18px;
  height: 18px;
}

.close-x .c-line {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.close-x .c-line1 { transform: rotate(45deg); }
.close-x .c-line2 { transform: rotate(-45deg); }

.drawer-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  transition: var(--transition-fast);
}

.drawer-nav-link .link-idx {
  font-size: 0.9rem;
  color: var(--color-accent-red);
  font-family: var(--font-body);
  font-weight: 600;
}

.drawer-nav-link:hover {
  color: var(--color-accent-red);
  transform: translateX(10px);
}

.drawer-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.drawer-socials a {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.drawer-socials a:hover {
  color: var(--color-accent-red);
}

.drawer-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dim);
  letter-spacing: 0.08em;
}

/* --- HERO SECTION (VIDEO SHOWCASE) --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #000;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-desktop {
  display: block;
}

.video-mobile {
  display: none;
}

.video-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.85) 90%, #000000 100%);
  pointer-events: none;
}

.hero-bottom-controls {
  position: relative;
  z-index: 10;
  padding: 0 40px 40px;
}

.sound-toggle-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.sound-toggle-pill:hover {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
}

/* --- RELEASES SECTION (3 CARDS ONLY) --- */
.section-releases {
  padding: 90px 0 110px;
  position: relative;
}

.section-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}

.section-subtag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent-red);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.release-card {
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.release-card:nth-child(1) { transition-delay: 0.1s; }
.release-card:nth-child(2) { transition-delay: 0.22s; }
.release-card:nth-child(3) { transition-delay: 0.35s; }

.card-link {
  display: block;
}

.release-art-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background-color: transparent;
}

.release-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-card:hover .release-cover {
  transform: scale(1.06);
}

.release-meta {
  padding: 16px 0 0 0;
  text-align: left;
}

.release-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.3;
  transition: var(--transition-fast);
}

.release-card:hover .release-title {
  color: #ffffff;
}

.release-artist {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- DEDICATED RELEASES VIEW (GOLD THEME + VINYL ROWS) --- */
.section-dedicated-releases {
  min-height: 100vh;
  padding: 150px 0 120px;
  position: relative;
}

.releases-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 12% 20%, rgba(255, 170, 0, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 80%, rgba(255, 140, 0, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.dedicated-releases-header {
  text-align: center;
  margin-bottom: 80px;
}

.dedicated-releases-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #f7e6a6;
  text-shadow: 0 4px 30px rgba(255, 215, 0, 0.4), 0 2px 12px rgba(0, 0, 0, 0.95);
  text-transform: uppercase;
  line-height: 1.1;
}

.vinyl-releases-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 1050px;
  margin: 0 auto;
}

.vinyl-release-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  align-items: center;
  gap: 60px;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.vinyl-release-row.revealed {
  opacity: 1;
  transform: translateY(0);
}

.vinyl-releases-list .vinyl-release-row:nth-child(1) { transition-delay: 0.08s; }
.vinyl-releases-list .vinyl-release-row:nth-child(2) { transition-delay: 0.16s; }
.vinyl-releases-list .vinyl-release-row:nth-child(3) { transition-delay: 0.24s; }
.vinyl-releases-list .vinyl-release-row:nth-child(4) { transition-delay: 0.32s; }
.vinyl-releases-list .vinyl-release-row:nth-child(5) { transition-delay: 0.40s; }

.vinyl-release-row:hover {
  transform: scale(1.02);
}

.vinyl-art-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.vinyl-mockup-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.95));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vinyl-release-row:hover .vinyl-mockup-img {
  transform: translateY(-6px);
}

.vinyl-info-wrap {
  text-align: left;
}

.vinyl-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #f7e6a6;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
}

.vinyl-artist {
  font-family: var(--font-heading) !important;
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #f7e6a6;
  text-transform: uppercase;
  opacity: 0.9;
}

/* --- SECTION: ABOUT DFG --- */
.section-about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  position: relative;
  background: transparent;
}

.about-card-frame {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card-frame.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-script-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.about-destined-pill {
  font-family: var(--font-heading) !important;
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 12px;
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
}

.about-gold-divider {
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e6b800 20%, #ffd700 50%, #e6b800 80%, transparent);
  margin: 16px auto 30px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.about-single-paragraph {
  font-family: var(--font-heading) !important;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.85;
  color: #e5e5e5;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* --- FOOTER: DESTINED FOR GREATNESS --- */
.dfg-footer {
  position: relative;
  background-image: url('IMG/BG.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 90px 0 110px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.dfg-footer.revealed {
  opacity: 1;
  transform: translateY(0);
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ambient glow & light flare effects */
.footer-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 15% 0%, rgba(255, 170, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 100%, rgba(255, 140, 0, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.footer-metallic-title-wrap {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 10px;
}

.footer-title-svg {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 25px rgba(0, 0, 0, 0.95)) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.15));
  user-select: none;
}

/* 2-Column Info Grid */
.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-left {
  text-align: left;
}

.info-right {
  text-align: right;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--font-heading) !important;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.info-value {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.info-value:hover {
  color: var(--color-accent-red);
}

/* --- MOBILE RESPONSIVE QUERIES --- */
@media (max-width: 1024px) {
  .nav-social-links {
    display: none;
  }

  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links-desktop {
    display: none;
  }

  /* Dedicated Releases Mobile Center Alignment */
  .section-dedicated-releases {
    padding: 100px 0 60px;
  }

  .dedicated-releases-header {
    text-align: center;
    margin-bottom: 45px;
  }

  .dedicated-releases-title {
    font-size: clamp(1.8rem, 8vw, 2.75rem);
    text-align: center;
  }

  .vinyl-releases-list {
    gap: 45px;
    align-items: center;
    width: 100%;
  }

  .vinyl-release-row {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    align-items: center;
    justify-items: center;
    width: 100%;
  }

  .vinyl-art-wrap {
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .vinyl-mockup-img {
    max-width: 100%;
    margin: 0 auto;
  }

  .vinyl-info-wrap {
    text-align: center;
    width: 100%;
  }

  .vinyl-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    text-align: center;
    margin-bottom: 6px;
  }

  .vinyl-artist {
    font-size: clamp(0.75rem, 3.2vw, 0.95rem);
    text-align: center;
  }

  /* Navigation on Mobile */
  .nav-container {
    padding: 0 20px;
  }

  .brand-logo {
    height: 38px;
  }

  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }

  /* Home Releases on Mobile */
  .section-releases,
  .section-home-releases {
    padding: 40px 0 60px;
  }

  .releases-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 360px;
    margin: 0 auto;
  }

  .release-card:active,
  .vinyl-release-row:active {
    transform: scale(0.97);
    transition: transform 0.15s ease;
  }

  .release-meta {
    text-align: center;
  }

  .release-title {
    text-align: center;
  }

  /* About Section on Mobile */
  .section-about {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .about-card-frame {
    padding: 0 10px;
  }

  .about-script-title {
    font-size: clamp(1.25rem, 5.5vw, 1.8rem);
  }

  .about-single-paragraph {
    font-size: clamp(0.88rem, 3.8vw, 1.05rem);
    line-height: 1.75;
  }

  .section-container {
    padding: 0 20px;
  }

  /* Footer Mobile Center Placement & Anti-Overflow */
  .dfg-footer {
    padding: 60px 0 80px;
    text-align: center;
  }

  .footer-container {
    padding: 0 16px;
    text-align: center;
  }

  .footer-metallic-title-wrap {
    margin-bottom: 36px;
  }

  .footer-title-svg {
    max-width: 320px;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    align-items: center;
    justify-items: center;
    width: 100%;
  }

  .info-column {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 24px;
  }

  .info-left, .info-right {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .info-block {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .info-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .info-value {
    text-align: center;
    font-size: clamp(0.9rem, 4.2vw, 1.25rem);
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
    display: inline-block;
  }
}

/* ==========================================================================
   CUSTOM SMOOTH EASING CURSOR (Desktop Only)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .custom-cursor.active {
    opacity: 1;
  }

  /* Center point dot */
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* Smooth trailing white ball */
  .cursor-ball {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: transparent;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Hovering over Release Cards: Expand into smooth white translucent glowing ball */
  .custom-cursor.card-hover .cursor-ball {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .custom-cursor.card-hover .cursor-dot {
    background-color: #ffffff;
    transform: translate(-50%, -50%) scale(1.2);
  }

  /* Hovering over Links / Buttons */
  .custom-cursor.link-hover .cursor-ball {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
  }
}
