/**
 * Audio Player Component Styles
 * Red-themed audio player with waveform visualization
 */

.audio-section {
	background-color: #fff;
	padding: 40px 20px;
	text-align: center;
	animation: audioFadeIn 1s ease-in 0.5s;
	animation-fill-mode: both;
}

.audio-section.red-theme {
	background: linear-gradient(135deg, #2a0000 0%, #4a0000 100%);
	color: #fff;
	animation-delay: 1s;
}

.audio-player {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
	max-width: 800px;
	position: relative;
	overflow: hidden;
}

.audio-player.red-theme {
	background: linear-gradient(145deg, #1a0000, #3d0000);
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
	border: 1px solid #660000;
}

.audio-player.red-theme::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff0000, #ff6666, #ff0000);
	animation: audioPulse 2s infinite;
}

.audio-player h2 {
	font-family: 'Anton', sans-serif;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.5em;
}

.audio-player.red-theme h2 {
	color: #ff4444;
	text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.urgent-badge {
	display: inline-block;
	background: #ff0000;
	color: #fff;
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 0.8em;
	font-weight: bold;
	margin-bottom: 10px;
	animation: audioBlink 1.5s infinite;
}

.waveform {
	height: 100px;
	background-color: #e6f2ff;
	border-radius: 5px;
}

.waveform.red-theme {
	background: linear-gradient(90deg, #330000, #660000, #330000);
	border: 1px solid #990000;
}

.controls {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
}

.controls button {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 1em;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.3s;
	font-weight: 500;
}

.controls button:hover {
	background-color: #0056b3;
	transform: translateY(-1px);
}

.controls.red-theme button {
	background: linear-gradient(145deg, #cc0000, #ff0000);
	border: 1px solid #990000;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.5px;
}

.controls.red-theme button:hover {
	background: linear-gradient(145deg, #ff0000, #ff3333);
	box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
	transform: translateY(-2px);
}

.transcript-section {
	background-color: #f9f9f9;
	padding: 40px 20px;
	animation: audioFadeIn 1s ease-in 1s;
	animation-fill-mode: both;
}

.transcript {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1em;
	line-height: 1.6;
}

.insider-section {
	background-color: #003366;
	color: #fff;
	padding: 40px 20px;
	text-align: center;
	animation: audioFadeIn 1s ease-in 1.5s;
	animation-fill-mode: both;
}

.insider-card {
	max-width: 600px;
	margin: 0 auto;
}

.insider-card h2 {
	font-family: 'Anton', sans-serif;
	font-size: 1.8em;
	margin-bottom: 10px;
}

.insider-card p {
	font-size: 1em;
	margin-bottom: 20px;
}

.share-btn {
	background-color: #ff6600;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 1.2em;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s;
}

.share-btn:hover {
	background-color: #cc5200;
}

.footer {
	background-color: #333;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-size: 0.9em;
	animation: audioFadeIn 1s ease-in 2s;
	animation-fill-mode: both;
}

.footer a {
	color: #ff6600;
	text-decoration: none;
	margin: 0 5px;
}

.footer a:hover {
	text-decoration: underline;
}

/* Audio Component Animations */
@keyframes audioFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes audioPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

@keyframes audioBlink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0.3; }
}

/* Responsive Styles */
@media (max-width: 600px) {
	.header {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px;
	}

	.nav-menu {
		flex-direction: column;
		margin-top: 10px;
		gap: 10px;
	}

	.hero-section {
		padding: 40px 15px;
	}

	.hero-section h1 {
		font-size: 2em;
	}

	.hero-section .cta-btn {
		font-size: 1em;
		padding: 8px 16px;
	}

	.audio-section, .transcript-section, .insider-section {
		padding: 20px 15px;
	}

	.audio-player {
		padding: 15px;
	}

	.controls {
		flex-direction: column;
		gap: 10px;
	}

	.controls button {
		padding: 8px 16px;
		font-size: 0.9em;
	}

	.transcript {
		font-size: 1em;
	}

	.insider-card h2 {
		font-size: 1.5em;
	}

	.share-btn {
		font-size: 1em;
		padding: 8px 16px;
	}
}
