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

body {
    font-family: 'Inter', sans-serif;
}

.matrix-rain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(8, 145, 178, 0.1) 0%, rgba(8, 145, 178, 0) 50%);
    z-index: 10;
    pointer-events: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background-color: rgb(8 145 178);
    color: white;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: rgb(14 116 144);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background-color: transparent;
    color: rgb(8 145 178);
    border: 1px solid rgb(8 145 178);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(8, 145, 178, 0.1);
    transform: translateY(-1px);
}

.feature-card {
    background-color: rgb(17 24 39);
    border: 1px solid rgb(31 41 55);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgb(8 145 178);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}