/* index.css */
/* Sezione Categorie */
#categorie {
    background: linear-gradient(135deg, #1a6c29 0%, #2a8c42 100%);
}

/* Sezione Community */
section:nth-of-type(2) {
    background: rgba(36, 36, 36, 0.6);
}

/* Sezione Trending */
section:nth-of-type(3) {
    background: linear-gradient(135deg, #0f270f 0%, #204323 100%);
}

/* Sezione Discord */
section:nth-of-type(4) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Rimuove il sottolineamento e mantiene il colore del testo */
a.feature-card, a.feature-card:hover {
    text-decoration: none;
}

a.feature-card:hover h3, 
a.feature-card:hover p {
    color: white !important;
}

/* Effetto hover più fluido */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}