/* features.css - Specialized styles for GPUMD Features Page */

/* Hero Canvas Styling */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Page specific content tweaks to match home.html cards */
.force-field-card {
    /* Extending home.html card style if needed, but mostly using standard classes */
}

/* Stat Box styling to match home.html's feature highlights */
.intro-stat-box {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-stat-box:hover {
    transform: translateY(-5px);
}

/* Smooth 2D Hover Effects for Core Introduction */
.hover-card-smooth {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
}

.hover-card-smooth:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08), 
                0 20px 40px -20px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.hover-stat-smooth {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.hover-stat-smooth:hover {
    background: #ffffff;
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.08);
}

/* Base reveal transition fallback */
@media (prefers-reduced-motion: reduce) {
    .hover-card-smooth:hover,
    .hover-stat-smooth:hover {
        transform: none !important;
        transition: none !important;
    }
}
