<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles for BerrryComputer landing page */

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

/* Base styling */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Dark mode */
.dark {
    color-scheme: dark;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(2deg);
    }
}

/* Subtle hover animations for feature cards */
.feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(90deg, #db2777 0%, #9d174d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced focus styles for better accessibility */
button:focus, a:focus, input:focus {
    outline: 2px solid rgba(219, 39, 119, 0.5);
    outline-offset: 2px;
}

/* Smooth transition for dark mode toggle */
.dark-mode-transition {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Animated underline for navigation links */
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #db2777;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Chat bubble animation */
.chat-bubble-enter {
    opacity: 0;
    transform: scale(0.9);
}

.chat-bubble-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 300ms, transform 300ms;
}

.chat-bubble-exit {
    opacity: 1;
}

.chat-bubble-exit-active {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 300ms, transform 300ms;
}

/* Back to top button fade animation */
.back-to-top-fade-enter {
    opacity: 0;
}

.back-to-top-fade-enter-active {
    opacity: 1;
    transition: opacity 300ms;
}

.back-to-top-fade-exit {
    opacity: 1;
}

.back-to-top-fade-exit-active {
    opacity: 0;
    transition: opacity 300ms;
}</pre></body></html>