/* Base gradient background */
.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Hero text gradient */
.hero-text {
    background: linear-gradient(90deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth transitions */
.transition {
    transition: all 0.3s ease;
}

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

/* Focus area card hover effect */
.bg-gray-800 {
    transition: transform 0.3s ease;
}

.bg-gray-800:hover {
    transform: translateY(-5px);
}

/* Button hover animation */
button {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}
