body {
            background: linear-gradient(to bottom right, #1f2937, #111827);
            color: #f3f4f6;
        }
        .review-excerpt, .discussion-excerpt {
            position: relative;
            max-height: 8rem;
            overflow: hidden;
        }
        .review-excerpt::after, .discussion-excerpt::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2rem;
            background: linear-gradient(to bottom, transparent, #1f2937);
        }
        .community-card {
            transition: all 0.3s ease;
        }
        .community-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .genre-tag {
            display: inline-block;
            background: #4b5563;
            color: #e5e7eb;
            padding: 0.2rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }