body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a; /* A slightly darker base */
}

/* -- Enhanced 3D Card Hover Effect -- */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.card-3d:hover {
    box-shadow: 0 40px 50px -20px rgba(0, 200, 255, 0.2), 0 0 15px rgba(0, 200, 255, 0.1);
}

/* -- Scroll Animation Setup -- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -- Hero Text Animation -- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#hero h1 {
    animation: fadeInDown 1s ease-out forwards;
}
#hero p {
    animation: fadeInDown 1s ease-out 0.2s forwards;
    opacity: 0; /* Start hidden */
}
#hero .hero-buttons {
     animation: fadeInDown 1s ease-out 0.4s forwards;
     opacity: 0; /* Start hidden */
}

/* -- Glowing Divider -- */
.glow-divider {
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}
