/* MameNode — Styles additionnels */
.km-public-shell { min-height: 100vh; display: flex; flex-direction: column; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }

/* Cartes fonctionnalités */
.group:hover .group-hover\:bg-\[\#c1121f\] { background-color: #c1121f; }
.group:hover .group-hover\:text-white { color: white; }

/* Boutons */
.btn-primary {
    background-color: #c1121f;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
}
.btn-primary:hover { background-color: #a00f1a; transform: scale(1.05); }

/* Glassmorphism */
.glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }

/* Smooth scroll */
html { scroll-behavior: smooth; }
