/* Font face declaration for PlaywriteTZ */
@font-face {
    font-family: 'PlaywriteTZ';
    src: url('fonts/PlaywriteTZ-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 400;
    font-style: normal;
    font-display: swap;
}

/* Base styles and cross-browser compatibility */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styles for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 5px;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Dark theme scrollbar for Webkit */
.dark-theme::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
}

.dark-theme::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.25);
}

/* Firefox scrollbar styles */
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.05);
}

.dark-theme * {
	scrollbar-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.05);
}

.uta-theme * {
	scrollbar-color: rgba(208, 225, 249, 0.15) rgba(12, 26, 42, 0.05);
}

/* Firefox-specific fixes */
@-moz-document url-prefix() {
	/* Fix for backdrop-filter in Firefox */
	.streaming-modal,
	.streaming-popup,
	.coming-soon-modal,
	.coming-soon-popup,
	.theme-switch,
	.latest-release {
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	/* Fix for gradient text in Firefox */
	.profile-section h1,
	.release-details h3,
	.theme-switch i {
		background-clip: text;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		color: transparent;
	}

	/* Fix for SVG scaling in Firefox */
	.profile-as-logo-svg {
		transform: scale(1.6);
		-moz-transform: scale(1.6);
	}

	/* Fix for flex layout in Firefox */
	.link-item {
		display: flex;
		align-items: center;
	}
}

/* Safari-specific fixes */
@supports (-webkit-touch-callout: none) {
	/* Fix for backdrop-filter in Safari */
	.streaming-modal,
	.streaming-popup,
	.coming-soon-modal,
	.coming-soon-popup,
	.theme-switch,
	.latest-release {
		-webkit-backdrop-filter: blur(10px);
	}

	/* Fix for gradient text in Safari */
	.profile-section h1,
	.release-details h3,
	.theme-switch i {
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	/* Fix for transitions in Safari */
	.link-item,
	.streaming-link,
	.theme-switch,
	.countdown-block {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	/* Fix for flex layout in Safari */
	.link-item {
		display: -webkit-flex;
		-webkit-align-items: center;
	}
}

/* Fix for :has() selector alternative */
.platform-links:last-child,
.social-links:last-child {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

/* Fix for CSS Grid in Safari */
@supports (-webkit-touch-callout: none) {
	.platform-links,
	.social-links {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1rem;
		width: 100%;
	}
}

/* Fix for animations in Safari */
@-webkit-keyframes fadeInScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.9) translateY(10px);
		transform: scale(0.9) translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}
}

/* Ensure proper text rendering */
.link-label,
.link-subtext,
.countdown-value,
.countdown-label {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Fix for backdrop blur performance */
.streaming-modal,
.streaming-popup,
.coming-soon-modal,
.coming-soon-popup,
.theme-switch,
.latest-release {
	transform: translateZ(0);
	will-change: backdrop-filter;
}

/* Fix for gradient text rendering */
.profile-section h1,
.release-details h3,
.theme-switch i {
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	text-fill-color: transparent !important;
}

/* Fix for transitions */
.theme-transition,
.link-item,
.streaming-link,
.theme-switch,
.countdown-block {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
}

/* Fix for hover effects */
.link-item::before {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: opacity;
}

/* Fix for SVG rendering in Firefox */
.profile-as-logo-svg {
	transform: scale(1.6);
	-webkit-transform: scale(1.6);
	-moz-transform: scale(1.6);
}

/* Fix for loading animation in Safari */
.loading-overlay {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: opacity;
}

/* Fix for modal animations */
.streaming-modal.active,
.coming-soon-modal.active {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: opacity;
}

/* Fix for button hover states */
.action-button,
.theme-switch,
.copy-link {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
}

/* Close button styles */
.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3sease;
	margin: -5px;
}
.close-modal i {
	color: rgba(255, 255, 255, 0.8);
	font-size: 24px;
	transition: color 0.3s ease, transform 0.3s ease;
}
.close-modal:hover i {
	color: white;
	transform: scale(1.1);
}
/* Remove old close button styles */
.close-modal::before, .close-modal::after {
	display: none;
}
/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    background: var(--bg-gradient-al-as);
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-overlay.permanent {
    opacity: 1 !important;
    pointer-events: all !important;
}

.loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.loading-background {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 150px;
    opacity: 0;
    animation: fadeIn 0.2s ease forwards;
    pointer-events: none;
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.2s ease forwards 0.1s;
}

.loading-bar {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transform-origin: left;
    animation: loadProgress 0.6s cubic-bezier(0.2, 0, 0.1, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadProgress {
    0% {
        transform: scaleX(0);
    }
    60% {
        transform: scaleX(0.6);
    }
    100% {
        transform: scaleX(1);
    }
}

.dark-theme .loading-overlay {
    background: var(--bg-gradient-al-as);
}

.uta-theme .loading-overlay {
    background: var(--bg-gradient-uta);
}

.dark-theme .loading-background {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
}

.uta-theme .loading-background {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
}

.loader {
	width: 48px;
	height: 48px;
}
@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* Logo Animation Styles */
.logo-animation {
    transform: scale(0.8);
    opacity: 0;
    animation: logoReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes logoReveal {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-animation.profile-position {
    transform: scale(1) translate(var(--target-x), var(--target-y));
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.as-logo {
    width: 140px;
    height: auto;
    opacity: 0;
    filter: brightness(1);
    animation: showLogo 0.5s ease-out forwards, pulseLogo 2s ease-in-out infinite 0.5s;
    transform-origin: center;
}

@keyframes showLogo {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseLogo {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0));
        transform: scale(1);
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
        transform: scale(1.02);
    }
}

.dark-theme .as-logo {
    animation: showLogo 0.5s ease-out forwards, pulseDarkLogo 2s ease-in-out infinite 0.5s;
}

@keyframes pulseDarkLogo {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0));
        transform: scale(1);
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
        transform: scale(1.02);
    }
}

.uta-theme .as-logo {
    animation: showLogo 0.5s ease-out forwards, pulseUtaLogo 2s ease-in-out infinite 0.5s;
}

@keyframes pulseUtaLogo {
    0%, 100% {
        filter: brightness(0.95) drop-shadow(0 0 20px rgba(208, 225, 249, 0)) saturate(0.95);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.05) drop-shadow(0 0 30px rgba(208, 225, 249, 0.3)) saturate(1.1);
        transform: scale(1.02);
    }
}
.profile-logo-container {
	width: 140px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 140px;
	width: 100%;
}
.profile-logo-container.show {
	opacity: 1;
}
.profile-as-logo-svg {
	transform: scale(1.6);
}
.profile-logo-container .profile-as-logo {
	position: relative;
	width: 100%;
	height: auto;
	max-width: 120px;
	transform: scale(1);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Larger screens */
@media (min-width: 768px) {
	.profile-logo-container {
		max-width: 180px;
	}
	.profile-logo-container .profile-as-logo-svg {
		max-width: 160px;
		transform: scale(1.6);
	}
}
/* Extra large screens */
@media (min-width: 1200px) {
	.profile-logo-container {
		max-width: 220px;
	}
	.profile-logo-container .profile-as-logo-svg {
		max-width: 200px;
		transform: scale(1.6);
	}
}
.profile-as-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 40px;
	fill: none;
	stroke: var(--text-default);
	stroke-width: 1.5;
	stroke-dasharray: 200;
	stroke-dashoffset: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dark-theme .profile-as-logo {
	filter: brightness(1);
}
.uta-theme .profile-as-logo {
    stroke: var(--text-uta);
    fill: transparent;
    filter: drop-shadow(0 2px 12px rgba(208, 225, 249, 0.3));
    animation: fillLogoUta 1.5s ease-out forwards 0.5s;
}
@keyframes drawLogo {
	from {
		stroke-dashoffset: 200;
	}
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes fillLogo {
	from {
		fill: transparent;
	}
	to {
		fill: var(--text-default);
	}
}
@keyframes fillLogoDark {
	from {
		fill: transparent;
	}
	to {
		fill: var(--text-al-as);
	}
}
@keyframes fillLogoUta {
	from {
		fill: transparent;
	}
	to {
		fill: var(--text-uta);
	}
}
@keyframes waitABit {
	from {
		opacity: 1;
	}
	to {
		opacity: 1;
	}
}
@keyframes revertFill {
	from {
		fill: var(--text-default);
	}
	to {
		fill: transparent;
	}
}
@keyframes revertFillDark {
	from {
		fill: var(--text-dark);
	}
	to {
		fill: transparent;
	}
}
@keyframes revertDraw {
	from {
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: 200;
	}
}
:root {
	/* Add grain pattern as a variable */
	--grain-pattern: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
	
	/* Default theme (light) */
	--bg-gradient-default: linear-gradient(180deg, #716a5c, #544d41);
	--surface-default: rgba(255, 255, 255, 0.1);
	--border-default: rgba(255, 255, 255, 0.2);
	--text-default: #f1e9db;
	--text-secondary-default: rgba(241, 233, 219, 0.7);
	/* AL-AS theme (dark) */
	--bg-gradient-al-as: linear-gradient(135deg, #1a1a1a, #2d2d2d);
	--surface-al-as: rgba(255, 255, 255, 0.05);
	--border-al-as: rgba(255, 255, 255, 0.1);
	--text-al-as: #ffffff;
	--text-secondary-al-as: rgba(255, 255, 255, 0.7);
	/* Uta theme (dark blue) */
	--bg-gradient-uta: linear-gradient(135deg, #05101f, #0f1a29);
	--surface-uta: rgba(255, 255, 255, 0.07);
	--border-uta: rgba(255, 255, 255, 0.15);
	--text-uta: #d0e1f9;
	--text-secondary-uta: rgba(208, 225, 249, 0.7);
	
	/* Fine-tune grain patterns for each theme */
	--grain-light: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
	--grain-al-as: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
	--grain-uta: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
}
.theme-preload * {
	transition: none !important;
}
/* Root element needs to allow scrolling */
html, body {
	min-height: 100%;
	margin: 0;
	padding: 0;
}
.links-page {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	padding: 40px 20px;
	position: relative;
	color: var(--text-default);
	transition: background-color 0.5s ease, color 0.3s ease;
}
.links-page::before, .links-page::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	transition: opacity 0.5s ease, background-image 0.5s ease;
	z-index: -1;
}
.links-page::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"), var(--bg-gradient-default);
    background-size: 150px, 100%;
	opacity: 1;
}
.links-page::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"), var(--bg-gradient-al-as);
    background-size: 150px, 100%;
	opacity: 0;
}
.al-as-theme.links-page::before {
    opacity: 0;
}
.al-as-theme.links-page::after {
    opacity: 1;
}

.al-as-theme .links-page::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"), var(--bg-gradient-al-as);
    background-size: 150px, 100%;
}

body.al-as-theme.links-page::before {
    opacity: 0 !important;
}

body.al-as-theme.links-page::after {
    opacity: 1 !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E"), var(--bg-gradient-al-as) !important;
    background-size: 150px, 100%;
}
.dark-theme.links-page::before {
    opacity: 0;
}
.dark-theme.links-page::after {
    opacity: 1;
}
.links-page.uta-theme::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.2'/%3E%3C/svg%3E"), var(--bg-gradient-uta);
    background-size: 120px, 100%;
	opacity: 1;
}
.links-container {
	max-width: 760px;
	width: 100%;
	margin: auto;
	padding: 20px;
	position: relative;
	opacity: 0;
	animation: fadeIn 0.3s ease-out forwards 0.2s;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
.links-container.loaded {
	visibility: visible;
	opacity: 1;
}
.profile-section {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	animation: fadeInScale 0.6s ease-out forwards;
}
.profile-image {
	width: 140px;
	height: 140px;
	border-radius: 30px;
	margin-bottom: 20px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
}
.profile-section h1 {
	font-family: 'PlaywriteTZ', 'Poppins', sans-serif;
	font-size: 38px;
	background: linear-gradient(to right, #f1e9db, rgba(241, 233, 219, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 8px;
	font-weight: 300;
}
.dark-theme .profile-section h1 {
	background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bio {
	color: rgba(255, 255, 255, 0.7);
	font-size: 17px;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}
.profile-website {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}
.profile-website:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}
.profile-website i {
	font-size: 12px;
	opacity: 0.7;
}
@media (max-width: 480px) {
	.profile-website {
		padding: 6px 14px;
		font-size: 13px;
	}
}
.links-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}
.link-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 16px 20px;
	background: var(--surface-default);
	border-color: var(--border-default);
	color: var(--text-default);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}
.dark-theme .link-item {
	background: var(--surface-dark);
	border-color: var(--border-dark);
}
.uta-theme .link-item {
	background: var(--surface-uta);
	border-color: var(--border-uta);
	color: var(--text-uta);
}
.link-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 1;
	border-radius: inherit;
}
.link-item:hover::before {
	opacity: 1;
}
.link-item:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}
.dark-theme .link-item:hover {
	background: rgba(241, 233, 219, 0.15);
	border-color: rgba(241, 233, 219, 0.3);
}
.uta-theme .link-item:hover {
	background: rgba(208, 225, 249, 0.15);
	border-color: rgba(208, 225, 249, 0.3);
}
.link-item i {
	font-size: 22px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
	min-width: 36px;
	margin-right: 4px;
}
.link-item:hover i {
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.15);
}
.custom-icon {
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.link-item:hover .custom-icon {
	transform: scale(1.1);
	opacity: 1;
}
.streaming-link .custom-icon {
	width: 26px;
	height: 26px;
}
/* Update custom icon styles */
.link-icon .custom-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
	transition: all 0.3s ease;
}
/* Add background circle for custom icons */
.link-icon:has(.custom-icon) {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.link-item:hover .link-icon:has(.custom-icon) {
	background: rgba(255, 255, 255, 0.15);
	transform: scale(1.1);
}
/* Adjust streaming modal custom icons */
.streaming-link .custom-icon {
	height: 24px;
	margin: 0 6px;
}
/* Copy link button styles */
.copy-link {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
	backdrop-filter: blur(5px);
}
.link-item:hover .copy-link {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}
.copy-link:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.9);
	transform: translateY(-50%) scale(1.1);
}
/* Update copy link icon styles */
.copy-link i {
	font-size: 14px;
	width: auto;
	height: auto;
	min-width: auto;
	background: none !important;
	/* Force remove background */
	margin: 0;
	color: inherit;
}
.dark-theme .copy-link {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}
.dark-theme .copy-link:hover {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 480px) {
	.copy-link {
		width: 28px;
		height: 28px;
		right: 12px;
	}
	.copy-link i {
		font-size: 12px;
	}
}
/* Success state animation */
@keyframes copySuccess {
	0% {
		transform: translateY(-50%) scale(1);
	}
	50% {
		transform: translateY(-50%) scale(1.2);
	}
	100% {
		transform: translateY(-50%) scale(1);
	}
}
.copy-link.copied {
	animation: copySuccess 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(46, 213, 115, 0.15);
	border-color: rgba(46, 213, 115, 0.3);
	color: #2ed573;
}
.dark-theme .copy-link.copied {
	background: rgba(46, 213, 115, 0.2) !important;
	border-color: rgba(46, 213, 115, 0.4) !important;
	color: #2ed573;
}
.latest-release {
	margin: 40px 0;
	padding: 30px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	transform: translateY(0);
	transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.dark-theme .latest-release {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
}
.latest-release:hover {
	transform: translateY(-5px);
}
.release-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}
.release-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	background: var(--surface-default);
	border: 1px solid var(--border-default);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-default);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	transform-origin: left;
	will-change: transform, background-color, border-color;
}
.dark-theme .release-badge {
	background: var(--surface-dark);
	border-color: var(--border-dark);
	color: var(--text-dark);
}
.release-badge i {
	font-size: 16px;
	color: var(--text-default);
	opacity: 0.9;
}
.release-type {
	display: flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 6px 12px;
	background: var(--surface-default);
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-default);
	margin-left: auto;
	transition: all 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	transform-origin: right;
	will-change: transform, background-color, border-color;
}
.dark-theme .release-type {
	background: var(--surface-dark);
	border-color: var(--border-dark);
	color: var(--text-dark);
}
.release-type i {
	font-size: 12px;
	opacity: 0.8;
}
.release-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}
.release-artwork {
    position: relative;
    width: 280px;
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
}
.artwork-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.artwork-reflection {
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: 20px;
    transform: perspective(1000px) rotateX(180deg) translateY(60%);
    opacity: 0.1;
    filter: blur(10px);
    mask-image: linear-gradient(transparent, white);
    -webkit-mask-image: linear-gradient(transparent, white);
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.release-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.release-details h3 {
    font-family: 'PlaywriteTZ', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 300;
    background: linear-gradient(to right, #f1e9db, rgba(241, 233, 219, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.3s ease, -webkit-background-clip 0.3s ease, -webkit-text-fill-color 0.3s ease;
}
.dark-theme .release-details h3 {
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.release-meta {
    display: flex;
    gap: 16px;
    margin-top: 5px;
    align-items: center;
}
.release-meta span {
    width: auto;
    justify-content: flex-start;
}
.release-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}
.release-actions .action-button {
    width: auto;
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .release-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .release-artwork {
        width: 220px;
        margin: 0 auto;
    }
    .release-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .release-meta span {
        width: 100%;
        justify-content: center;
    }
    .release-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .release-actions .action-button {
        width: 100%;
        justify-content: center;
    }
}
.release-info-mini {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-default);
	transition: all 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	transform-origin: center;
	will-change: transform, background-color, border-color;
	width: 100%;
}
.dark-theme .release-info-mini {
	background: var(--surface-dark);
	border-color: var(--border-dark);
	color: var(--text-dark);
}
.release-info-mini i {
	font-size: 14px;
	opacity: 0.8;
	transition: transform 0.3s ease;
}
.release-info-mini:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}
.dark-theme .release-info-mini:hover {
	background: rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
	.release-info-mini {
		text-align: center;
		justify-content: center;
	}
}
.release-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	font-size: 15px;
	transition: color 0.3s ease;
}
.release-actions {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}
.action-button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	background: var(--surface-default);
	border-color: var(--border-default);
	color: var(--text-default);
}
/* Rework stream now button */
.stream-now {
	background: linear-gradient(135deg, #f1e9db, #e5d9c5);
	color: #544d41;
	border: none;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease, transform 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	/* Ensure proper alignment with flex properties */
	align-items: center;
}
.stream-now::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.stream-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(84, 77, 65, 0.5);
}
.stream-now:hover::before {
	opacity: 1;
}
.stream-now:active {
	transform: translateY(0);
}
.dark-theme .stream-now {
	background: linear-gradient(135deg, #ffffff, #f5f5f5);
	color: #1a1a1a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dark-theme .stream-now:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.dark-theme .stream-now::before {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
}
.share-release {
	background: transparent;
	color: var(--text-default);
	border: 1px solid var(--border-default);
}
.share-release:hover {
	background: var(--surface-default);
	border-color: var(--border-default);
}
.dark-theme .share-release {
	color: var(--text-dark);
	border-color: var(--border-dark);
}
.dark-theme .share-release:hover {
	background: var(--surface-dark);
	border-color: var(--border-dark);
}
@media (min-width: 768px) {
	.release-showcase {		
		gap: 30px;
		text-align: center;
	}
	.release-artwork {
		width: 220px;
		margin: 0 auto;
	}
	.release-meta {
		justify-content: center;
	}
	.release-actions {
		justify-content: center;
	}
}
.release-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	color: white;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
	backdrop-filter: blur(5px);
}
.release-label i {
	font-size: 14px;
	opacity: 0.8;
}
.link-item.featured {
	padding: 0;
	overflow: hidden;
	position: relative;
	aspect-ratio: 16/9;
	background: rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}
.link-item.featured:hover {
	transform: translateY(-3px);
}
.link-item.featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.link-item.featured:hover img {
	transform: scale(1.05);
}
.release-info {
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	text-align: left;
	transform: translateY(0);
	transition: transform 0.3s ease;
}
.release-info h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.4s ease;
}
.release-info p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease 0.1s;
	display: flex;
	align-items: center;
	gap: 8px;
}
.release-info p i {
	font-size: 14px;
	opacity: 0.8;
}
.link-item.featured:hover .release-info h3, .link-item.featured:hover .release-info p {
	opacity: 1;
	transform: translateY(0);
}
.platform-links, .social-links, .uta-teaser-section {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.uta-teaser-section {
    margin: 0 0 40px;
}

.link-item.uta-teaser {
    background: rgba(5, 16, 31, 0.4);
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.link-item.uta-teaser::before,
.link-item.uta-teaser::after {
    content: '';
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-item.uta-teaser::before {
    inset: 0;
    border: 1px solid rgba(208, 225, 249, 0.15);
    opacity: 0.7;
}

.link-item.uta-teaser::after {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(208, 225, 249, 0.2),
        transparent
    );
    transform: translateY(-1px);
    opacity: 0;
}

.link-item.uta-teaser:hover {
    background: rgba(13, 26, 42, 0.6);
    transform: translateY(-2px);
}

.link-item.uta-teaser:hover::before {
    border-color: rgba(208, 225, 249, 0.25);
    opacity: 1;
}

.link-item.uta-teaser:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.link-item.uta-teaser .link-content {
    text-align: center;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.link-item.uta-teaser .link-label {
    color: rgba(208, 225, 249, 0.95);
    font-family: "Courier New", monospace;
    font-size: 1.2em;
    letter-spacing: 3px;
    display: block;
    font-weight: 500;
    transition: color 0.5s ease;
    margin: 0;
}

.link-item.uta-teaser:hover .link-label {
    color: rgba(208, 225, 249, 1);
}

.link-item.uta-teaser .link-subtext {
    color: rgba(208, 225, 249, 0.5);
    font-size: 0.85em;
    letter-spacing: 4px;
    font-family: "Courier New", monospace;
    position: relative;
    transition: color 0.5s ease;
}

.link-item.uta-teaser:hover .link-subtext {
    color: rgba(208, 225, 249, 0.7);
}

@media (max-width: 480px) {
    .link-item.uta-teaser {
        padding: 20px 16px;
    }
    
    .link-item.uta-teaser .link-label {
        font-size: 1.1em;
        letter-spacing: 2px;
    }
    
    .link-item.uta-teaser .link-subtext {
        letter-spacing: 3px;
    }
}
@media (min-width: 480px) {
	.platform-links, .social-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}
.links-footer {
	margin-top: 60px;
	padding: 25px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-content {
	text-align: center;
	position: relative;
	z-index: 1;
}
.footer-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.footer-logo {
	font-size: 24px;
	font-weight: 700;
	color: white;
	letter-spacing: 2px;
	transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.5px;
	transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.links-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient( circle at top right, rgba(255, 255, 255, 0.05), transparent 70%);
	pointer-events: none;
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
}
@media (max-width: 480px) {
	.links-page {
		padding: 40px 20px;
	}
	.platform-links, .social-links {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.profile-image {
		width: 120px;
		height: 120px;
		border-radius: 25px;
	}
	.profile-section h1 {
		font-size: 32px;
	}
	.link-item {
		padding: 16px;
		font-size: 15px;
		width: 100%;
		min-width: unset;
		justify-content: flex-start;
	}
	.link-item i {
		font-size: 18px;
	}
	.latest-release {
		margin: 15px 0;
	}
	.link-item.featured {
		aspect-ratio: 4/3;
	}
	.release-info {
		padding: 25px;
	}
	.release-info h3 {
		font-size: 24px;
	}
	.release-info p {
		font-size: 14px;
	}
	.streaming-link {
		width: 100%;
		min-width: unset;
	}
	.links-footer {
		margin-top: 40px;
		padding: 20px;
	}
	.footer-logo {
		font-size: 20px;
	}
	.footer-social {
		gap: 10px;
	}
	.social-button {
		width: 36px;
		height: 36px;
	}
	.footer-logo {
		font-size: 20px;
	}
}
/* Touch Device Optimizations */
@media (hover: none) {
	.link-item:active {
		transform: scale(0.98);
	}
	.link-item::before {
		display: none;
	}
}
/* Enhanced Animations */
@keyframes fadeInScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes slideIn {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
.streaming-modal {
	position: fixed;
	inset: 0;
	background: rgba(84, 77, 65, 0.95);
	/* Match main site background */
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding: 20px;
}
.streaming-modal.active {
	opacity: 1;
	visibility: visible;
	display: flex;
}
.streaming-popup {background:
	rgba(113, 106, 92, 0.2);
	  border:
	1px solid rgba(241, 233, 219, 0.2);
	  border-radius:
	24px;
	  padding:
	40px;
	  position: relative;
	  -webkit-backdrop-filter: blur(10px);
	  backdrop-filter: blur(10px);
	  text-align: center;
	  min-width: 300px;
	/* Increased from 350px */
}
.dark-theme .streaming-popup {
	background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(35, 35, 35, 0.95));
}
.streaming-popup h3 {
	color: #f1e9db;
	/* Main site text color */
	font-size: 20px;
	margin-bottom: 25px;
	font-weight: 600;
}
.dark-theme .streaming-popup h3 {
	color: var(--text-default);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.streaming-links {
	display: grid;
	gap: 12px;
}
.streaming-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	/* Increased vertical padding from 16px */
	background: rgba(241, 233, 219, 0.1);
	border: 1px solid rgba(241, 233, 219, 0.2);
	border-radius: 16px;
	color: #f1e9db;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(10px);
	min-width: 200px;
	/* Increased from 180px */
	white-space: nowrap;
	font-size: 15px;
	/* Added for better readability */
}
.dark-theme .streaming-link {
	background: var(--surface-default);
	border: 1px solid var(--border-default);
	color: var(--text-default);
}
.streaming-modal.active .streaming-link {
	animation: slideInFade 0.5s ease forwards;
}
.streaming-link:hover {
	background: rgba(241, 233, 219, 0.15);
	border-color: rgba(241, 233, 219, 0.3);
	transform: translateY(-2px);
}
.dark-theme .streaming-link:hover {
	background: rgba(0, 0, 0, 0.1);
}
.streaming-link i {
	font-size: 26px;
	/* Increased from 24px */
	width: 35px;
	/* Increased from 30px */
	text-align: center;
}
/* Add staggered animation delays */
.streaming-modal.active .streaming-link:nth-child(1) {
	animation-delay: 0.1s;
}
.streaming-modal.active .streaming-link:nth-child(2) {
	animation-delay: 0.2s;
}
.streaming-modal.active .streaming-link:nth-child(3) {
	animation-delay: 0.3s;
}
.streaming-modal.active .streaming-link:nth-child(4) {
	animation-delay: 0.4s;
}
.streaming-modal.active .streaming-link:nth-child(5) {
	animation-delay: 0.5s;
}
.streaming-modal.active .streaming-link:nth-child(6) {
	animation-delay: 0.6s;
}
@keyframes slideInFade {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
/* Platform-specific hover colors */
.streaming-link[data-platform="spotify"]:hover {
	background: rgba(30, 215, 96, 0.2);
}
.streaming-link[data-platform="apple"]:hover {
	background: rgba(255, 45, 85, 0.2);
}
.streaming-link[data-platform="youtube"]:hover {
	background: rgba(255, 0, 0, 0.2);
}
.streaming-link[data-platform="soundcloud"]:hover {
	background: rgba(255, 85, 0, 0.2);
}
.streaming-link[data-platform="tidal"]:hover {
	background: rgba(0, 0, 0, 0.2);
}
.streaming-link[data-platform="amazon"]:hover {
	background: rgba(13, 191, 245, 0.2);
}
.dark-theme .streaming-link[data-platform="spotify"]:hover {
	background: rgba(30, 215, 96, 0.1);
}
.dark-theme .streaming-link[data-platform="apple"]:hover {
	background: rgba(255, 45, 85, 0.1);
}
.dark-theme .streaming-link[data-platform="youtube"]:hover {
	background: rgba(255, 0, 0, 0.1);
}
.dark-theme .streaming-link[data-platform="soundcloud"]:hover {
	background: rgba(255, 85, 0, 0.1);
}
.dark-theme .streaming-link[data-platform="tidal"]:hover {
	background: rgba(0, 0, 0, 0.1);
}
.dark-theme .streaming-link[data-platform="amazon"]:hover {
	background: rgba(13, 191, 245, 0.1);
}
/* Update streaming modal dark theme styles */
.dark-theme .streaming-modal {
	background: rgba(0, 0, 0, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.dark-theme .streaming-popup {
	background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(35, 35, 35, 0.95));
}
.dark-theme .streaming-popup h3 {
	color: white;
	background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.dark-theme .streaming-link {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
}
.dark-theme .streaming-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}
/* Update platform-specific hover colors for dark theme */
.dark-theme .streaming-link[data-platform="spotify"]:hover {
	background: rgba(30, 215, 96, 0.2);
}
.dark-theme .streaming-link[data-platform="apple"]:hover {
	background: rgba(255, 45, 85, 0.2);
}
.dark-theme .streaming-link[data-platform="youtube"]:hover {
	background: rgba(255, 0, 0, 0.2);
}
.dark-theme .streaming-link[data-platform="soundcloud"]:hover {
	background: rgba(255, 85, 0, 0.2);
}
.dark-theme .streaming-link[data-platform="tidal"]:hover {
	background: rgba(0, 0, 0, 0.2);
}
.section-title {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	margin-top: 40px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 500;
}
.dark-theme .section-title {
	color: var(--text-secondary-dark);
}
/* Make last item full width if odd count */
.platform-links:has(a.link-item:last-child:nth-child(odd)), .social-links:has(a.link-item:last-child:nth-child(odd)) {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}
.platform-links a.link-item:last-child:nth-child(odd), .social-links a.link-item:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	width: 100%;
}
/* For mobile, keep normal width since it's already full width */
@media (max-width: 480px) {
	.platform-links a.link-item:last-child:nth-child(odd), .social-links a.link-item:last-child:nth-child(odd) {
		grid-column: auto;
	}
}
.link-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}
.link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	flex-shrink: 0;
}
.link-icon i {
	font-size: 20px;
	transition: transform 0.3s ease;
}
.link-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex-grow: 1;
}
.link-label {
	font-weight: 500;
	font-size: 15px;
}
.dark-theme .link-label {
	color: var(--text-dark);
}
.link-subtext {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s ease;
}
.dark-theme .link-subtext {
	color: var(--text-secondary-dark);
}
/* Platform-specific hover styles */
.link-item.spotify:hover {
	background: rgba(30, 215, 96, 0.15);
}
.link-item.apple-music:hover {
	background: rgba(255, 45, 85, 0.15);
}
.link-item.youtube:hover {
	background: rgba(255, 0, 0, 0.15);
}
.link-item.soundcloud:hover {
	background: rgba(255, 85, 0, 0.15);
}
.link-item.tidal:hover {
	background: rgba(0, 0, 0, 0.15);
}
.link-item.amazon-music:hover {
	background: rgba(13, 191, 245, 0.15);
}
.link-item.instagram:hover {
	background: rgba(225, 48, 108, 0.15);
}
.link-item.twitter:hover {
	background: rgba(29, 161, 242, 0.15);
}
.link-item.tiktok:hover {
	background: rgba(0, 0, 0, 0.15);
}
.dark-theme .link-item.spotify:hover {
	background: rgba(30, 215, 96, 0.2);
}
.dark-theme .link-item.apple-music:hover {
	background: rgba(255, 45, 85, 0.15);
}
.dark-theme .link-item.youtube:hover {
	background: rgba(255, 0, 0, 0.2);
}
.dark-theme .link-item.soundcloud:hover {
	background: rgba(255, 85, 0, 0.2);
}
.dark-theme .link-item.tidal:hover {
	background: rgba(0, 0, 0, 0.2);
}
.dark-theme .link-item.amazon-music:hover {
	background: rgba(13, 191, 245, 0.2);
}
.dark-theme .link-item.instagram:hover {
	background: rgba(225, 48, 108, 0.2);
}
.dark-theme .link-item.twitter:hover {
	background: rgba(29, 161, 242, 0.2);
}
.dark-theme .link-item.tiktok:hover {
	background: rgba(0, 0, 0, 0.2);
}
.link-item:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
}
.link-item:hover .link-subtext {
	color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 500px) {
	.platform-links, .social-links {
		grid-template-columns: 1fr;
	}
	.link-icon {
		height: 20px;
	}
	.link-icon i {
		font-size: 18px;
	}
	.link-label {
		font-size: 14px;
	}
	.link-subtext {
		font-size: 12px;
	}
}
.dark-theme * {
	scrollbar-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.05);
}
.theme-switch {
	position: fixed;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 12px;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: scale(1);
}
.theme-switch:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.theme-switch:active {
	transform: scale(0.95);
}
.theme-switch i {
	font-size: 20px;
	background: linear-gradient(135deg, #f1e9db, rgba(241, 233, 219, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.dark-theme .theme-switch {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.dark-theme .theme-switch:hover {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.15);
}
.dark-theme .theme-switch i {
	background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: rotate(180deg);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
@media (max-width: 480px) {
	.theme-switch {
		width: 42px;
		height: 42px;
		padding: 10px;
	}
	.theme-switch i {
		font-size: 18px;
	}
}
.streaming-modal {
	position: fixed;
	inset: 0;
	background:
	rgba(84, 77, 65, 0.95);
	  -webkit-backdrop-filter: blur(10px);
	  backdrop-filter: blur(10px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4scubic-bezier(0.16, 1, 0.3, 1), visibility 0.4scubic-bezier(0.16, 1, 0.3, 1);
	padding: 20px;
	
}
.streaming-popup {
	padding: 40px;
	border-radius: 24px;
	min-width: 400px;
	/* Increased from 350px */
	max-width: 90vw;
	position: relative;
	transform: translateY(20px) scale(0.95);
	opacity: 0;
	transition: all 0.4scubic-bezier(0.16, 1, 0.3, 1);
	background:
rgba(113, 106, 92, 0.2);
  border:
1px solid rgba(241, 233, 219, 0.2);
  border-radius:
24px;
  padding:
40px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
}
.streaming-modal.active {
	opacity: 1;
	visibility: visible;
	display: flex;
}
.streaming-modal.active .streaming-popup {
	transform: translateY(0) scale(1);
	opacity: 1;
}
.streaming-popup h3 {
	color: white;
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: left;
}
.streaming-popup h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
}
.streaming-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
.streaming-link {
	background: rgba(255, 255, 255, 0.05);
	padding: 20px 24px;
	/* Increased vertical padding from 16px */
	border-radius: 12px;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	transform: translateX(-20px);
	opacity: 0;
	min-width: 200px;
	/* Increased from 180px */
	font-size: 15px;
	/* Added for better readability */
}
.streaming-link i {
	font-size: 26px;
	/* Increased from 24px */
	width: 35px;
	/* Increased from 30px */
	text-align: center;
}
.streaming-link:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
	.streaming-links {
		grid-template-columns: 1fr;
	}
	.streaming-popup {
		padding: 30px 25px;
		min-width: unset;
		width: 90%;
		max-width: 400px;
	}
	.streaming-link {
		padding: 18px 20px;
		min-width: unset;
		width: 100%;
	}
	
	.streaming-popup h3 {
		font-size: 20px;
		text-align: center;
		padding-bottom: 12px;
		margin-bottom: 20px;
	}
	
	.streaming-popup h3::after {
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
	}
}

@media (max-width: 480px) {
	.streaming-popup {
		padding: 25px 20px;
		width: 95%;
		border-radius: 16px;
	}
	
	.streaming-link {
		padding: 14px 16px;
		gap: 10px;
		font-size: 14px;
	}
	
	.streaming-link i {
		font-size: 20px;
		width: 24px;
	}
	
	.streaming-popup h3 {
		font-size: 18px;
		letter-spacing: 1px;
		margin-bottom: 15px;
	}
	
	.streaming-modal {
		padding: 15px;
		align-items: center;
	}
	
	.close-modal {
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
}

/* Add this to make transitions smoother when theme changes */
.links-page:not(.theme-preload) .release-info-mini, .links-page:not(.theme-preload) .release-type, .links-page:not(.theme-preload) .release-badge {
	animation: themeSwitch 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes themeSwitch {
	0% {
		transform: scale(0.98);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.release-showcase-wrapper[data-visible="false"] {
	display: none;
}
.release-showcase-wrapper[data-visible="true"] {
	display: block;
	animation: fadeIn 0.3s ease-out forwards;
}
/* Coming Soon Section Styles */
.coming-soon-wrapper[data-visible="false"] {
	display: none;
}
.coming-soon-wrapper[data-visible="true"] {
	display: block;
	animation: fadeIn 0.3s ease-out forwards;
}
.coming-soon {
	margin: 40px 0;
	padding: 30px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	transform: translateY(0);
	transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.countdown-wrapper {
	margin: 20px 0;
}
.countdown {
	display: flex;
	gap: 15px;
}
.countdown-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}
.dark-theme .countdown-block {
	background: var(--surface-dark);
	border-color: var(--border-dark);
}
.countdown-value {
    font-size: 32px;
    font-weight: 600;
    color: white;
}
.dark-theme .countdown-value {
	color: var(--text-dark);
}
.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}
.dark-theme .countdown-label {
	color: var(--text-secondary-dark);
}
@media (max-width: 768px) {
	.countdown {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.countdown-block {
        padding: 15px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
}
.pre-save {
	background: linear-gradient(135deg, #f1e9db, #e5d9c5);
	color: #544d41;
	border: none;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.pre-save::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.pre-save:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(84, 77, 65, 0.5);
}
.pre-save:hover::before {
	opacity: 1;
}
.pre-save:active {
	transform: translateY(0);
}
.dark-theme .pre-save {
	background: linear-gradient(135deg, #ffffff, #f5f5f5);
	color: #1a1a1a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dark-theme .pre-save:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.dark-theme .pre-save::before {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
}
@media (max-width: 768px) {
	.countdown {
		grid-template-columns: repeat(2, 1fr);
	}
	.countdown-item {
		padding: 12px 8px;
	}
	.countdown-value {
		font-size: 24px;
	}
	.countdown-label {
		font-size: 11px;
	}
}
.listen-now-section[data-visible="false"] {
	display: none;
}
.listen-now-section[data-visible="true"] {
	display: grid;
	animation: fadeIn 0.3s ease-out forwards;
}
.coming-soon-modal {
	position: fixed;
	inset: 0;
	background: rgba(84, 77, 65, 0.95);
	backdrop-filter: blur(10px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding: 20px;
}
.coming-soon-modal.active {
	opacity: 1;
	visibility: visible;
	display: flex;
}
.coming-soon-popup {
	background: rgba(113, 106, 92, 0.2);
	border: 1px solid rgba(241, 233, 219, 0.2);
	border-radius: 24px;
	padding: 40px;
	position: relative;
	backdrop-filter: blur(10px);
	text-align: center;
	min-width: 300px;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
}
.coming-soon-modal.active .coming-soon-popup {
	transform: translateY(0);
	opacity: 1;
}
.coming-soon-icon {
	font-size: 48px;
	color: var(--text-default);
	margin-bottom: 20px;
}
.coming-soon-content h3 {
	font-size: 24px;
	color: var(--text-default);
	margin-bottom: 10px;
}
.coming-soon-content p {
	color: var(--text-default);
	opacity: 0.8;
	margin-bottom: 5px;
}
.coming-soon-subtext {
	font-size: 14px;
	opacity: 0.6;
}
.dark-theme .coming-soon-modal {
	background: rgba(26, 26, 26, 0.95);
}
.dark-theme .coming-soon-popup {
	background: rgba(45, 45, 45, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .coming-soon-content h3, .dark-theme .coming-soon-content p, .dark-theme .coming-soon-icon {
	color: white;
}
.dark-theme .coming-soon-subtext {
	color: rgba(255, 255, 255, 0.6);
}
/* Add this keyframe for the theme switch animation */
@keyframes footerThemeSwitch {
	0% {
		transform: scale(0.98);
		filter: brightness(0.95);
	}
	50% {
		transform: scale(1.01);
		filter: brightness(1.05);
	}
	100% {
		transform: scale(1);
		filter: brightness(1);
	}
}
/* Apply the animation when theme changes */
.links-page:not(.theme-preload) .links-footer {
	animation: footerThemeSwitch 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.copy-link.copied {
	background: rgba(46, 213, 115, 0.15) !important;
	border-color: rgba(46, 213, 115, 0.3) !important;
	color: #2ed573;
}
.dark-theme .copy-link.copied {
	background: rgba(46, 213, 115, 0.2) !important;
	border-color: rgba(46, 213, 115, 0.4) !important;
	color: #2ed573;
}
.copy-link.copied i {
	transform: scale(1.2);
}
/* Scroll to top button */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: white;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	z-index: 100;
}
.scroll-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.scroll-top:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}
.dark-theme .scroll-top {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .scroll-top:hover {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
	.scroll-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}
/* Add smooth theme transition animation */
.theme-transition {
	animation: themeTransition 0.3s ease-out;
}
@keyframes themeTransition {
	0% {
		filter: hue-rotate(0deg) brightness(1);
	}
	50% {
		filter: hue-rotate(10deg) brightness(1.05);
	}
	100% {
		filter: hue-rotate(0deg) brightness(1);
	}
}
/* Apply theme transition to elements when switching themes */
.links-page:not(.theme-preload) .latest-release, .links-page:not(.theme-preload) .coming-soon, .links-page:not(.theme-preload) .release-badge, .links-page:not(.theme-preload) .release-type, .links-page:not(.theme-preload) .release-meta span, .links-page:not(.theme-preload) .release-info-mini, .links-page:not(.theme-preload) .countdown-block {
	animation: themeTransition 0.3s ease-out;
}
/* Ensure smooth color transitions in dark theme */
.dark-theme .latest-release, .dark-theme .coming-soon, .dark-theme .release-badge, .dark-theme .release-type, .dark-theme .release-meta span, .dark-theme .release-info-mini, .dark-theme .countdown-block, .dark-theme .release-description, .dark-theme .countdown-value, .dark-theme .countdown-label {
	transition-duration: 0.3s;
	transition-timing-function: ease;
}
.dark-theme .profile-logo-container {
	background: none;
	border: none;
	transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dark-theme .profile-as-logo {
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-as-logo {
	width: 100%;
	height: auto;
	max-width: 120px;
	display: block;
	margin: 0 auto;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dark-theme .profile-as-logo {
	filter: brightness(1.1);
}
.dark-theme .theme-switch {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.uta-theme .theme-switch {
	background: rgba(12, 26, 42, 0.3);
	border-color: rgba(208, 225, 249, 0.15);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.dark-theme .theme-switch:hover {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.15);
}
.uta-theme .theme-switch:hover {
	background: rgba(12, 26, 42, 0.4);
	border-color: rgba(208, 225, 249, 0.25);
}
.dark-theme .theme-switch i {
	background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: rotate(180deg);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.uta-theme .theme-switch i {
	background: linear-gradient(135deg, #d0e1f9, rgba(208, 225, 249, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: rotate(90deg);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.section-title {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	margin-top: 40px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 500;
}
.dark-theme .section-title {
	color: var(--text-secondary-dark);
}
.uta-theme .section-title {
	color: var(--text-secondary-uta);
}
/* Add noise texture to uta theme */
.uta-theme::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==');
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
}

.uta-theme .bio {
	color: rgba(208, 225, 249, 0.7);
}

.uta-theme .profile-website {
	background: rgba(208, 225, 249, 0.05);
	border: 1px solid rgba(208, 225, 249, 0.1);
	color: rgba(208, 225, 249, 0.8);
}

.uta-theme .profile-website:hover {
	background: rgba(208, 225, 249, 0.1);
	border-color: rgba(208, 225, 249, 0.2);
}

.uta-theme .streaming-modal {
	background: rgba(12, 26, 42, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.uta-theme .streaming-popup {
	background:
	rgba(28, 43, 58, 0.2);
	  border-color:
	rgba(208, 225, 249, 0.1);
}

.uta-theme .streaming-popup h3 {
	color: var(--text-uta);
}

.uta-theme .streaming-link {
	border: 1px solid rgba(208, 225, 249, 0.1);
	color: var(--text-uta);
	transition: all 0.3s ease;
}

.uta-theme .streaming-link:hover {
	background: rgba(208, 225, 249, 0.1);
	border-color: rgba(208, 225, 249, 0.2);
	transform: translateY(-2px);
}

.uta-theme .streaming-link i {
	color: rgba(208, 225, 249, 0.9);
	transition: color 0.3s ease, transform 0.3s ease;
}

.uta-theme .streaming-link:hover i {
	color: rgba(208, 225, 249, 1);
	transform: scale(1.1);
}

.uta-theme .streaming-link[data-platform="spotify"]:hover i {
	color: #1DB954;
}

.uta-theme .streaming-link[data-platform="apple"]:hover i {
	color: #FA243C;
}

.uta-theme .streaming-link[data-platform="youtube"]:hover i {
	color: #FF0000;
}

.uta-theme .streaming-link[data-platform="soundcloud"]:hover i {
	color: #FF3300;
}

.uta-theme .streaming-link[data-platform="tidal"]:hover i {
	color: #00FFFF;
}

.uta-theme .streaming-link[data-platform="amazon"]:hover i {
	color: #00A8E1;
}

.uta-theme .coming-soon-modal {
	background: rgba(12, 26, 42, 0.95);
}

.uta-theme .coming-soon-popup {
	background: rgba(28, 43, 58, 0.2);
	border-color: rgba(208, 225, 249, 0.1);
}

.uta-theme .coming-soon-content h3,
.uta-theme .coming-soon-content p,
.uta-theme .coming-soon-icon {
	color: var(--text-uta);
}

.uta-theme .coming-soon-subtext {
	color: rgba(208, 225, 249, 0.6);
}

/* Scrollbar for uta theme */
.uta-theme::-webkit-scrollbar-track {
	background: rgba(12, 26, 42, 0.05);
}
.uta-theme::-webkit-scrollbar-thumb {
	background: rgba(208, 225, 249, 0.15);
}
.uta-theme::-webkit-scrollbar-thumb:hover {
	background: rgba(208, 225, 249, 0.25);
}

.uta-theme .loading-overlay .logo-animation .as-text {
	filter: drop-shadow(0 0 5px rgba(208, 225, 249, 0.4));
}

.uta-theme .profile-logo-container {
	position: relative;
}


/* Add animated pulse to logo in uta theme */
@keyframes subtlePulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(208, 225, 249, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(208, 225, 249, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(208, 225, 249, 0.3));
    }
}

/* Add a subtle effect to AS text */
@keyframes revertFillUta {
    from {
        fill: var(--text-uta);
    }
    to {
        fill: transparent;
    }
}

/* Enhance the profile logo in uta theme for better visibility */
.uta-theme .profile-as-logo-svg {
    filter: brightness(1.05);
}

/* Add grain overlay to all themes */
.links-page::before, 
.links-page::after,
.loading-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"), var(--bg-gradient-default);
    background-size: 150px, 100%;
}

.dark-theme .links-page::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"), var(--bg-gradient-dark);
    background-size: 150px, 100%;
}

.dark-theme .loading-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"), var(--bg-gradient-dark);
    background-size: 150px, 100%;
}

.uta-theme .links-page::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.2'/%3E%3C/svg%3E"), var(--bg-gradient-uta);
    background-size: 120px, 100%;
    opacity: 1;
}

.uta-theme .loading-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.2'/%3E%3C/svg%3E"), var(--bg-gradient-uta);
    background-size: 120px, 100%;
}

/* Add this after the existing dark theme styles near line 2250 */
body.dark-theme.links-page::before {
    opacity: 0 !important;
}

body.dark-theme.links-page::after {
    opacity: 1 !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E"), var(--bg-gradient-dark) !important;
    background-size: 150px, 100%;
}

/* Update the theme transition animation */
@keyframes themeTransition {
	0% {
		filter: hue-rotate(0deg) brightness(1);
	}
	50% {
		filter: hue-rotate(10deg) brightness(1.05);
	}
	100% {
		filter: hue-rotate(0deg) brightness(1);
	}
}

/* Apply theme transition to uta theme elements */
.uta-theme .latest-release, .uta-theme .coming-soon, .uta-theme .release-badge, .uta-theme .release-type, .uta-theme .release-meta span, .uta-theme .release-info-mini, .uta-theme .countdown-block, .uta-theme .release-description, .uta-theme .countdown-value, .uta-theme .countdown-label {
	transition-duration: 0.3s;
	transition-timing-function: ease;
}

.al-as-theme::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
.al-as-theme::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.1);
}
.al-as-theme::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.15);
}

.al-as-theme .as-text {
	fill: none;
	animation: 0.5s drawLogo ease forwards, 1s fillLogoDark ease 0.5s forwards, 0.3s waitABit linear 1.5s forwards, 0.5s revertFillDark ease 1.8s forwards;
}

.al-as-theme .section-title {
	color: var(--text-secondary-al-as);
}

.al-as-theme .link-item {
	background: var(--surface-al-as);
	border-color: var(--border-al-as);
}



.al-as-theme .profile-section h1 {
	background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.al-as-theme .theme-switch {
	background: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.al-as-theme .theme-switch:hover {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.15);
}

.al-as-theme .theme-switch i {
	background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: rotate(180deg);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.al-as-theme .latest-release, .al-as-theme .coming-soon, .al-as-theme .release-badge, .al-as-theme .release-type, .al-as-theme .release-meta span, .al-as-theme .release-info-mini, .al-as-theme .countdown-block, .al-as-theme .release-description, .al-as-theme .countdown-value, .al-as-theme .countdown-label {
	transition-duration: 0.3s;
	transition-timing-function: ease;
}

/* Add more specific transitions between themes */
.links-page.al-as-theme::before,
.links-page.al-as-theme::after,
.links-page.uta-theme::before,
.links-page.uta-theme::after {
    transition: opacity 0.5s ease, background-image 0.5s ease;
}

/* Improve theme transition animation specifically for al-as to uta transitions */
.theme-transition.al-as-theme,
.theme-transition.uta-theme {
    animation: themeTransition 0.4s ease-out;
}

/* Enhanced transition animation between AL-AS and UTA themes */
@keyframes themeTransition {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(15deg) brightness(1.08);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}

/* Special animation for transitioning specifically from AL-AS to UTA */
@keyframes alAsToUtaTransition {
    0% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
    50% {
        filter: hue-rotate(210deg) brightness(1.05) saturate(1.2);
    }
    100% {
        filter: hue-rotate(180deg) brightness(1) saturate(1);
    }
}

/* Apply the special transition when going from AL-AS to UTA */
.al-as-theme.theme-transition.to-uta {
    animation: alAsToUtaTransition 0.5s ease-out forwards;
}

/* Transition from UTA to Light theme */
@keyframes utaToLightTransition {
    0% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
    50% {
        filter: hue-rotate(-210deg) brightness(1.05) saturate(0.9);
    }
    100% {
        filter: hue-rotate(-180deg) brightness(1) saturate(1);
    }
}

/* Transition from Light to AL-AS theme */
@keyframes lightToAlAsTransition {
    0% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
    50% {
        filter: hue-rotate(15deg) brightness(0.95) saturate(0.9);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
}

/* Apply the special transitions for other theme combinations */
.uta-theme.theme-transition.to-light {
    animation: utaToLightTransition 0.5s ease-out forwards;
}

.theme-transition.to-al-as {
    animation: lightToAlAsTransition 0.5s ease-out forwards;
}

/* Make sure all transitions have proper timing */
.theme-transition {
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

.al-as-theme .loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E"), var(--bg-gradient-al-as);
    background-size: 150px, 100%;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), background-image 0.5s ease;
    pointer-events: all;
    cursor: default;
}

.al-as-theme .loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.al-as-theme .loading-overlay.permanent {
    opacity: 1 !important;
    pointer-events: all !important;
}

.al-as-theme .links-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.al-as-theme .links-container.loaded {
    opacity: 1;
    transform: none;
}

.al-as-theme .profile-logo-container {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.al-as-theme .profile-logo-container.show {
    opacity: 1;
}

.al-as-theme .as-text {
    stroke: var(--text-al-as);
    fill: none;
    animation: 1.5s drawLogo ease forwards;
}

.uta-theme .link-item.tidal .link-icon i,
.uta-theme .link-item.amazon-music .link-icon i,
.uta-theme .link-item.twitter .link-icon i {
    color: var(--text-uta);
}

.uta-theme .link-item.tidal:hover .link-icon i,
.uta-theme .link-item.amazon-music:hover .link-icon i,
.uta-theme .link-item.twitter:hover .link-icon i {
    color: var(--text-uta);
    opacity: 0.8;
}

.uta-theme .link-icon i {
    color: white;
}

.uta-theme .link-item:hover .link-icon i {
    color: white;
    opacity: 0.8;
}

.uta-theme .link-item.spotify:hover .link-icon i,
.uta-theme .link-item.apple-music:hover .link-icon i,
.uta-theme .link-item.youtube:hover .link-icon i,
.uta-theme .link-item.soundcloud:hover .link-icon i,
.uta-theme .link-item.tidal:hover .link-icon i,
.uta-theme .link-item.amazon-music:hover .link-icon i,
.uta-theme .link-item.instagram:hover .link-icon i,
.uta-theme .link-item.twitter:hover .link-icon i,
.uta-theme .link-item.tiktok:hover .link-icon i {
    color: white;
    opacity: 0.8;
}

.al-as-theme .profile-as-logo-svg {
    filter: brightness(0) invert(1);
}

.al-as-theme .latest-release {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.al-as-theme .release-details h3 {
    color: var(--text-al-as);
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.al-as-theme .release-meta span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-al-as);
}

.al-as-theme .release-meta span:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}



.al-as-theme .release-description {
    color: rgba(255, 255, 255, 0.7);
}

.al-as-theme .stream-now {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.al-as-theme .stream-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.al-as-theme .stream-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.al-as-theme .stream-now:hover::before {
    opacity: 1;
}

.al-as-theme .stream-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Override any base action button styles */
.al-as-theme .release-actions .stream-now {
    background: linear-gradient(135deg, #ffffff, #f5f5f5) !important;
    color: #1a1a1a !important;
    border: none !important;
}

.al-as-theme .release-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-al-as);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.al-as-theme .release-type:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.al-as-theme .release-type i {
    color: var(--text-al-as);
    opacity: 0.8;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.al-as-theme .release-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-al-as);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.al-as-theme .release-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.al-as-theme .release-badge i {
    color: var(--text-al-as);
    opacity: 0.9;
}

.uta-theme .latest-release {
    border: 1px solid rgba(208, 225, 249, 0.1);
    backdrop-filter: blur(20px);
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.uta-theme .release-details h3 {
    color: var(--text-uta);
    background: linear-gradient(to right, var(--text-uta), rgba(208, 225, 249, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uta-theme .release-meta span {
    background: rgba(208, 225, 249, 0.05);
    border: 1px solid rgba(208, 225, 249, 0.1);
    color: var(--text-uta);
}

.uta-theme .release-meta span:hover {
    background: rgba(208, 225, 249, 0.1);
    border-color: rgba(208, 225, 249, 0.2);
}

.uta-theme .release-description {
    color: rgba(208, 225, 249, 0.7);
}

.uta-theme .release-type {
    background: rgba(208, 225, 249, 0.05);
    border: 1px solid rgba(208, 225, 249, 0.1);
    color: var(--text-uta);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.uta-theme .release-type:hover {
    background: rgba(208, 225, 249, 0.1);
    border-color: rgba(208, 225, 249, 0.2);
}

.uta-theme .release-type i {
    color: var(--text-uta);
    opacity: 0.8;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.uta-theme .release-badge {
    background: rgba(208, 225, 249, 0.05);
    border: 1px solid rgba(208, 225, 249, 0.1);
    color: var(--text-uta);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.uta-theme .release-badge:hover {
    background: rgba(208, 225, 249, 0.1);
    border-color: rgba(208, 225, 249, 0.2);
}

.uta-theme .release-badge i {
    color: var(--text-uta);
    opacity: 0.9;
}

.uta-theme .stream-now {
    background: linear-gradient(135deg, rgba(208, 225, 249, 0.9), rgba(208, 225, 249, 0.7));
    color: #0c1a2a;
    border: 1px solid rgba(208, 225, 249, 0.2);
    box-shadow: 0 2px 4px rgba(12, 26, 42, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.uta-theme .stream-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(208, 225, 249, 0.2), rgba(208, 225, 249, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uta-theme .stream-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(12, 26, 42, 0.15);
    background: linear-gradient(135deg, rgba(208, 225, 249, 1), rgba(208, 225, 249, 0.8));
}

.uta-theme .stream-now:hover::before {
    opacity: 1;
}

.uta-theme .stream-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(12, 26, 42, 0.1);
}

/* Override any base action button styles */
.uta-theme .release-actions .stream-now {
    background: linear-gradient(135deg, rgba(208, 225, 249, 0.9), rgba(208, 225, 249, 0.7)) !important;
    color: #0c1a2a !important;
    border: 1px solid rgba(208, 225, 249, 0.2) !important;
}

.uta-theme .streaming-link i {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.uta-theme .streaming-link:hover i {
    color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
}

.uta-theme .streaming-link[data-platform="spotify"]:hover i {
    color: #1DB954;
}

.uta-theme .streaming-link[data-platform="apple"]:hover i {
    color: #FA243C;
}

.uta-theme .streaming-link[data-platform="youtube"]:hover i {
    color: #FF0000;
}

.uta-theme .streaming-link[data-platform="soundcloud"]:hover i {
    color: #FF3300;
}

.uta-theme .streaming-link[data-platform="tidal"]:hover i {
    color: #00FFFF;
}

.uta-theme .streaming-link[data-platform="amazon"]:hover i {
    color: #00A8E1;
}

.al-as-theme .streaming-modal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.al-as-theme .streaming-popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.al-as-theme .streaming-popup h3 {
    color: var(--text-al-as);
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.al-as-theme .streaming-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-al-as);
    transition: all 0.3s ease;
}

.al-as-theme .streaming-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.al-as-theme .streaming-link i {
    color: var(--text-al-as);
    transition: color 0.3s ease, transform 0.3s ease;
}

.al-as-theme .streaming-link:hover i {
    color: white;
    transform: scale(1.1);
}

.al-as-theme .streaming-link[data-platform="spotify"]:hover i {
    color: #1DB954;
}

.al-as-theme .streaming-link[data-platform="apple"]:hover i {
    color: #FA243C;
}

.al-as-theme .streaming-link[data-platform="youtube"]:hover i {
    color: #FF0000;
}

.al-as-theme .streaming-link[data-platform="soundcloud"]:hover i {
    color: #FF3300;
}

.al-as-theme .streaming-link[data-platform="tidal"]:hover i {
    color: #00FFFF;
}

.al-as-theme .streaming-link[data-platform="amazon"]:hover i {
    color: #00A8E1;
}

.al-as-theme .coming-soon-modal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.al-as-theme .coming-soon-popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.al-as-theme .coming-soon-content h3,
.al-as-theme .coming-soon-content p,
.al-as-theme .coming-soon-icon {
    color: var(--text-al-as);
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.al-as-theme .coming-soon-subtext {
    color: rgba(255, 255, 255, 0.7);
}

.al-as-theme .streaming-link:hover i {
    color: white;
    transform: scale(1.1);
}

/* Remove platform-specific hover colors */
.al-as-theme .streaming-link[data-platform="spotify"]:hover i,
.al-as-theme .streaming-link[data-platform="apple"]:hover i,
.al-as-theme .streaming-link[data-platform="youtube"]:hover i,
.al-as-theme .streaming-link[data-platform="soundcloud"]:hover i,
.al-as-theme .streaming-link[data-platform="tidal"]:hover i,
.al-as-theme .streaming-link[data-platform="amazon"]:hover i {
    color: white;
}

.al-as-theme .countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.al-as-theme .countdown-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.al-as-theme .countdown-block:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.al-as-theme .countdown-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-al-as);
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.al-as-theme .countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .al-as-theme .countdown {
        gap: 10px;
    }
    
    .al-as-theme .countdown-block {
        padding: 15px;
        min-width: 60px;
    }
    
    .al-as-theme .countdown-value {
        font-size: 24px;
    }
    
    .al-as-theme .countdown-label {
        font-size: 10px;
    }
}

.al-as-theme .pre-save {
    background: white;
    color: #1a1a1a;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.al-as-theme .pre-save::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.al-as-theme .pre-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

.al-as-theme .pre-save:hover::before {
    opacity: 1;
}

.al-as-theme .pre-save:active {
    transform: translateY(0);
}

.uta-theme .pre-save {
    background: linear-gradient(135deg, rgba(208, 225, 249, 0.9), rgba(208, 225, 249, 0.7));
    color: #0c1a2a;
    border: 1px solid rgba(208, 225, 249, 0.2);
    box-shadow: 0 2px 4px rgba(12, 26, 42, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.uta-theme .pre-save::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(208, 225, 249, 0.2), rgba(208, 225, 249, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uta-theme .pre-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(12, 26, 42, 0.15);
    background: linear-gradient(135deg, rgba(208, 225, 249, 1), rgba(208, 225, 249, 0.8));
}

.uta-theme .pre-save:hover::before {
    opacity: 1;
}

.uta-theme .pre-save:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(12, 26, 42, 0.1);
}

.uta-theme .countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.uta-theme .countdown-block {
    background: rgba(208, 225, 249, 0.05);
    border: 1px solid rgba(208, 225, 249, 0.1);
    border-radius: 12px;
    padding: 20px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.uta-theme .countdown-block:hover {
    background: rgba(208, 225, 249, 0.1);
    border-color: rgba(208, 225, 249, 0.2);
    transform: translateY(-2px);
}

.uta-theme .countdown-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-uta);
    background: linear-gradient(135deg, rgba(208, 225, 249, 1), rgba(208, 225, 249, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uta-theme .countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(208, 225, 249, 0.7);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .uta-theme .countdown {
        gap: 10px;
    }
    
    .uta-theme .countdown-block {
        padding: 15px;
        min-width: 60px;
    }
    
    .uta-theme .countdown-value {
        font-size: 24px;
    }
    
    .uta-theme .countdown-label {
        font-size: 10px;
    }
}

.al-as-theme .share-release {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-al-as);
    transition: all 0.3s ease;
}

.al-as-theme .share-release:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.al-as-theme .share-release i {
    color: var(--text-al-as);
    transition: transform 0.3s ease;
}

.al-as-theme .share-release:hover i {
    transform: scale(1.1);
}

.uta-theme .share-release {
    background: rgba(208, 225, 249, 0.05);
    border: 1px solid rgba(208, 225, 249, 0.1);
    color: var(--text-uta);
    transition: all 0.3s ease;
}

.uta-theme .share-release:hover {
    background: rgba(208, 225, 249, 0.1);
    border-color: rgba(208, 225, 249, 0.2);
    transform: translateY(-2px);
}

.uta-theme .share-release i {
    color: var(--text-uta);
    transition: transform 0.3s ease;
}

.uta-theme .share-release:hover i {
    transform: scale(1.1);
}

.uta-theme .scroll-top {
    background: rgba(208, 225, 249, 0.05);
    border: 1px solid rgba(208, 225, 249, 0.1);
    color: var(--text-uta);
    transition: all 0.3s ease;
}

.uta-theme .scroll-top:hover {
    background: rgba(208, 225, 249, 0.1);
    border-color: rgba(208, 225, 249, 0.2);
    transform: translateY(-2px);
}

.uta-theme .scroll-top i {
    color: var(--text-uta);
    transition: transform 0.3s ease;
}

.uta-theme .scroll-top:hover i {
    transform: scale(1.1);
}

.al-as-theme .scroll-top {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-al-as);
    transition: all 0.3s ease;
}

.al-as-theme .scroll-top:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.al-as-theme .scroll-top i {
    color: var(--text-al-as);
    transition: transform 0.3s ease;
}

.al-as-theme .scroll-top:hover i {
    transform: scale(1.1);
}

/* Make coming soon countdown more mobile-friendly */
@media (max-width: 768px) {
    .coming-soon-wrapper .release-showcase {
        flex-direction: column;
    }
    
    .coming-soon-wrapper .release-artwork {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 1.5rem;
    }
    
    .coming-soon-wrapper .release-details {
        padding: 0;
        width: 100%;
        text-align: center;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 1rem auto;
    }
    
    .countdown-block {
        width: calc(50% - 10px);
        min-width: 80px;
        margin: 0;
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .release-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .release-badge, .release-type {
        margin: 0;
    }
    
    .countdown-block {
        width: calc(50% - 10px);
        min-width: 70px;
        height: auto;
        padding: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .release-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .release-actions .action-button {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .pre-save {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Improve responsive layout of album artwork and text */
@media (max-width: 640px) {
    .coming-soon-wrapper .release-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .coming-soon-wrapper .release-details h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .release-meta {
        justify-content: center;
    }
}

/* RS Theme Countdown Styling - Similar to UTA Theme */
.rs-theme .countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.rs-theme .countdown-block {
    background: rgba(227, 218, 201, 0.1);
    border: 1px solid rgba(227, 218, 201, 0.2);
    border-radius: 12px;
    padding: 20px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.rs-theme .countdown-block:hover {
    background: rgba(227, 218, 201, 0.15);
    border-color: rgba(227, 218, 201, 0.3);
    transform: translateY(-2px);
}

.rs-theme .countdown-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-rs);
    background: linear-gradient(135deg, rgba(215, 204, 180, 1), rgba(227, 218, 201, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-theme .countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(215, 204, 180, 0.85);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .rs-theme .countdown {
        gap: 10px;
    }
    
    .rs-theme .countdown-block {
        padding: 15px;
        min-width: 60px;
    }
    
    .rs-theme .countdown-value {
        font-size: 24px;
    }
    
    .rs-theme .countdown-label {
        font-size: 10px;
    }
}

/* Disable copy link functionality on mobile devices */
@media (max-width: 767px) {
    .copy-link {
        display: none;
    }
    
    /* Ensure no space is reserved for the hidden button */
    .link-item:hover .copy-link {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
}

/* Add vendor prefixes for animations */
@-webkit-keyframes themeTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes themeTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Add vendor prefixes for transitions */
.theme-transition {
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add vendor prefixes for transforms */
.theme-transition.to-uta,
.theme-transition.to-rs,
.theme-transition.to-al-as {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

/* Add vendor prefixes for animations */
@-webkit-keyframes alAsToUtaTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes alAsToUtaTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Add vendor prefixes for transitions */
.al-as-theme.theme-transition.to-uta {
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add vendor prefixes for animations */
@-webkit-keyframes utaToLightTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes utaToLightTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Add vendor prefixes for transitions */
.uta-theme.theme-transition.to-light {
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add vendor prefixes for animations */
@-webkit-keyframes lightToAlAsTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes lightToAlAsTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Add vendor prefixes for transitions */
.theme-transition.to-al-as {
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add vendor prefixes for transforms */
.theme-transition {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Add vendor prefixes for animations */
@-webkit-keyframes subtlePulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes subtlePulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Add vendor prefixes for transitions */
.uta-theme .profile-logo-container .profile-as-logo {
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add vendor prefixes for animations */
@-webkit-keyframes revertFillUta {
    from {
        fill: var(--text-uta);
    }
    to {
        fill: transparent;
    }
}

@keyframes revertFillUta {
    from {
        fill: var(--text-uta);
    }
    to {
        fill: transparent;
    }
}

/* Add vendor prefixes for transforms */
.uta-theme .profile-as-logo-svg {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
}

/* Add vendor prefixes for transitions */
.links-page::before,
.links-page::after {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

/* Add vendor prefixes for animations */
@-webkit-keyframes themeTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes themeTransition {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.browser-warning {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -20px);
    background: rgba(255, 193, 7, 0.95);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    max-width: 90%;
    width: auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.browser-warning.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.browser-warning.hide {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -20px);
    pointer-events: none;
}

.browser-warning i {
    font-size: 18px;
    color: #856404;
}

.browser-warning-text {
    flex: 1;
}

.browser-warning-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #856404;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.browser-warning-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.browser-warning-close:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    .browser-warning {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .browser-warning i {
        font-size: 16px;
    }
}
