
body {
	padding: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
	overflow-x: hidden;
}

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

.pulse {
    animation: pulse 2s infinite;
}

.glow {
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.7);
    transition: text-shadow 0.3s ease;
}
.glow:hover {
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.9);
}
/* Enhanced audio player styles */
audio {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

audio:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

audio::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    background-color: #FF6B00;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: white;
}

audio::-webkit-media-controls-timeline {
    background-color: rgba(255, 107, 0, 0.3);
    border-radius: 25px;
    margin-left: 10px;
    margin-right: 10px;
}

audio::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 107, 0, 0.3);
    border-radius: 25px;
    padding-left: 8px;
    padding-right: 8px;
}
/* Rock section styles */
#rock .bg-black {
    transition: all 0.3s ease;
}

#rock .bg-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}
