/* Community specific styles */
.community-card {
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.community-icon {
    transition: transform 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.1);
}

.guideline-item {
    transition: all 0.3s ease;
}

.guideline-item:hover {
    background-color: #f9fafb;
    padding-left: 1rem;
}

.stats-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.community-cta {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
}

.community-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.community-cta:hover::before {
    left: 100%;
}
