
    body {
        background-color: #000000;
        color: #FFFFFF;
        font-family: 'Montserrat', sans-serif;
    }
    
    .communaute-container {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .section-title {
        color: #FF0000;
        font-family: 'Public Sans', sans-serif;
        font-weight: 900;
        font-size: 1.5rem;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .btn-view-all {
        background: linear-gradient(135deg, #FF0000, #7C1414);
        border: none;
        color: #FFFFFF;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 20px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .btn-view-all:hover {
        background: linear-gradient(135deg, #7C1414, #FF0000);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        color: #FFFFFF;
        text-decoration: none;
    }
    
    .discussion-card {
        background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        border: 2px solid #7C1414;
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .discussion-card:hover {
        border-color: #FF0000;
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
        transform: translateY(-2px);
    }
    
    .discussion-header {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .film-thumbnail {
        width: 60px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #FF0000;
        margin-right: 1rem;
    }
    
    .film-placeholder {
        width: 60px;
        height: 80px;
        background: linear-gradient(135deg, #7C1414, #FF0000);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }
    
    .discussion-info h6 {
        color: #FF0000;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .discussion-meta {
        color: #CCCCCC;
        font-size: 0.9rem;
    }
    
    .discussion-content {
        color: #E0E0E0;
        line-height: 1.5;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .discussion-footer {
        display: flex;
        justify-content: between;
        align-items: center;
        color: #999;
        font-size: 0.8rem;
    }
    
    .game-card {
        background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        border: 2px solid #7C1414;
        border-radius: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
        overflow: hidden;
        margin-bottom: 1rem;
    }
    
    .game-card:hover {
        border-color: #FF0000;
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
        transform: translateY(-2px);
    }
    
    .game-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
        background: linear-gradient(135deg, #7C1414, #FF0000);
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-title {
        color: #FF0000;
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    
    .game-meta {
        color: #CCCCCC;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .game-date {
        color: #999;
        font-size: 0.8rem;
    }
    
    .btn-add {
        background: linear-gradient(135deg, #FF0000, #7C1414);
        border: none;
        color: #FFFFFF;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 25px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .btn-add:hover {
        background: linear-gradient(135deg, #7C1414, #FF0000);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        color: #FFFFFF;
        text-decoration: none;
    }
    
    .comments-count {
        position: absolute;
        top: 10px;
        right: 15px;
        background: rgba(255, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }
