/* Artist Pages General Styles */
.artist-page {
	padding-top: 0;
}

/* Artist Navigation */
#artist-nav {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1.5rem 0;
}

#artist-nav .nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.back-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	transition: var(--transition);
}

.back-link:hover {
	color: var(--accent-color);
}

.artist-nav-links {
	display: flex;
	gap: 2rem;
}

.artist-nav-links a {
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}

/* David Billing Specific Styles (Harry Styles Inspired) */
.david-billing {
	--artist-accent: #cf4520;
	--artist-secondary: #5268c2;
	--artist-tertiary: #f2cd00;
}

.david-billing .back-link:hover,
.david-billing .artist-nav-links a:hover {
	color: var(--artist-accent);
}

#artist-hero {
	margin-top: 80px;
	position: relative;
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 0;
}

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

.artist-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}

.artist-hero-content {
	text-align: center;
	color: white;
	z-index: 1;
}

.artist-name {
	font-size: 5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.artist-tagline {
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 2px;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

/* Music Section */
.artist-music {
	padding: 5rem 0;
	background-color: #f8f8f8;
	text-align: center;
	position: relative;
	z-index: 10;
}

.streaming-links {
	margin-top: 3rem;
}

.streaming-btn {
	display: inline-block;
	padding: 1.2rem 3rem;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 50px;
	transition: var(--transition);
	margin-bottom: 3rem;
}

.streaming-btn.primary {
	background-color: var(--artist-accent);
	color: white;
}

.streaming-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(207, 69, 32, 0.3);
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.platform-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.5rem;
	background-color: white;
	border-radius: 10px;
	transition: var(--transition);
}

.platform-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-link i {
	font-size: 2rem;
	color: var(--artist-accent);
}

/* About Section */
.artist-about {
	padding: 5rem 0;
	position: relative;
	z-index: 10;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-content h2 {
	font-size: 3rem;
	margin-bottom: 2rem;
	color: var(--artist-accent);
}

.about-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.artist-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.stat {
	text-align: center;
}

.stat h3 {
	font-size: 2rem;
	color: var(--artist-accent);
	margin-bottom: 0.5rem;
}

.stat p {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
}

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Latest Release */
#latest-release {
	padding: 5rem 0;
	background-color: #f8f8f8;
	position: relative;
	z-index: 10;
}

.release-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 800px;
	margin: 0 auto;
}

.release-artwork img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.release-info h3 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.release-info p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.listen-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: var(--artist-accent);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
}

.listen-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(207, 69, 32, 0.3);
}

/* Contact Section */
.artist-contact {
	padding: 5rem 0;
	text-align: center;
	position: relative;
	z-index: 10;
}

.artist-contact h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.artist-contact p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.contact-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: 2px solid var(--artist-accent);
	color: var(--artist-accent);
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
}

.contact-btn:hover {
	background-color: var(--artist-accent);
	color: white;
}

/* Artist Footer */
.artist-footer {
	background-color: var(--primary-color);
	color: white;
	padding: 2rem 0;
	text-align: center;
}

.artist-footer a {
	color: var(--accent-color);
}

/* Aggregated Pulse Specific Styles (Daft Punk Inspired) */
.aggregated-pulse.dark-theme {
	background-color: #000000;
	color: #ffffff;
}

.dark-nav {
	background-color: rgba(0, 0, 0, 0.9) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-nav .back-link,
.dark-nav .artist-nav-links a {
	color: #ffffff;
	font-weight: 300;
	letter-spacing: 2px;
}

.dark-nav .back-link:hover,
.dark-nav .artist-nav-links a:hover {
	color: #00ff00;
}

.nav-icon {
	font-size: 1.5rem;
	margin-right: 0.5rem;
}

/* Pulse Hero */
.pulse-hero {
	margin-top: 80px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	background: radial-gradient(ellipse at center, #111 0%, #000 100%);
	z-index: 0;
}

.glitch-container {
	position: relative;
	margin-bottom: 2rem;
}

.pulse-logo {
	width: 300px;
	height: 300px;
	object-fit: contain;
	filter: invert(1);
	animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
	from { filter: invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
	to { filter: invert(1) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)); }
}

.pulse-title {
	font-size: 4rem;
	font-weight: 100;
	letter-spacing: 10px;
	margin-bottom: 1rem;
	text-align: center;
}

.pulse-subtitle {
	font-size: 1rem;
	letter-spacing: 5px;
	color: #888;
	margin-bottom: 3rem;
}

.pulse-animation {
	display: flex;
	gap: 10px;
}

.pulse-animation span {
	width: 3px;
	height: 40px;
	background-color: #00ff00;
	animation: pulse-bars 1s ease-in-out infinite;
}

.pulse-animation span:nth-child(2) { animation-delay: 0.1s; }
.pulse-animation span:nth-child(3) { animation-delay: 0.2s; }
.pulse-animation span:nth-child(4) { animation-delay: 0.3s; }

@keyframes pulse-bars {
	0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
	50% { transform: scaleY(1); opacity: 1; }
}

/* Glitch Text Effect - Removed */
.glitch-text {
	position: relative;
	color: #ffffff;
	font-weight: 100;
	letter-spacing: 5px;
}

/* Pulse Music Section */
.pulse-music {
	padding: 5rem 0;
	background-color: #000;
	position: relative;
	z-index: 10;
}

.music-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.album-card {
	position: relative;
	background-color: #111;
	border: 1px solid #222;
	transition: var(--transition);
}

.album-card:hover {
	border-color: #00ff00;
	transform: scale(1.05);
}

.album-cover {
	position: relative;
	height: 300px;
	overflow: hidden;
}

.album-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: var(--transition);
}

.album-card:hover .album-cover img {
	filter: grayscale(0%);
}

.album-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.album-card:hover .album-overlay {
	opacity: 1;
}

.play-btn {
	width: 80px;
	height: 80px;
	border: 2px solid #00ff00;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #00ff00;
	transition: var(--transition);
}

.play-btn:hover {
	background-color: #00ff00;
	color: #000;
}

.album-card h3 {
	padding: 1rem;
	font-size: 1rem;
	letter-spacing: 3px;
	text-align: center;
}

.album-card p {
	padding: 0 1rem 1rem;
	text-align: center;
	color: #666;
	font-size: 0.9rem;
}

.listen-section {
	text-align: center;
	margin-top: 3rem;
}

.pulse-listen-btn {
	display: inline-block;
	padding: 1rem 3rem;
	border: 1px solid #00ff00;
	color: #00ff00;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 300;
	transition: var(--transition);
}

.pulse-listen-btn:hover {
	background-color: #00ff00;
	color: #000;
}

/* Pulse Videos */
.pulse-videos {
	padding: 5rem 0;
	background-color: #000;
	position: relative;
	z-index: 10;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1rem;
	margin-top: 3rem;
}

.video-item {
	position: relative;
	cursor: pointer;
}

.video-thumbnail {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.video-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) brightness(0.5);
	transition: var(--transition);
}

.video-item:hover .video-thumbnail img {
	filter: grayscale(0%) brightness(0.7);
}

.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.video-item:hover .video-play {
	border-color: #00ff00;
	color: #00ff00;
	transform: translate(-50%, -50%) scale(1.1);
}

/* Pulse About */
.pulse-about {
	padding: 5rem 0;
	background-color: #000;
	text-align: center;
	position: relative;
	z-index: 10;
}

.about-minimal {
	max-width: 600px;
	margin: 0 auto;
}

.pulse-description {
	margin: 2rem 0;
}

.pulse-description p {
	font-size: 1rem;
	letter-spacing: 3px;
	color: #00ff00;
	margin-bottom: 0.5rem;
}

.pulse-mission {
	margin-top: 3rem;
	padding: 2rem;
	border: 1px solid #222;
}

.pulse-mission p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #aaa;
}

/* Pulse Contact */
.pulse-contact {
	padding: 5rem 0;
	background-color: #000;
	position: relative;
	z-index: 10;
}

.contact-grid {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.contact-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 2rem;
	border: 1px solid #222;
	transition: var(--transition);
}

.contact-link:hover {
	border-color: #00ff00;
}

.contact-icon {
	font-size: 2rem;
	color: #00ff00;
}

.contact-link span:last-child {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	color: #fff;
}

/* Pulse Footer */
.pulse-footer {
	background-color: #000;
	border-top: 1px solid #222;
	padding: 2rem 0;
	text-align: center;
}

.pulse-footer p {
	color: #666;
	margin-bottom: 0.5rem;
}

.pulse-footer a {
	color: #00ff00;
}

/* Bassturmator Specific Styles */
.bassturmator {
	background-color: #0a0a0a;
	color: #ffffff;
}

.bass-nav {
	background-color: rgba(0, 0, 0, 0.95) !important;
	border-bottom: 2px solid #00ff88;
}

.bass-nav .back-link,
.bass-nav .artist-nav-links a {
	color: #ffffff;
	transition: var(--transition);
}

.bass-nav .back-link:hover,
.bass-nav .artist-nav-links a:hover {
	color: #00ff88;
}

/* Bass Hero */
.bass-hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 80px;
}

.bass-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
	z-index: 0;
}

.bass-hero-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(0, 255, 136, 0.1) 2px,
			rgba(0, 255, 136, 0.1) 4px
		);
	animation: scan 5s linear infinite;
}

@keyframes scan {
	0% { transform: translateY(0); }
	100% { transform: translateY(20px); }
}

.bass-hero-content {
	text-align: center;
	z-index: 1;
}

.bass-logo {
	width: 250px;
	height: 250px;
	object-fit: contain;
	margin-bottom: 2rem;
	filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
	animation: bass-pulse 2s ease-in-out infinite;
}

@keyframes bass-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.bass-title {
	font-size: 5rem;
	font-weight: 900;
	letter-spacing: 5px;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #00ff88, #00ffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.bass-tagline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 1.2rem;
	letter-spacing: 3px;
	margin-bottom: 3rem;
}

.bass-tagline .divider {
	color: #00ff88;
}

.sound-wave {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 50px;
}

.sound-wave span {
	width: 4px;
	height: 100%;
	background-color: #00ff88;
	animation: wave 1.5s ease-in-out infinite;
}

.sound-wave span:nth-child(1) { animation-delay: 0s; }
.sound-wave span:nth-child(2) { animation-delay: 0.1s; }
.sound-wave span:nth-child(3) { animation-delay: 0.2s; }
.sound-wave span:nth-child(4) { animation-delay: 0.3s; }
.sound-wave span:nth-child(5) { animation-delay: 0.4s; }
.sound-wave span:nth-child(6) { animation-delay: 0.5s; }
.sound-wave span:nth-child(7) { animation-delay: 0.6s; }
.sound-wave span:nth-child(8) { animation-delay: 0.7s; }
.sound-wave span:nth-child(9) { animation-delay: 0.8s; }
.sound-wave span:nth-child(10) { animation-delay: 0.9s; }

@keyframes wave {
	0%, 100% { height: 10%; }
	50% { height: 100%; }
}

/* Bass Music Section */
.bass-music {
	padding: 5rem 0;
	background-color: #0f0f0f;
	position: relative;
	z-index: 10;
}

.bass-music .section-title {
	color: #00ff88;
	font-weight: 900;
	letter-spacing: 5px;
}

.releases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.release-card {
	background-color: #1a1a1a;
	border: 2px solid transparent;
	transition: var(--transition);
	text-align: center;
}

.release-card:hover {
	border-color: #00ff88;
	transform: translateY(-5px);
}

.release-cover {
	position: relative;
	height: 300px;
	overflow: hidden;
}

.release-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.release-card:hover .release-cover img {
	transform: scale(1.1);
	filter: brightness(0.7);
}

.release-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: rgba(0, 255, 136, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.release-card:hover .release-play {
	opacity: 1;
}

.release-play i {
	font-size: 2rem;
	color: #000;
	margin-left: 5px;
}

.release-card h3 {
	padding: 1.5rem 1rem 0.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #fff;
}

.release-card p {
	padding: 0 1rem 1.5rem;
	color: #888;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.streaming-section {
	text-align: center;
	margin-top: 4rem;
}

.streaming-section h3 {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	letter-spacing: 3px;
}

.streaming-platforms {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.platform-btn {
	padding: 0.8rem 1.5rem;
	background-color: #1a1a1a;
	border: 2px solid #333;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	transition: var(--transition);
}

.platform-btn:hover {
	border-color: #00ff88;
	background-color: #00ff88;
	color: #000;
}

/* Bass Shows Section */
.bass-shows {
	padding: 5rem 0;
	background-color: #0a0a0a;
	position: relative;
	z-index: 10;
}

.bass-shows .section-title {
	color: #00ff88;
	font-weight: 900;
	letter-spacing: 5px;
}

.shows-list {
	max-width: 800px;
	margin: 3rem auto 0;
}

.show-item {
	display: grid;
	grid-template-columns: 100px 1fr 150px;
	gap: 2rem;
	align-items: center;
	padding: 2rem;
	margin-bottom: 1.5rem;
	background-color: #1a1a1a;
	border-left: 4px solid #00ff88;
	transition: var(--transition);
}

.show-item:hover {
	transform: translateX(10px);
	background-color: #222;
}

.show-date {
	text-align: center;
}

.show-date .day {
	display: block;
	font-size: 2.5rem;
	font-weight: 900;
	color: #00ff88;
}

.show-date .month {
	display: block;
	font-size: 1rem;
	letter-spacing: 2px;
	color: #888;
	margin-top: 0.5rem;
}

.show-info h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #fff;
}

.show-info p {
	color: #888;
	font-size: 1rem;
}

.ticket-btn {
	padding: 0.8rem 2rem;
	background-color: transparent;
	border: 2px solid #00ff88;
	color: #00ff88;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	transition: var(--transition);
}

.ticket-btn:hover {
	background-color: #00ff88;
	color: #000;
}

/* Bass About Section */
.bass-about {
	padding: 5rem 0;
	background-color: #0f0f0f;
	position: relative;
	z-index: 10;
}

.about-wrapper {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.bass-about h2 {
	font-size: 3rem;
	margin-bottom: 2rem;
	color: #00ff88;
	font-weight: 900;
	letter-spacing: 5px;
}

.bass-bio {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 2rem;
}

.bass-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.stat-item {
	padding: 2rem;
	background-color: #1a1a1a;
	border: 2px solid #333;
	transition: var(--transition);
}

.stat-item:hover {
	border-color: #00ff88;
}

.stat-item h3 {
	font-size: 3rem;
	color: #00ff88;
	font-weight: 900;
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: #888;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
}

/* Bass Contact Section */
.bass-contact {
	padding: 5rem 0;
	background-color: #0a0a0a;
	text-align: center;
	position: relative;
	z-index: 10;
}

.bass-contact h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #00ff88;
	font-weight: 900;
	letter-spacing: 5px;
}

.bass-contact-btn {
	display: inline-block;
	padding: 1rem 3rem;
	background-color: #00ff88;
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 3rem;
	transition: var(--transition);
}

.bass-contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.bass-social {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.bass-social a {
	width: 50px;
	height: 50px;
	border: 2px solid #333;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #888;
	transition: var(--transition);
}

.bass-social a:hover {
	border-color: #00ff88;
	color: #00ff88;
	transform: rotate(360deg);
}

/* Bass Footer */
.bass-footer {
	background-color: #000;
	border-top: 2px solid #00ff88;
}

.bass-footer a {
	color: #00ff88;
}

/* Coming Soon Page */
.coming-soon {
	background-color: #f8f8f8;
	min-height: 100vh;
}

#coming-soon-hero {
	padding: 8rem 0 5rem;
	min-height: calc(100vh - 100px);
	display: flex;
	align-items: center;
	position: relative;
	z-index: 10;
}

.coming-soon-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.record-animation {
	margin-bottom: 3rem;
}

.spinning-record {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	animation: spin 3s linear infinite;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.coming-soon-title {
	font-size: 4rem;
	margin-bottom: 1rem;
	color: var(--accent-color);
}

.coming-soon-subtitle {
	font-size: 2rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.coming-soon-text {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 3rem;
}

.notify-section {
	margin-bottom: 3rem;
}

.notify-section p {
	margin-bottom: 1rem;
	color: var(--text-light);
}

.notify-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: var(--accent-color);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
}

.notify-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.social-teaser p {
	margin-bottom: 1rem;
	color: var(--text-light);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.social-links a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--text-light);
	transition: var(--transition);
}

.social-links a:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: white;
}

/* Responsive Design for Artist Pages */
@media screen and (max-width: 768px) {
	.artist-nav-links {
		display: none;
	}
	
	.artist-name {
		font-size: 3rem;
	}
	
	.artist-tagline {
		font-size: 1.2rem;
	}
	
	.about-grid,
	.release-showcase {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.artist-stats {
		grid-template-columns: 1fr;
	}
	
	.platform-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.pulse-logo {
		width: 200px;
		height: 200px;
	}
	
	.pulse-title {
		font-size: 2.5rem;
		letter-spacing: 5px;
	}
	
	.music-grid,
	.video-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-grid {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.spinning-record {
		width: 200px;
		height: 200px;
	}
	
	.coming-soon-title {
		font-size: 3rem;
	}
}