/* Main CSS file for Island Connect AI Voice Agent */

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    :root {
        --bg-primary: #0A0A0B;
        --bg-secondary: #121214;
        --accent-gold: #FFD700;
        --accent-green: #00C853;
        --text-primary: #FFFFFF;
        --text-secondary: #A1A1AA;
        --glass-bg: rgba(255, 255, 255, 0.03);
        --glass-border: rgba(255, 255, 255, 0.08);
        --transition: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Custom animations if needed beyond Tailwind */
@keyframes pulse-gentle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.animate-pulse-slow {
    animation: pulse-gentle 4s ease-in-out infinite;
}

/* Smooth transitions for interactive elements */
button,
a {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar matching the theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}