/* Demos Page Specific Styles */
.demos-hero {
    padding: 120px 0 60px;
    background: var(--secondary-dark);
    text-align: center;
}

.demos-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--text-light) 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demos-section {
    padding: 80px 0;
    min-height: 80vh;
    background: var(--primary-dark);
}

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

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.demo-card:hover::before {
    opacity: 1;
}

.demo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* Custom Audio Player Styling */
.audio-player-wrapper {
    position: relative;
    margin: 1.5rem 0;
}

.audio-player {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    height: 50px;
    outline: none;
}

audio::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.05);
}

audio::-webkit-media-controls-play-button {
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.waveform-visualizer {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0.5;
}

.waveform-bar {
    width: 3px;
    background: var(--accent-gold);
    border-radius: 3px;
    transition: height 0.2s ease;
}

.demo-card:hover .waveform-bar {
    animation: wave 1s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 25px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 30px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 15px; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 20px; animation-delay: 0.7s; }

@keyframes wave {
    0%, 100% { height: var(--height); }
    50% { height: calc(var(--height) * 0.5); }
}

.demo-info {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.demo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-genre {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* No demos message */
.no-demos {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}

.no-demos i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}