:root {
	--vv-ink: #071514;
	--vv-ink-soft: #284a47;
	--vv-paper: rgba(245, 255, 250, 0.82);
	--vv-glass: rgba(255, 255, 255, 0.18);
	--vv-mint: #bfe7cf;
	--vv-seafoam: #dff6ed;
	--vv-turquoise: #6ccdd0;
	--vv-teal: #2f8f8a;
	--vv-shadow: 0 32px 60px rgba(6, 29, 27, 0.22);
}

body {
	position: relative;
	background-image:
		linear-gradient(180deg, rgba(4, 14, 13, 0.18) 0%, rgba(4, 14, 13, 0.08) 100%),
		url("images/overlay.png"),
		url("../../images/watercolor-mountains.svg");
	background-repeat: repeat, repeat, no-repeat;
	background-size: auto, auto, cover;
	background-position: center, center, center;
	background-attachment: fixed, fixed, fixed;
}

audio {
	width: 100%;
	margin: 0.5em 0 1em 0;
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(10px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* fade + scale control */
.overlay.show {
	display: flex;
}

.modal-shell {
	position: relative;
	width: min(750px, 92%);
}

.modal-card {
	width: 100%;
	max-height: 85vh;
	overflow-x: hidden;
	overflow-y: auto;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 1.5em;
	padding: 1.5em;
	box-shadow: var(--vv-shadow);
	color: white;
	/* start hidden */
	transform: scale(0.6);
	opacity: 0;

	transition: transform 0.28s ease, opacity 0.28s ease;
}

/* when modal opens */
.overlay.show .modal-card {
	transform: scale(1);
	opacity: 1;
}

.close-btn {
	position: absolute;
	top: 0.35rem;
	right: -3.2rem;
	left: auto;
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	cursor: pointer;
	color: white;
	line-height: 1;
	text-decoration: none;
	background: rgba(7, 21, 20, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	padding: 0;
	box-shadow: 0 14px 28px rgba(7, 21, 20, 0.28);
	z-index: 2;
}

.fade-up {
	opacity: 0;
	transform: translateY(1.35rem);
	transition: opacity 0.55s ease, transform 0.55s ease;
	will-change: opacity, transform;
}

.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 15% 15%, rgba(223, 246, 237, 0.42), transparent 26%),
		radial-gradient(circle at 84% 18%, rgba(108, 205, 208, 0.24), transparent 24%),
		radial-gradient(circle at 50% 80%, rgba(191, 231, 207, 0.18), transparent 28%);
	pointer-events: none;
	z-index: 0;
}

body,
input,
textarea,
select {
	font-family: "Segoe UI Variable", "Aptos", "Trebuchet MS", sans-serif;
	font-weight: 400;
	color: var(--vv-ink-soft);
}

strong,
b,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--vv-ink);
	font-weight: 700;
}

a {
	color: var(--vv-teal);
}

header>p {
	color: rgba(40, 74, 71, 0.78);
}

#wrapper,
#nav,
#main,
#footer {
	position: relative;
	z-index: 1;
}

/* Footer social icons */
.footer-social {
	margin-top: 10px;
	text-align: center;
}

.footer-social a {
	font-size: 1.8rem;
	margin: 0 12px;
	color: white;
	text-decoration: none;
	transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover effect */
.footer-social a:hover {
	transform: scale(1.2);
	color: #00ffd0;
}

#wrapper {
  width: 100%;
  max-width: 1200px;   /* hard cap */
  margin: 0 auto;      /* center */
  padding: 1.5em 1.5em 3em;
}

#nav {
	position: sticky;
	top: 20px; /* space from top when scrolling */
	height: auto;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	width: fit-content;
	margin: 2rem auto; /* centers it and adds breathing room */

	padding: 0.75em 0.9em;

	background: rgba(0, 0, 0, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;

	backdrop-filter: blur(18px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);

	z-index: 1000; /* ensures it stays above panels */
}

#nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.65em;
	width: auto;
	height: auto;
	margin: 0.2em;
	padding: 0.95em 1.25em;
	border-radius: 999px;
	font-size: 1rem;
	line-height: 1;
	opacity: 1;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, transform 0.25s ease-in-out;
}

#nav a:before {
	font-size: 1rem;
}

#nav a:after {
	display: none;
}

#nav a span {
	position: static;
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	background: transparent;
	opacity: 1;
	font-size: 0.88rem;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
}

#nav a span:after {
	display: none;
}

#nav a:hover,
#nav a.active {
	background: rgba(108, 205, 208, 0.22);
	color: #ffffff;
	transform: translateY(-1px);
}

#main {
	overflow: visible;
	background: var(--vv-paper);
	border: 1px solid rgba(255, 255, 255, 0);
	border-radius: 2.25em;

	box-shadow: var(--vv-shadow);
}




#main>.panel {
	background: transparent;
}

#main>.panel.intro {
	min-height: 26em;
}

#main>.panel.intro header {
	background: transparent;
}

#main>.panel.intro .pic {
	width: 20em;
}

#main>.panel.intro .pic:before {
	background:
		linear-gradient(180deg, rgba(3, 14, 12, 0.08), rgba(3, 14, 12, 0.28)),
		radial-gradient(circle at top left, rgba(223, 246, 237, 0.38), transparent 34%);
}

#main>.panel.intro .pic .arrow {
	background: rgba(7, 21, 20, 0.78);
}

.eyebrow,
.section-kicker {
	display: inline-block;
	margin-bottom: 0.75em;
	color: var(--vv-teal);
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero-panel header p:last-of-type,
.panel-copy,
.about-copy p,
.detail-card p,
.platform-card p,
.mini-note {
	color: var(--vv-ink-soft);
	line-height: 1.8em;
}

.service-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85em;
	margin-top: 1.8em;
}

.service-button,
.glass-button,
.back-link {
	background: rgba(255, 255, 255, 0.16);
	color: var(--vv-ink);
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	backdrop-filter: blur(18px);
	box-shadow: none;
	font-weight: 700;
}

.service-button:hover,
.glass-button:hover,
.back-link:hover,
.platform-card:hover {
	background: rgba(255, 255, 255, 0.28);
}

.portfolio-guidance {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
}

.portfolio-carousel {
	position: relative;
	margin-top: 1.4rem;
	padding: 0 4.5rem;
}

.portfolio-viewport {
	overflow: hidden;
	border-radius: 1.8em;
}

.portfolio-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.portfolio-slide {
	flex: 0 0 100%;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1.75rem;
	align-items: center;
	padding: 1.65rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 1.8em;
}

.portfolio-art {
	overflow: hidden;
	border-radius: 1.3em;
	background: rgba(255, 255, 255, 0.2);
}

.portfolio-art-button {
	width: 100%;
	padding: 0;
	border: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: transform 0.2s ease;
}

.portfolio-art-button:hover {
	transform: translateY(-2px);
}

.portfolio-art-button:focus-visible {
	outline: 3px solid rgba(47, 143, 138, 0.75);
	outline-offset: 4px;
}

.portfolio-art img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: 50% var(--art-position-y, 50%);
	transform: scale(var(--art-scale, 1));
	transform-origin: center;
}

.portfolio-copy h3 {
	margin-bottom: 0.45rem;
}

.portfolio-copy p {
	margin-bottom: 0;
	line-height: 1.8em;
	color: var(--vv-ink-soft);
}

@media screen and (min-width: 981px) {
	.portfolio-slide {
		grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
		align-items: start;
	}

	.portfolio-copy {
		align-self: start;
		font-size: 0.92rem;
	}
}

.portfolio-type {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.85rem;
	padding: 0.4rem 0.78rem;
	border-radius: 999px;
	background: rgba(47, 143, 138, 0.12);
	color: var(--vv-teal) !important;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.portfolio-actions {
	margin-top: 1.35rem;
}

.portfolio-nav {
	position: absolute;
	top: 50%;
	width: 3.2rem;
	height: 3.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(7, 21, 20, 0.82);
	color: #ffffff;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 18px 36px rgba(7, 21, 20, 0.22);
	transition: transform 0.2s ease, background 0.2s ease;
}

.portfolio-nav:hover {
	background: rgba(47, 143, 138, 0.92);
	transform: translateY(-50%) scale(1.05);
}

.portfolio-nav-prev {
	left: 0;
}

.portfolio-nav-next {
	right: 0;
}

.portfolio-count-row {
	margin-top: 1rem;
}

.portfolio-count {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--vv-teal);
}

.portfolio-hint {
	margin: 0;
	font-size: 0.92rem;
	color: var(--vv-ink-soft);
}

.portfolio-hint-mobile {
	display: none;
}

.portfolio-swipe-cue {
	display: none;
}


.about-layout {
	display: flex;
	align-items: center;
	gap: 2.25em;
}

.profile-orb {
	flex: 0 0 15em;
	width: 15em;
	height: 15em;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.34);
	box-shadow: 0 20px 40px rgba(7, 21, 20, 0.16);
	backdrop-filter: blur(18px);
}

.profile-orb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-copy {
	flex: 1 1 auto;
}

.about-copy .button {
	margin-top: 0.5em;
}

#footer {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.8em;
}

#footer a {
	color: rgba(223, 246, 237, 0.92);
}

#footer .copyright {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85em;
}

#footer .copyright li {
	border-left-color: rgba(255, 255, 255, 0.3);
}

body.artist-detail-page #wrapper {
	width: min(78em, calc(100% - 3em));
}

body.artist-detail-page #main {
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
}

body.artist-detail-page #main>.panel.detail-panel {
	background: var(--vv-paper);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 2em;
	backdrop-filter: blur(18px);
	box-shadow: var(--vv-shadow);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  gap: 20px;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: 1em;
	padding: 5%;
}

.detail-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 1em;
}



.detail-stage {
	position: relative;
	padding: 2rem;
	border-radius: 1.75em;
	overflow: hidden;
	background-image:
		linear-gradient(180deg, rgba(7, 21, 20, 0.18), rgba(7, 21, 20, 0.52)),
		var(--detail-cover);
	background-size: cover;
	background-position: center;
	box-shadow: 0 24px 46px rgba(7, 21, 20, 0.16);
}

.detail-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(223, 246, 237, 0.24), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
	pointer-events: none;
}

.detail-stage>* {
	position: relative;
	z-index: 1;
}

.detail-header {
	max-width: 46rem;
	margin-bottom: 1.6rem;
}

.detail-header h1,
.detail-header .panel-copy,
.detail-header .section-kicker {
	color: #ffffff;
}

.hero-panel h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

.hero-panel p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.eyebrow {
  font-size: clamp(0.7rem, 1vw, 0.85rem);
}

.detail-header .section-kicker {
	background: rgba(255, 255, 255, 0.16);
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
}

.detail-header .panel-copy {
	max-width: 38rem;
}




.detail-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 120%;
	height: 100%;
	background: linear-gradient(120deg,
			transparent,
			rgba(0, 255, 200, 0.3),
			transparent);
	transition: 0.6s;
}

/* Moving background effect */
body {
	background-size: 400% 400%;
	animation: backgroundDrift 60s infinite ease-in-out;
}

/* Animation for slow movement */
@keyframes backgroundDrift {
	0% {
		background-position: 50% 50%;
	}

	50% {
		/* Move it only slightly (e.g., 55% or 60%) */
		background-position: 80% 50%;
	}

	100% {
		background-position: 50% 50%;
	}
}

.detail-card:hover::after {
	left: 120%;
}

.detail-card {
  width: 100%;
  max-width: 260px;
  display: block;
  padding: 1.25em;

  background: rgba(0, 0, 0, 0.144);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.45em;

  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);

  text-decoration: none;
  color: inherit;
	position: relative;
	overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

/* Music studio glow hover */
.detail-card:hover {
	transform: scale(1.05) translateY(-6px);
	box-shadow:
		0 0 10px rgba(0, 255, 200, 0.4),
		0 0 25px rgba(0, 255, 200, 0.25),
		0 15px 40px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(0, 255, 200, 0.6);
}


.detail-card p {
	color: #ffffff;
	margin: 0.5em 0 0;
}

.platform-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.55em;
}



.platform-card img {
	max-width: 120px;
	height: auto;
	display: block;
}

.detail-card h3 {
	margin: 0.5em 0 0.2em 0;
	color: #ffffff;
}

.platform-card h3 {
	margin-bottom: 0.4em;
}

.platform-card p {
	margin-bottom: 0;
}

.platform-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	margin-bottom: 0.15em;
	filter: drop-shadow(0 10px 20px rgba(7, 21, 20, 0.14));
}

.platform-logo svg {
	display: block;
	width: 100%;
	height: 100%;
}

.platform-card:hover {
	transform: translateY(-2px);
}

.detail-actions {
	margin-top: 2.25rem;
}

.mini-note {
	margin-top: 1.5em;
	font-size: 0.92em;
}

.back-link {
	padding: 0.95rem 2.5rem;
}

@media screen and (max-width: 980px) {

	#wrapper,
	body.artist-detail-page #wrapper {
		width: min(100% - 2.25em, 78em);
		max-width: min(100% - 2.25em, 78em);
	}

	#nav {
		top: 0.9em;
	}

	.portfolio-guidance {
		flex-direction: column;
		align-items: flex-start;
	}

	.about-layout {
		flex-direction: column;
		text-align: center;
	}

	.detail-stage {
		padding: 1.5rem;
	}

	.close-btn {
		top: 0.45rem;
		right: -0.9rem;
		left: auto;
		width: 2.6rem;
		height: 2.6rem;
		font-size: 2.5rem;
	}

	.portfolio-carousel {
		padding: 0 4rem;
	}

	.portfolio-slide {
		grid-template-columns: 1fr;
	}

}

@media screen and (max-width: 736px) {

	#wrapper,
	body.artist-detail-page #wrapper {
		width: min(100% - 1.2em, 78em);
		max-width: min(100% - 1.2em, 78em);
		padding-top: 0.9em;
	}

	#nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.45em;
		width: min(100%, 24rem);
		max-width: 100%;
		padding: 0.6em;
		border-radius: 1.7em;
	}

	#nav a {
		width: 100%;
		margin: 0;
		padding: 0.78em 0.9em;
		font-size: 0.9rem;
		justify-content: center;
		min-width: 0;
	}

	#nav a span {
		font-size: 0.76rem;
		letter-spacing: 0.08em;
		white-space: nowrap;
	}

	#main {
		border-radius: 1.4em;
	}

	#main>.panel.intro {
		min-height: 0;
	}

	#main>.panel.intro header {
		text-align: left;
	}

	#main>.panel.intro .pic {
		background: rgba(255, 255, 255, 0.12);
		width: calc(100% - 2.4rem);
		max-width: calc(100% - 2.4rem);
		height: 16.5rem;
		margin: 0 auto 1.2rem;
	}

	#main>.panel.intro .pic img {
		top: 0;
		left: 0;
		right: auto;
		bottom: auto;
		width: 100%;
		height: 100%;
		max-width: none;
		max-height: none;
		min-height: 0;
		object-fit: cover;
		transform: none;
	}

	.service-actions {
		flex-direction: column;
	}

	.close-btn {
		top: -2.8rem;
		right: 0.15rem;
		left: auto;
	}

	.service-actions .button {
		width: 100%;
	}

	.portfolio-carousel {
		padding: 0;
	}

	.portfolio-nav {
		display: none;
	}

	.portfolio-slide {
		padding: 1.1rem;
		gap: 1.15rem;
	}

	.portfolio-guidance {
		align-items: flex-start;
	}

	.portfolio-hint-desktop {
		display: none;
	}

	.portfolio-hint-mobile {
		display: block;
	}

	.portfolio-swipe-cue {
		position: absolute;
		left: 50%;
		top: clamp(5.5rem, 24vw, 7.5rem);
		bottom: auto;
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		padding: 0.4rem 0.75rem;
		border-radius: 999px;
		background: rgba(0, 0, 0, 0.55); /* darker glass */
		border: 1px solid rgba(255, 255, 255, 0.14);
		color: #ffffff; /* solid white */
		font-size: 0.66rem;
		font-weight: 800;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		backdrop-filter: blur(8px);
		pointer-events: none;
		opacity: 1; /* don’t start faded */
		transform: translateX(-50%);
		transition: opacity 0.35s ease, transform 0.35s ease;
		animation: swipeCueNudge 1.8s ease-in-out infinite;
		z-index: 3;
	}

	.portfolio-swipe-cue-text,
	.portfolio-swipe-cue-arrow {
		display: inline-block;
	}

	.portfolio-swipe-cue-arrow {
		font-size: 0.8rem;
		line-height: 1;
	}

	.portfolio-swipe-cue.is-dismissed {
		opacity: 0;
		transform: translateX(-50%) translateY(0.4rem);
		animation: none;
	}

	.profile-orb {
		width: 12em;
		height: 12em;
		flex-basis: 12em;
	}

	.detail-stage {
		padding: 1.2rem;
	}

	#footer .copyright {
		flex-direction: column;
	}

	#footer .copyright li {
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
	}

}

@keyframes swipeCueNudge {
	0%, 100% {
		transform: translateX(-50%);
		opacity: 0.75;
	}
	50% {
		transform: translateX(calc(-50% + 0.4rem));
		opacity: 1;
	}
}

.cover-wrapper:active {
    cursor: grabbing; /* Feedback when clicking down to swipe */
}

/* Base style for the album card (img) */
.cover-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-out,
                opacity 0.3s ease-out,
                filter 0.3s ease-out;
}

/* 1. Default state: Arrows are VISIBLE (for Desktop and Large Tablets) */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 3.6rem;
    font-weight: 300;
    width: auto;
    height: auto;
    display: block;
    cursor: pointer;
    line-height: 1;
    padding: 0.05em 0.15em;
    text-shadow:
        0 10px 24px rgba(0, 0, 0, 0.42),
        0 0 18px rgba(108, 205, 208, 0.24);
    z-index: 1010;
    transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.nav-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    text-shadow:
        0 14px 28px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(108, 205, 208, 0.34);
}

/* Floating arrows outside the art on desktop */
.nav-btn.prev { left: -84px; }
.nav-btn.next { right: -84px; }

@media screen and (max-width: 840px) {
    .nav-btn {
        display: none;
    }

    .cover-wrapper {
        max-width: 90%;
    }
}

/* ========================================= */
/* --- NEW CARD SWIPE ANIMATIONS --- */
/* ========================================= */

/* State 1: Card sliding out to the left (Next) */
.slide-out-left {
    transform: translateX(-100%) rotate(-10deg) scale(0.9);
    filter: blur(5px);
    opacity: 0;
}

/* State 2: Card sliding in from the right (Next) */
.slide-in-right {
    transform: translateX(100%);
    opacity: 0;
}

/* State 3: Card sliding out to the right (Previous) */
.slide-out-right {
    transform: translateX(100%) rotate(10deg) scale(0.9);
    filter: blur(5px);
    opacity: 0;
}

/* State 4: Card sliding in from the left (Previous) */
.slide-in-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* State 5: The default, visible resting state */
.card-reset {
    transform: translateX(0) rotate(0deg) scale(1);
    filter: blur(0px);
    opacity: 1;
}

.album-track-panel {
	will-change: transform, opacity, filter;
	transition:
		transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.24s ease,
		opacity 0.24s ease;
}

.ab-cover-player {
	text-align: center;
}

.cover-container {
	position: relative;
	width: 100%;
	max-width: 350px;
	margin: auto;
}

.ab-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
}

.side {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: all .25s ease;
}

.side-a {
	background: rgba(255, 140, 0, .25);
	color: #ff8a00;
}

.side-b {
	background: rgba(80, 160, 255, .25);
	color: #5bb8ff;
}

.side.active {
	background: rgba(0, 0, 0, .45);
}

.play-btn {
	margin-top: 15px;
	padding: .6em 1.6em;
	border: none;
	border-radius: 8px;
	background: #222;
	color: white;
	font-size: 1em;
	cursor: pointer;
}

/* Prevent blue selection highlighting */
.cover-wrapper,
.ab-toggle-btn,
.play-circle {
	user-select: none;
	-webkit-user-select: none;
}

/* Modal Content Layout */
.ab-player {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 20px;
}

.ab-player p {
    text-align: center;
    width: 100%;
    margin-top: 25px; /* Adjust spacing as needed */
}

/* Overlay Container */
.cover-wrapper {
	position: relative;
    width: 80%;
	max-width: 400px;
	aspect-ratio: 1 / 1; /* 🔥 forces perfect square */
	height: 80%;
    margin: 0 auto;
    overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.art-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-container {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.ab-toggle-btn{
width:100%;
padding:12px 0;
border:none;
background:rgba(0,0,0,0.45);
color:#fff;
font-weight:600;
letter-spacing:2px;
cursor:pointer;
text-align:center;
transition:background .25s ease;
}

.ab-toggle-btn.active{
background:rgba(255,255,255,0.9);
color:#000;
}

.ab-toggle-btn{
box-sizing:border-box;
overflow:hidden;
white-space:nowrap;
}

/* Side A (Orange) */
.btn-a.active {
	background: rgba(255, 122, 0, 0.4);
	border-bottom: 6px solid #ff7a00;
}

/* Side B (Blue) */
.btn-b.active {
	background: rgba(0, 140, 255, 0.4);
	border-bottom: 6px solid #008cff;
}

/* Stylized Play Button */
.play-circle {
	min-width: 4.75rem;
	height: 4.25rem;
	padding: 0 1.35rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	background: linear-gradient(135deg, rgba(108, 205, 208, 0.22), rgba(255, 255, 255, 0.08));
	color: #fff;
	font-size: 1.65rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(14px);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
	margin-top: 1rem;
}

.play-circle:hover {
	transform: translateY(-2px) scale(1.03);
	background: linear-gradient(135deg, rgba(108, 205, 208, 0.32), rgba(255, 255, 255, 0.14));
	box-shadow:
		0 18px 34px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.play-circle.playing {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 246, 237, 0.88));
	border-color: rgba(255, 255, 255, 0.85);
	color: var(--vv-ink);
}


.library-label {
	position: relative;
	z-index: 10;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}


/* 2. The Full-Size Background Image */
.library-card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Fills the box and cuts off the excess */
	z-index: 1;
	opacity: 0.5;
	/* Dimmed slightly so the text is readable */
	filter: grayscale(20%);
	/* Adds to that nostalgic, organic vibe */
	transition: all 0.6s ease;
}



/* 4. Hover State: "Focus" Effect */
.library-card:hover {
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.library-card:hover img {
	opacity: 0.8;
	/* Image "wakes up" on hover */
	transform: scale(1.1);
	/* Subtle zoom within the clipped rectangle */
	filter: grayscale(0%);
}

.library-card:hover .library-label {
	letter-spacing: 0.5em;
	/* Text expands slightly */
}

.audio-wave-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('images/Producer.jpg');
	/* Ensure this matches your path */
	background-size: cover;
	background-position: center;
	transform: scale(1.1);
	/* Adds a 10% buffer so it doesn't show edges */
	z-index: -1;
	animation: slowPan 20s infinite alternate ease-in-out;
}

/* 2. Style the button and remove all lines */
.button.back-link {
	display: inline-block;
	text-align: center;

	/* KILL THE UNDERLINE */
	text-decoration: none !important;
	border-bottom: none !important;
	/* Templates often use this for the line */
	outline: none;
}

/* 3. Ensure no hidden lines from template effects */
.button.back-link::before,
.button.back-link::after {
	display: none !important;
}

/* --- Centering Folder Titles (Production, etc.) --- */
.library-card {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	position: relative;
	height: 250px;
	width: 100%;
	overflow: hidden;
	text-decoration: none !important;
	border-radius: 12px;
}

.library-label {
	position: relative;
	z-index: 10;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

/* --- Centering the Back Button & Removing Underline --- */
ul.detail-actions {
	display: flex !important;
	justify-content: center !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 4rem 0 0 0 !important;
	width: 100% !important;
}

.back-link {
	text-decoration: none !important;
	border-bottom: none !important;
	/* Removes the template's fake underline */
	display: inline-block !important;
}

.back-link::after,
.back-link::before {
	display: none !important;
	/* Kills any hidden template lines */
}

/* Container for the image */
.card-image-wrapper {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

/* The Play Button Overlay - Always Visible */
.play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(128, 128, 128, 0.116);
	/* Soft constant dim to make the button pop */
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	/* Always visible */
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The Single Play Icon */
.play-overlay::after {
	content: "▶";
	color: #fff;
	font-size: 3.5rem;
	filter: drop-shadow(0 0 15px rgba(27, 27, 27, 0.6));
	transform: scale(0.8);
	/* Starting size */
	transition: transform 0.3s ease;
}

/* Hover Effect: Enlarge the Button */
.detail-card:hover .play-overlay {
	background: rgba(63, 63, 63, 0.329);
	/* Darken slightly more on hover */
}

.detail-card:hover .play-overlay::after {
	transform: scale(1.1);
	/* Enlarges on hover */
}

.modal-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.counter-text {
    font-size: 0.8rem;
    opacity: 0.4;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.platform-links {
    display: flex;
    gap: 20px; /* Space between the two logos */
    justify-content: center;
    align-items: center;
}

.platform-icon img {
    height: 24px; /* Adjust size as needed */
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* Dropdown container */
.platform-dropdown {
  margin-top: 2rem;
  text-align: center;
}

/* Button */
.dropdown-toggle {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  margin-top: 1rem;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

/* Links */
.dropdown-menu a {
  display: block;
  padding: 0.75rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.dropdown-menu a:hover {
  background: #333;
}

/* Show menu when active */
.platform-dropdown.active .dropdown-menu {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
	.fade-up,
	.fade-up.active {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
	background: #e3e8e6;
	border: 1px solid rgba(40, 74, 71, 0.15);
	color: var(--vv-ink);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
	background: #edf1f0;
}

form ::placeholder {
	color: rgba(40, 74, 71, 0.6);
}

  
