        body {
            margin: 0;
            padding: 40px 20px;
            font-family: "Old Standard TT", serif;
            background: #ffffff;
            color: #1a1a1a;
            text-align: center;
        }
        .header { 
            margin-top: 60px; 
            margin-bottom: 60px; 
            text-align: center;
        }
        h1 { 
            font-size: 48px; 
            margin: 0; 
            font-weight: normal; 
        }
        
.explication {
    margin-top: 15px;
    font-size: 20px;
    color: #1a1a1a;
}

#total-stats {
    margin-top: 20px;
    font-size: 18px;
    font-style: italic;
    color: #595959;
}

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .card:hover { transform: translateY(-5px); }
        .card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }
        .card-content { 
            padding: 20px; flex-grow: 1; 
        }
        .card-title { 
            font-size: 18px;
            min-height: 25px; 
        }
        .voting-section {
            border-top: 1px solid #f0f0f0;
            padding: 15px;
            background: #fafafa;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 10px;
        }
        .star {
            cursor: pointer;
            font-size: 24px;
            color: #ccc;
            transition: color 0.2s;
        }
        .star.active { color: #d4af37; }
        .star.voted { cursor: default; }
        .vote-stats {
            font-size: 13px;
            color: #888;
            font-family: sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #595959;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-link:hover {
    color: #000;
}

.footer {
    margin-top: 40px;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
    padding: 30px;
}

/* Styles du bouton de remontée */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #1a1a1a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            transform: translateY(-5px);
            background: #333;
        }
        #toast {
            visibility: hidden;
            min-width: 250px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 8px;
            padding: 16px;
            position: fixed;
            z-index: 100;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
        }
        #toast.show { visibility: visible; animation: fadein 0.5s, fadeout 0.5s 2.5s; }
        @keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
        @keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }