@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.gradient-text {
    background: linear-gradient(90deg, #d8b4fe 0%, #93c5fd 50%, #99f6e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mood-option:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.practice-card {
    transition: all 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.chat-message {
    max-width: 80%;
    word-wrap: break-word;
}

/* Animation for breathing exercise */
@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.breathing-circle {
    animation: breathe 8s infinite ease-in-out;
}
