body {
    background-color: #050505;
    color: #ffffff;
}
.text-gradient {
    background: linear-gradient(to right, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-hover:hover {
    background: linear-gradient(to right, #d8b4fe, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.2);
}
/* Audio Visualizer Animation */
.bar {
    width: 6px;
    background: linear-gradient(to top, #A855F7, #3B82F6);
    border-radius: 9999px;
    animation: bounce 1.2s infinite ease-in-out;
}
.bar.paused {
    animation-play-state: paused;
    transform: scaleY(0.2);
    opacity: 0.3;
    transition: all 0.3s ease;
}
.bar:nth-child(1) { height: 20px; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 40px; animation-delay: 0.3s; }
.bar:nth-child(3) { height: 60px; animation-delay: 0.5s; }
.bar:nth-child(4) { height: 35px; animation-delay: 0.2s; }
.bar:nth-child(5) { height: 50px; animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

/* Transcript Toast Animation */
.transcript-enter {
    opacity: 0;
    transform: translateY(10px);
}
.transcript-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms, transform 300ms;
}

/* Custom Scrollbar for dashboard list */
.dashboard-list::-webkit-scrollbar {
    width: 4px;
}
.dashboard-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.dashboard-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Modal Animation */
.modal-enter {
    opacity: 0;
    transform: scale(0.95);
}
.modal-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-out;
}
.modal-exit {
    opacity: 1;
    transform: scale(1);
}
.modal-exit-active {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.2s ease-in;
}

/* Toast notification for copy */
#copyToast {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Page Transition Utility */
.hidden-page {
    display: none;
}
