/* Voice Gallery Styles */
.voice-gallery {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.voice-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.voice-card:hover {
    transform: translateY(-5px);
}

.voice-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.voice-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.voice-accent {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.play-btn {
    background: #3b82f6;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-btn:hover {
    background: #2563eb;
}

.play-btn.playing {
    background: #ef4444;
}

.wave-animation {
    display: none;
    gap: 3px;
    height: 20px;
    align-items: center;
    margin-top: 1rem;
}

.wave-bar {
    width: 3px;
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes wave {

    0%,
    100% {
        height: 10%;
    }

    50% {
        height: 100%;
    }
}