    .widget-container {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        border: 1px solid #e5e5e5;
        margin-bottom: 20px;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 40px;
        gap: 40px;
    }

    .title-section {
        /*flex: 0 0 auto;*/
    }

    /* Style pour l'image du challenge */
    .challenge-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }

    .rankings-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        flex: 1;
    }

    .ranking-section {
        background: #fafafa;
        border-radius: 16px;
        padding: 24px;
        border: 1px solid #e8e8e8;
    }

    .section-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .waf-row {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .waf-row:last-child {
        border-bottom: none;
    }

    .waf-row:hover {
        background: rgba(0, 122, 255, 0.02);
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 8px;
    }

    .rank-number {
        font-size: 1.1rem;
        font-weight: 600;
        color: #666;
        width: 20px;
        text-align: center;
    }

    .rank-separator {
        color: #ccc;
        font-weight: 400;
    }

    .athlete-info {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .athlete-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #e8e8e8;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .men-section .athlete-avatar {
        border: 2px solid #007AFF;
    }

    .women-section .athlete-avatar {
        border: 2px solid #34C759;
    }

    .athlete-avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .avatar-icon {
        width: 20px;
        height: 20px;
        fill: #999;
    }

    .athlete-details {
        flex: 1;
    }

    .athlete-name {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-primary-lighter);
        margin-bottom: 2px;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .women-section .athlete-name {
        color: var(--color-success-dark);
    }

    .athlete-name:hover {
        text-decoration: underline;
    }

    .points {
        font-size: 1rem;
        font-weight: 600;
        min-width: 70px;
        text-align: right;
    }

    /* Message quand pas de données */
    .no-data {
        text-align: center;
        padding: 60px 20px;
        color: #666;
        font-style: italic;
    }

    @media (max-width: 1050px) {
        .header {
            flex-direction: column;
            gap: 20px;
        }

        .rankings-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            width: 100%;
        }

        .ranking-section {
            width: 100%;
            max-width: none;
            margin: 0;
            box-sizing: border-box;
        }

        .widget-container {
            padding: 24px;
            margin: 10px;
        }

        .challenge-image {
            max-width: 100%;
            margin-bottom: 15px;
        }

        .waf-row {
            gap: 12px;
            width: 100%;
        }

        .athlete-name {
            font-size: 0.9rem;
        }

        .points {
            font-size: 0.9rem;
        }
    }

    /* Styles spécifiques pour mobile portrait */
    @media (max-width: 768px) {
        .widget-container {
            padding: 16px;
            margin: 5px;
            border-radius: 16px;
        }

        .rankings-grid {
            gap: 20px;
        }

        .ranking-section {
            padding: 16px;
            border-radius: 12px;
        }

        .waf-row {
            gap: 8px;
            padding: 12px 0;
        }

        .athlete-info {
            gap: 8px;
            flex: 1;
            min-width: 0;
            /* Permet au flex item de se rétrécir */
        }

        .athlete-avatar {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            /* Empêche l'avatar de se rétrécir */
        }

        .athlete-name {
            font-size: 0.85rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .points {
            font-size: 0.85rem;
            min-width: 60px;
            flex-shrink: 0;
            /* Empêche les points de se rétrécir */
        }

        .rank-number {
            font-size: 1rem;
            width: 18px;
            flex-shrink: 0;
        }

        .section-title {
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .challenge-image {
            border-radius: 8px;
            margin-bottom: 12px;
        }
    }

    /* Styles pour très petits écrans */
    @media (max-width: 480px) {
        .widget-container {
            padding: 12px;
            margin: 2px;
        }

        .ranking-section {
            padding: 12px;
        }

        .athlete-name {
            font-size: 0.8rem;
        }

        .points {
            font-size: 0.8rem;
            min-width: 50px;
        }

        .rank-number {
            font-size: 0.9rem;
            width: 16px;
        }

        .athlete-avatar {
            width: 28px;
            height: 28px;
        }

        .waf-row {
            gap: 6px;
            padding: 10px 0;
        }

        .section-title {
            font-size: 1.1rem;
        }
    }

    /* Styles spécifiques pour mobile portrait */
    @media (max-width: 768px) {
        .widget-container {
            padding: 16px;
            margin: 5px;
            border-radius: 16px;
        }

        .rankings-grid {
            gap: 20px;
        }

        .ranking-section {
            padding: 16px;
            border-radius: 12px;
        }

        .waf-row {
            gap: 8px;
            padding: 12px 0;
        }

        .athlete-info {
            gap: 8px;
            flex: 1;
            min-width: 0;
            /* Permet au flex item de se rétrécir */
        }

        .athlete-avatar {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            /* Empêche l'avatar de se rétrécir */
        }

        .athlete-name {
            font-size: 0.85rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .points {
            font-size: 0.85rem;
            min-width: 60px;
            flex-shrink: 0;
            /* Empêche les points de se rétrécir */
        }

        .rank-number {
            font-size: 1rem;
            width: 18px;
            flex-shrink: 0;
        }

        .section-title {
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .challenge-image {
            border-radius: 8px;
            margin-bottom: 12px;
        }
    }

    /* Styles pour très petits écrans */
    @media (max-width: 480px) {
        .widget-container {
            padding: 12px;
            margin: 2px;
        }

        .ranking-section {
            padding: 12px;
        }

        .athlete-name {
            font-size: 0.8rem;
        }

        .points {
            font-size: 0.8rem;
            min-width: 50px;
        }

        .rank-number {
            font-size: 0.9rem;
            width: 16px;
        }

        .athlete-avatar {
            width: 28px;
            height: 28px;
        }

        .waf-row {
            gap: 6px;
            padding: 10px 0;
        }

        .section-title {
            font-size: 1.1rem;
        }
    }

    /* Animation d'entrée */
    .waf-row {
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.5s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }