:root {
  --bg: #06070c;
  --panel: #0f1320;
  --panel-alt: #12192b;
  --text: #f2f5ff;
  --muted: rgba(242, 245, 255, 0.75);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #2be2c7;
  --accent-soft: rgba(43, 226, 199, 0.2);
  --header-height: 100px;
}

::selection {
  background: var(--accent);
  color: #000000;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

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

html,
body,
header,
main,
footer,
section,
div,
nav,
a,
button,
form,
input,
label,
ul,
li,
p,
h1,
h2,
h3,
h4,
article,
video,
img,
iframe,
span {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  background: #06070c;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Disable body scroll, use container instead */
}

body {
  font-family: "Jost", Arial, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.5;
  padding-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: transparent;
}

.container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-stack {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.main-header {
  background: transparent !important;
  border-bottom: none;
  backdrop-filter: none;
}

.header-grid {
  min-height: 100px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-group-left,
.nav-group-right,
.nav-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 8px;
}

.nav-item,
.utility-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 10px;
  border-radius: 10px;
  transition: color 0.2s ease;
  position: relative;
}

.search-trigger {
  cursor: pointer;
}

.nav-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.nav-item span {
  color: #2BE2C7;
  transition: color 0.2s ease;
  font-family: "Caveat", cursive;
  font-size: 1.8rem;
  line-height: 1;
}

.nav-item:hover,
.nav-item:focus-visible {
  background: transparent;
}

.nav-item:hover span,
.nav-item:focus-visible span {
  color: #ffffff;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-soft);
  /* Faster transition for spontaneous feel */
  transition: transform 0.15s cubic-bezier(0.2, 0, 0, 1), width 0.15s cubic-bezier(0.2, 0, 0, 1), opacity 0.1s ease;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  will-change: transform, width, opacity;
}

.brand {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  grid-area: 1 / 1;
  width: auto;
  height: 30px;
  max-height: 30px;
  filter: drop-shadow(0 4px 12px rgba(43, 226, 199, 0.25));
  transition: opacity 0.3s ease;
}

.logo-hover {
  opacity: 0;
}

.brand:hover .logo-default {
  opacity: 0;
}

.brand:hover .logo-hover {
  opacity: 1;
}

#scroll-container {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  position: relative;
  z-index: 1;
  scroll-snap-type: y mandatory;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent var(--header-height), black calc(var(--header-height) + 30px), black 100%);
  mask-image: linear-gradient(to bottom, transparent 0, transparent var(--header-height), black calc(var(--header-height) + 30px), black 100%);
  scrollbar-width: none;
}

#scroll-container::-webkit-scrollbar {
  display: none;
}

.hero {
  height: 100vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.bg-video.active {
  opacity: 1;
  z-index: 1;
}

.video-vignette {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-overlay-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 22%;
  min-width: 300px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-bottom: 6vh;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-down svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.82rem;
  font-family: "Bad Script", cursive;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  margin: 0;
  font-family: "Pacifico", cursive;
  font-weight: 400;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
}

.btn-primary {
  padding: 11px 24px;
  font-family: "Prompt", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.content-section {
  padding: 0;
  padding-top: var(--header-height);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}

.content-section.alt {
  background: transparent;
}

.section-subtitle {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Bad Script", cursive;
  font-size: 1.2rem;
  text-align: center;
}

.section-subhead {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.15rem;
  font-family: "Bad Script", cursive;
}

.inline-highlight {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.section-divider {
  height: 1px;
  width: 100%;
  margin: 1.2rem 0 1.5rem;
  background: linear-gradient(90deg, rgba(52, 207, 194, 0), rgba(52, 207, 194, 0.8), rgba(52, 207, 194, 0));
}

.music-section {
  width: 100%;
  padding: 0;
  position: relative;
}

.music-section .music-shell {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  width: 100%;
  align-items: center;
  padding: 0 2%;
  border: none;
  background: transparent;
  backdrop-filter: none;
  position: relative;
  z-index: 2;
  pointer-events: none; /* Allow clicks to pass through to vinyl */
}

.music-section .vertical-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 13vh;
  letter-spacing: 0.35em;
  margin: 0;
  width: auto;
  height: auto;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  flex: none;
  text-shadow: none;
}

.music-section .section-body {
  justify-self: end;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  position: relative;
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through */
}

.music-section .album-center {
  width: 100%;
  max-width: 600px; /* Decreased width by 20% (750px -> 600px) */
  margin: 0;
  margin-top: 8vh; /* Lowered position */
  pointer-events: auto; /* Re-enable clicks for the player */
}

.music-credits {
  text-align: center;
}

.album-center {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(12px);
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* --- Left Side Vinyl Animation Styles --- */
.music-overlay-left {
  position: absolute;
  left: 28%; /* Changed from 25% to 28% to move it right */
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Behind main content if overlapping, but visible */
  width: 40vw; /* Much larger size, responsive to viewport width */
  max-width: 850px; /* Maximum constraint */
  min-width: 400px; /* Minimum constraint */
  pointer-events: auto; /* Ensure this layer captures the hover */
}

.vinyl-wrapper-large {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  /* Add transition for hover effect */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  cursor: pointer; /* Add cursor to indicate interactivity */
}

/* Hover Effect: Scale up by 30% */
.vinyl-wrapper-large:hover {
  transform: scale(1.3);
  z-index: 10;
}

.vinyl-sleeve-large {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 4px;
  /* Removed box-shadow and border to hide outer lines */
  box-shadow: none;
  border: none;
  filter: drop-shadow(0 0 15px rgba(43, 226, 199, 0.4)); /* Glow effect */
}

.vinyl-disc-large {
  position: absolute;
  top: 50%;
  right: 0; /* Align right edge to sleeve right edge */
  width: 40%; /* 2.5 times smaller than sleeve (100/2.5 = 40) */
  height: 40%;
  z-index: 1;
  transform: translateY(-50%); /* Center vertically */
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

/* Punch Hole for Vinyl */
.vinyl-disc-large::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%; /* Size of the hole */
  height: 15%;
  background: #06070c; /* Matches body background color */
  border-radius: 50%;
  z-index: 3;
}

.vinyl-disc-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Playing State: Slide out and Spin */
.vinyl-wrapper-large.playing .vinyl-disc-large {
  transform: translate(50%, -50%); /* Slide out to the right, keep vertical center */
}

.vinyl-wrapper-large.playing .vinyl-disc-large img {
  animation: spin 4s linear infinite;
}

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

/* Static Artwork for Player */
.album-artwork-static {
  width: 100%;
  max-width: 320px; /* Increased size */
  aspect-ratio: 1/1;
  margin: 0 auto 0.75rem;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: block;
}

.album-title {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Pacifico", cursive;
  letter-spacing: 1px;
}

.album-note {
  margin: 0.28rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.35;
}

.track-list-container {
  margin: 1rem 0;
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  align-content: start;
}

.track-row {
  display: grid;
  /* Changed grid to accommodate one-line layout: Index | Name+Icons | Button */
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 10px 12px;
  border-radius: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s ease;
}

.track-list .track-row:last-child {
  border-bottom: none;
}

.track-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.track-index {
  font-family: "Prompt", sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  min-width: 2ch;
  padding-top: 3px;
}

.track-info {
  display: flex;
  flex-direction: row; /* Horizontal layout */
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.track-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0;
  text-align: left;
  color: var(--text);
  white-space: nowrap;
}

.platform-links {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: center;
}

.platform-links a {
  display: inline-flex;
  padding: 4px;
  margin: 0;
}

.platform-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.2s;
}

.platform-icon:hover {
  transform: scale(1.1);
}

/* Specific Icon Scaling */
/* JioSaavn: 2x bigger (reduced from 2.5x) */
img[alt="JioSaavn"], 
.icon-jiosaavn {
    transform: scale(2);
    margin: 0 10px; /* Add margin to prevent overlap due to scaling */
}

img[alt="JioSaavn"]:hover,
.icon-jiosaavn:hover {
    transform: scale(2.2);
}

/* Amazon Music: 1.25x bigger */
img[alt="Amazon Music"] {
    transform: scale(1.25);
}

img[alt="Amazon Music"]:hover {
    transform: scale(1.35);
}

.track-row.released {
  background: transparent;
}

.track-row.released:hover {
  background: rgba(255, 255, 255, 0.08);
}

.track-row.released .track-name {
  color: var(--accent);
  font-weight: 600;
}

.track-play-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  white-space: nowrap;
}

.track-play-btn:hover,
.track-play-btn:focus-visible {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

.track-row.upcoming {
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  align-items: center;
}

.track-row.upcoming .track-index {
  color: rgba(255, 255, 255, 0.3);
}

/* Styles for Releasing Soon Note */
.upcoming-details {
  display: flex;
  flex-direction: row; /* Linear layout */
  align-items: center;
  width: 100%;
  position: relative; /* For absolute positioning of note */
}

.upcoming-details .track-name {
  /* Keep default left alignment */
}

.release-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Prompt", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0;
  /* Absolute center within the row */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

/* --- Updated Music Player Panel --- */
.music-player-panel {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.player-center-info {
  flex: 1;
  text-align: center;
  overflow: hidden;
}

.music-player-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#music-now-playing {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
}

.player-artist {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: "Josefin Sans", sans-serif;
  min-height: 1.2em; /* Reserve space to prevent layout shift */
}

.player-control-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: color 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.player-control-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.player-control-btn.active {
  color: var(--accent);
}

.control-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.repeat-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 1;
}

/* Options Menu Styles */
.options-wrapper {
  position: relative;
}

.options-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transform-origin: bottom right;
  animation: scaleIn 0.2s ease;
}

.options-menu[hidden] {
  display: none;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.option-item {
  background: transparent;
  border: none;
  color: var(--text);
  padding: 8px 12px;
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.option-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Sliding Popup Styles */
.player-popup {
  position: absolute;
  inset: 0;
  background: rgba(15, 19, 32, 0.98);
  backdrop-filter: blur(15px);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 16px; /* Match album-center radius */
}

.player-popup.active {
  transform: translateX(0);
}

.popup-close {
  align-self: flex-end;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(255,255,255,0.2);
}

.popup-content {
  flex: 1;
  overflow-y: auto;
  color: var(--text);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  padding-right: 4px;
}

/* Scrollbar for popup content */
.popup-content::-webkit-scrollbar {
  width: 4px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.credit-line {
  margin-bottom: 0.5rem;
  display: block;
}

.credit-role {
  color: var(--accent);
  font-weight: 600;
  margin-right: 6px;
}

#music-player-audio {
  width: 100%;
  height: 40px;
  margin-top: 0.2rem;
  border-radius: 20px;
  position: relative;
  z-index: 10;
}

.about-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  color: #ffffff;
  font-family: "Bad Script", cursive;
  font-size: 1.5rem;
  margin-left: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(43, 226, 199, 0.3);
  color: var(--text);
  font-family: "Josefin Sans", sans-serif;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(43, 226, 199, 0.15), rgba(0, 0, 0, 0.2));
  box-shadow: 0 0 20px rgba(43, 226, 199, 0.25);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
}

.site-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.utility-grid {
  min-height: 70px;
  padding: 0 15%; /* Increased padding to move links closer to center */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4px;
}

.utility-link,
.utility-center {
  font-family: "Caveat", cursive;
  font-size: 1.1rem;
}

.utility-link {
  color: #2BE2C7;
  flex-direction: row;
  gap: 0.28rem;
  white-space: nowrap;
}

.utility-link .amp,
.utility-center span {
  color: #ffffff;
}

.utility-link:hover,
.utility-link:focus-visible {
  color: #111111;
}

.utility-link:hover .amp,
.utility-link:focus-visible .amp {
  color: #2BE2C7;
}

.utility-link-right {
  justify-self: end;
}

.utility-center {
  text-align: center;
  color: var(--muted);
}

.utility-center span {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
}

/* User-requested exact section backgrounds */
#music,
#follow,
#contact,
#videos,
#about {
  background: transparent;
  color: var(--text);
}

.main-header .nav-item img {
  filter: brightness(0) drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}

.main-header .nav-item span {
  color: #ffffff;
}

.main-header .nav-item:hover img,
.main-header .nav-item:focus-visible img,
.main-header .search-trigger:hover img,
.main-header .search-trigger:focus-visible img,
.main-header .nav-item.active img {
  filter: brightness(0) invert(1);
}

.main-header .nav-item:hover span,
.main-header .nav-item:focus-visible span,
.main-header .search-trigger:hover span,
.main-header .search-trigger:focus-visible span,
.main-header .nav-item.active span {
  color: #000000;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.site-footer .utility-link {
  color: #ffffff;
}

.site-footer .utility-center {
  color: #ffffff;
}


.site-footer .utility-center a,
.site-footer .utility-center a span {
  color: inherit;
  transition: color 0.2s ease;
}

.site-footer .utility-center a:hover,
.site-footer .utility-center a:focus-visible,
.site-footer .utility-center a:hover span,
.site-footer .utility-center a:focus-visible span {
  color: #000000;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.site-footer .utility-link:hover,
.site-footer .utility-link:focus-visible,
.site-footer .utility-link:hover .amp,
.site-footer .utility-link:focus-visible .amp {
  color: #000000;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-dialog {
  width: min(820px, 100%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.search-dialog-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-dialog-header input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-family: "Josefin Sans", sans-serif;
}

.search-dialog-header input:focus {
  outline: none;
}

.search-input-clear {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.search-input-clear:hover {
  color: #fff;
}

.search-dialog-close {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-dialog-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 60vh;
  overflow: auto;
}

.search-results li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-results a {
  display: block;
  color: inherit;
  padding: 0.9rem 1rem;
}

.search-results a:hover,
.search-results a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.search-result-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.search-result-snippet {
  opacity: 0.85;
  font-size: 0.95rem;
}

.search-empty {
  padding: 1rem;
  opacity: 0.85;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- New Split Layout Styles --- */
.split-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
  align-items: center;
  padding: 0 5%;
  position: relative;
  z-index: 2;
  gap: 4rem;
}

.center-vertical-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 11vh;
  letter-spacing: 0.25em;
  margin: 0;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  color: #fff;
  text-shadow: none;
}

@media (min-width: 769px) {
  #about .center-vertical-heading {
    font-size: 13vh;
    letter-spacing: 0.35em;
  }
  #contact .center-vertical-heading {
    font-size: 9vh;
    letter-spacing: 0.2em;
  }
}

.split-left, .split-right {
  width: 100%;
}

/* Videos Section */
.yt-card {
  background: #0f0f0f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.yt-info {
  padding: 1rem;
}

.yt-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.yt-meta {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.8rem;
}

.yt-desc {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Follow Section */
.social-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.social-tile {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.social-tile:hover {
  transform: scale(1.1);
  background: #fff;
}

.social-icon-large {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s;
}

.social-tile:hover .social-icon-large {
  transform: scale(1.1);
}

/* About Section */
.tweet-card {
  background: #000;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 1.5rem;
  color: #fff;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.tweet-user {
  display: flex;
  flex-direction: column;
}

.tweet-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.tweet-handle {
  color: #71767b;
  font-size: 0.95rem;
}

.tweet-content p {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1.05rem;
}

/* Contact Section */
.newsletter-card {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  border: 4px solid #000;
}

.newsletter-card h3 {
  font-family: "Prompt", sans-serif;
  font-size: 2.5rem;
  margin: 0 0 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
}

.newsletter-card p {
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  border: 2px solid #000;
  padding: 12px;
  font-size: 1rem;
  color: #000;
  background: transparent;
  border-radius: 0;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  :root { --header-height: 80px; }
  .header-grid {
    min-height: 80px;
    padding: 0;
    gap: 0;
  }

  .nav-group,
  .nav-group-left,
  .nav-group-right {
    gap: 0;
    justify-content: space-between;
  }

  .nav-group-left .nav-item,
  .nav-group-right .nav-item {
    flex: 1 1 0;
    min-width: 0;
  }

  .nav-item {
    flex-direction: row;
    gap: 0.55rem;
    justify-content: center;
    padding: 10px 8px;
    border-radius: 0;
  }

  .nav-item img {
    width: 33px;
    height: 33px;
  }

  .brand-logo {
    height: 36px;
    max-height: 36px;
  }

  .nav-item span {
    font-size: 1.8rem;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  :root { --header-height: 90px; }
  .header-grid {
    min-height: 90px;
    padding: 0;
    gap: 0;
  }

  .nav-group,
  .nav-group-left,
  .nav-group-right {
    gap: 0;
  }

  .nav-item {
    padding: 8px 10px;
    gap: 0.85rem;
  }

  .nav-item img {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    height: 44px;
    max-height: 44px;
  }

  .nav-item span {
    font-size: 1.95rem;
    line-height: 1;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 1280px) {
  :root { --header-height: 100px; }
  .header-grid {
    min-height: 100px;
    padding: 0;
  }

  .nav-item {
    padding: 10px 12px;
    gap: 1rem;
  }

  .nav-item img {
    width: 39px;
    height: 39px;
  }

  .brand-logo {
    height: 50px;
    max-height: 50px;
  }

  .nav-item span {
    font-size: 2.1rem;
  }
}

@media (max-width: 900px) {
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .embed-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 0;
  }

  .header-grid {
    min-height: 100px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 4px;
  }

  .nav-group,
  .nav-group-left,
  .nav-group-right {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: visible;
    width: 100%;
    gap: 2px;
    padding-bottom: 0;
  }

  .nav-group::-webkit-scrollbar,
  .nav-group-left::-webkit-scrollbar,
  .nav-group-right::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    flex: 0 0 auto;
    min-width: auto;
    padding: 4px 4px;
  }

  .nav-item img {
    width: 20px;
    height: 20px;
  }

  .nav-item span {
    font-size: 1rem;
    white-space: nowrap;
  }

  .brand {
    order: 0;
  }

  .brand-logo {
    height: 30px;
    max-height: 30px;
    transform: translateY(-2px);
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    margin-right: auto;
    padding-bottom: 0;
  }

  .album-artwork {
    max-width: 140px;
  }

  .track-row {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.3rem;
  }

  .track-play-btn {
    grid-column: auto;
    justify-self: end;
  }

  .content-section {
    padding: 64px 0;
  }

  .utility-grid {
    min-height: 44px;
    padding: 0 8px;
    gap: 10px;
  }

  .utility-link,
  .utility-center {
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  :root { --header-height: 90px; }
  .header-grid {
    min-height: 90px;
    padding: 0 5px;
    gap: 3px;
  }

  .nav-group,
  .nav-group-left,
  .nav-group-right {
    gap: 2px;
  }

  .nav-item {
    min-width: auto;
    padding: 3px 2px;
  }

  .nav-item img {
    width: 18px;
    height: 18px;
  }

  .nav-item span {
    font-size: 0.9rem;
  }

  .brand-logo {
    height: 26px;
    max-height: 26px;
    transform: translateY(-2px);
  }
}

@media (max-width: 360px) {
  :root { --header-height: 80px; }
  .header-grid {
    min-height: 80px;
    padding: 0 4px;
    gap: 2px;
  }

  .nav-item {
    min-width: auto;
    padding: 2px 1px;
  }

  .nav-item img {
    width: 16px;
    height: 16px;
  }

  .nav-item span {
    font-size: 0.85rem;
  }

  .brand-logo {
    height: 24px;
    max-height: 24px;
    transform: translateY(-1px);
  }
}

@media (max-width: 768px) {
  .split-shell, .music-shell {
    display: block;
    padding: 1rem;
  }
  .split-left, .split-right {
    margin-bottom: 2rem;
  }
  .center-vertical-heading, .music-section .vertical-heading {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 3rem;
    letter-spacing: 0.1em;
    position: static;
    transform: none;
    opacity: 1;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .section-subtitle {
    text-align: center;
  }

  .content-section {
    height: 100vh;
  }
  
  /* Hide the large vinyl on mobile to save space */
  .music-overlay-left {
    display: none;
  }
}

/* Apply new body font to main content only, preserving header/footer */
main {
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  z-index: 1;
}

/* --- Loading Spinner --- */
.loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* Above video (z-index 0-1), below content (z-index 50) */
  pointer-events: none; /* Let clicks pass through */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loader-container.visible {
  opacity: 1;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: var(--accent); /* Uses your teal color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Tooltip Styles --- */
[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--accent);
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  border-width: 4px;
  border-style: solid;
  border-color: var(--accent) transparent transparent transparent;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}

/* --- Sticky Player Styles --- */
.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none; /* Base: pass through */
}

.sticky-player.visible {
  transform: translateY(0); /* Slide up */
}

.sticky-progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px; /* Slightly taller for easier clicking */
  background: rgba(255, 255, 255, 0.1);
  z-index: 100;
  cursor: pointer;
  pointer-events: auto; /* Clickable */
}

.sticky-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent);
  pointer-events: none; /* Let clicks pass to container */
}

.sticky-time-tooltip {
  position: absolute;
  bottom: 12px; /* Above the bar */
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  pointer-events: none;
  display: none;
  white-space: nowrap;
  transform: translateX(-50%);
  font-family: "Prompt", sans-serif;
}

.sticky-progress-container:hover .sticky-time-tooltip {
  display: block;
}

.sticky-info {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none; /* Ensure the flex container passes clicks */
}

.sticky-track-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto; /* Only the text block is clickable */
}

#sticky-track-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Shadow for readability */
  transition: color 0.2s;
}

#sticky-track-name:hover {
  color: var(--accent);
}

.sticky-artist {
  font-family: "Prompt", sans-serif;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Shadow for readability */
}

.sticky-controls {
  flex: 0 0 auto;
  margin-left: 15px;
  pointer-events: none; /* Ensure container passes clicks */
}

.sticky-btn {
  background: var(--accent);
  color: #000;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5); /* Stronger shadow for visibility */
  pointer-events: auto; /* Only the button is clickable */
}

.sticky-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.sticky-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .sticky-player {
    bottom: 45px; /* Move up slightly to avoid overlapping footer links on some mobile browsers */
    height: 60px;
  }
}
