/* Monica AI Partnership Styles for W33Keys */
.monica-ai-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid #8b9dc3;
    position: relative;
    overflow: hidden;
}

.monica-ai-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
}

.monica-ai-logo {
    height: 32px;
    width: auto;
    filter: brightness(1.1);
}

.monica-ai-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #8b9dc3;
    transition: all 0.3s ease;
}

.monica-ai-cta:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    border-color: #9bb0d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.monica-feature-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(139, 157, 195, 0.3);
    transition: all 0.3s ease;
}

.monica-feature-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(139, 157, 195, 0.5);
    transform: translateY(-2px);
}

.monica-ai-glow {
    animation: monicaGlow 2s ease-in-out infinite alternate;
}

@keyframes monicaGlow {
    from {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    }
    to {
        box-shadow: 0 8px 30px rgba(118, 75, 162, 0.4);
    }
}

.monica-ai-pulse {
    animation: monicaPulse 3s ease-in-out infinite;
}

@keyframes monicaPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .monica-ai-banner {
        padding: 12px !important;
    }
    
    .monica-ai-logo {
        height: 24px;
    }
    
    .monica-feature-card {
        margin-bottom: 16px;
    }
}

/* Integration with existing W33Keys theme */
.monica-ai-section {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
}
