

.feed-modern-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    width: 100%;
}

.feed-modern-container.olympe-feed-mode {
    max-width: 100%;
    padding: 0;
}

/* Carousel Container */
.feed-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    perspective: 1000px;
    width: 100%;
    position: relative;
}

/* Card principale */
.feed-modern-card {
    background: transparent;
    position: relative;
    flex-shrink: 0;
}

/* Cards latérales (prev/next preview) */
.feed-card-side {
    width: 280px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.3s;
    cursor: pointer;
}

.feed-card-side:hover {
    opacity: 0.6;
    transform: scale(0.9);
}

/* Card centrale (active) */
.feed-card-center {
    width: 500px;
    opacity: 1;
    transform: scale(1);
    z-index: 10;
    margin: 0 auto;
}

/* Bouton retour */
.feed-back-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-back-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

/* Layout Horizontal */
.feed-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Icônes en bas de cover */
.feed-icons-bottom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 15;
}

.feed-tags-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-tags-toggle-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: scale(1.1);
}

/* Wrapper tags - CACHÉ (ancienne version) */
.feed-tags-wrapper {
    display: none !important;
}

/* Bouton icône tags */
.feed-tags-icon-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-tags-icon-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: scale(1.1);
}

/* Point rouge indicateur */
.feed-tags-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #ff0033;
    border-radius: 50%;
    border: 2px solid #0a0a0a;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Container tags */
.feed-tags-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.feed-tag-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.feed-tag-item {
    background: #00ff00;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feed-search-input {
    flex: 1;
    max-width: 250px;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.2s;
}

.feed-search-input:focus {
    outline: none;
    border-color: #00ff00;
    background: rgba(255, 255, 255, 0.08);
}

.feed-search-input::placeholder {
    color: #808080;
}

/* Bouton icône search */
.feed-search-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-search-icon-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: scale(1.1);
}

/* Input search caché par défaut */
.feed-search-input-hidden {
    width: 0;
    max-width: 0;
    padding: 0;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

/* Input search visible après clic */
.feed-search-input-visible {
    flex: 1;
    max-width: 250px;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-family: inherit;
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s;
}

.feed-search-input-visible:focus {
    outline: none;
    border-color: #00ff00;
    background: rgba(255, 255, 255, 0.08);
}

/* Card Inner */
.feed-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.feed-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feed-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0099 0%, #ff0033 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Infos artiste en haut de la cover (mobile uniquement) */
.feed-cover-artist-top-mobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    pointer-events: auto;
    flex-wrap: wrap;
}

/* Infos artiste sur la cover (desktop) - CACHÉ sur desktop, affiché seulement sur mobile */
.feed-cover-artist-info {
    display: none;
}

/* Section artiste sous la cover sur desktop en mode Olympe */
.olympe-artist-section-desktop {
    display: flex;
}

@media (max-width: 768px) {
    .olympe-artist-section-desktop {
        display: none !important;
    }
}

.feed-cover-artist-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
    cursor: pointer;
}

.feed-cover-artist-text {
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.feed-cover-artist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feed-cover-track-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.feed-cover-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 215, 0, 0.25);
    color: #FFD700;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feed-cover-rank-badge i {
    font-size: 0.7rem;
}

.feed-cover-subscribe-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.feed-cover-subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.feed-cover-subscribe-btn.subscribed {
    background: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.4);
    color: #00ff00;
}

/* Badge Top en haut à droite de la cover (PC uniquement) */
.feed-cover-rank-badge-top-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.15) 100%);
    color: #FFD700;
    padding: 0.5rem 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    pointer-events: auto;
}

.feed-cover-rank-badge-top-right i {
    font-size: 0.8rem;
}

.feed-cover-rank-badge-top-right .feed-rank-points {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-left: 0.3rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Styles pour la version mobile (haut de cover) */
.feed-cover-artist-avatar-top {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
    cursor: pointer;
}

.feed-cover-subscribe-btn-top {
    padding: 0.35rem 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.feed-cover-subscribe-btn-top:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.feed-cover-subscribe-btn-top.subscribed {
    background: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.4);
    color: #00ff00;
}

.feed-cover-rank-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    color: #FFD700;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.feed-cover-rank-badge-top i {
    font-size: 0.65rem;
}

.feed-cover-rank-badge-top .feed-rank-points {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFD700;
    margin-left: 0.25rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Pseudo et titre au-dessus de la barre de temps (mobile) */
.feed-time-bar-artist-info-mobile {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feed-time-bar-artist-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.feed-time-bar-track-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.feed-time-bar-artist-name::after {
    content: ' • ';
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.25rem;
}

/* Overlay sur cards latérales */
.feed-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.feed-card-overlay h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.feed-card-overlay p {
    margin: 0.25rem 0 0 0;
    font-size: 0.8rem;
    color: #ccc;
}

/* Bouton Play overlay sur card centrale */
.feed-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.9);
    border: none;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
    opacity: 0;
}

.feed-card-inner:hover .feed-play-overlay,
.feed-play-overlay.visible {
    display: flex;
    opacity: 1;
}

.feed-play-overlay:hover {
    background: #00ff00;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Barre de temps sous cover centrale */
.feed-time-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    z-index: 6;
}

/* Barre de temps externe (mobile) */
.feed-time-bar-external {
    display: none;
    background: transparent;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feed-time-bar-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.feed-time-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00dd00);
    transition: width 0.1s linear;
}

.feed-time-bar-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: white;
}

.feed-card-empty {
    visibility: hidden;
}

/* Section artiste (sous carousel) - largeur cover */
.feed-artist-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1rem auto;
    max-width: 400px;
    width: 100%;
}

.feed-artist-info-center {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.feed-artist-info-center:hover {
    opacity: 0.8;
}

.feed-artist-avatar-center {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.feed-artist-text h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.feed-artist-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: none; /* Entier sur PC */
}

/* Mobile : raccourcir les titres */
@media (max-width: 768px) {
    .feed-artist-text p {
        max-width: 150px;
    }
}

/* Bouton S'abonner centre */
.feed-subscribe-btn-center {
    padding: 0.6rem 2rem;
    background: #00ff00;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.feed-subscribe-btn-center:hover {
    background: #00cc00;
}

.feed-subscribe-btn-center.subscribed {
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
}

/* Player Section */
.feed-player-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Barre de progression */
.feed-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.feed-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00 0%, #00cc00 100%);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Affichage du temps */
.feed-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #808080;
    margin-bottom: 1.25rem;
}

/* Bouton Play/Pause */
.feed-play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    border: none;
    color: #000;
    font-size: 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
}

.feed-play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 255, 0, 0.6);
}

.feed-play-button:active {
    transform: scale(0.95);
}

/* Tags */
.feed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Stats */
.feed-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #808080;
}

.feed-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-stats i {
    color: #00ff00;
}

/* Bouton Partage */
.feed-share-btn {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.2s;
}

.feed-share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.feed-share-btn i {
    font-size: 1rem;
}

/* Navigation tracks (Précédent/Suivant) */
.feed-track-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feed-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.feed-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Contrôles modernes */
.feed-modern-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feed-control-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feed-control-btn:hover {
    transform: scale(1.05);
}

.feed-control-btn:active {
    transform: scale(0.95);
}

/* Bouton Like (vert, central, plus grand) */
.feed-btn-like {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.4);
}

.feed-btn-like:hover {
    box-shadow: 0 12px 32px rgba(0, 255, 0, 0.6);
}

/* Contrôles centre (prev, like, next) */
.feed-controls-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1rem auto;
    max-width: 400px;
    width: 100%;
}

.feed-ctrl-btn {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.2s;
    background: #00ff00;
    color: #000;
}

.feed-ctrl-btn:hover:not(:disabled) {
    transform: scale(1.05);
}

.feed-ctrl-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.feed-ctrl-prev,
.feed-ctrl-next {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(145deg, #00ff00, #00dd00);
    box-shadow: 
        inset -2px -2px 5px rgba(0, 0, 0, 0.3),
        inset 2px 2px 5px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 255, 0, 0.3);
}

.feed-ctrl-like-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-share-bubble {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #00ff00, #00dd00);
    border: 2px solid #000;
    color: #000;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.4);
}

.feed-share-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.6);
}

.feed-ctrl-like {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #00ff00, #00dd00, #00ff00);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.feed-ctrl-like i {
    color: #000;
}

/* Animation Like Prestigieuse */
@keyframes likeAnimationPrestige {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.feed-ctrl-like.liked {
    animation: likeAnimationPrestige 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feed-ctrl-like.liked i::before {
    content: "\f004";
    font-weight: 900;
}

.feed-ctrl-like.liked i {
    color: #ff0033 !important;
}

/* État permanent quand liké */
.feed-ctrl-like.liked-state i {
    color: #ff0033 !important;
}

.feed-ctrl-like.liked-state i::before {
    content: "\f004";
    font-weight: 900;
}

/* Grand bouton CONTACTER */
.feed-contact-big {
    display: block;
    width: 400px;
    max-width: 90%;
    margin: 1rem auto 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #00ff00 0%, #00dd00 50%, #00ff00 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
    position: relative;
    left: 0;
}

/* Mobile : Bouton Contacter plus petit */
@media (max-width: 768px) {
    .feed-contact-big {
        width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        margin: 0.75rem auto 1.5rem;
    }
}

.feed-contact-big:hover {
    background: linear-gradient(135deg, #00dd00 0%, #00cc00 50%, #00dd00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 255, 0, 0.5);
}

/* 3 icônes en haut à droite - CACHÉES sur desktop */
.feed-top-icons {
    display: none !important;
}

.feed-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-icon-btn:hover {
    background: rgba(0, 255, 0, 0.8);
    color: #000;
    transform: scale(1.1);
}

/* Bouton Partager coin (mobile barre temps) */
.feed-share-corner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-share-corner:hover {
    background: rgba(0, 255, 0, 0.8);
    color: #000;
    transform: scale(1.1);
}

/* Bouton Search flottant */
.feed-search-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #00ff00, #00dd00);
    border: none;
    color: #000;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.6);
}

/* Barre de recherche Feed (même style que dashboard) */
.feed-search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feed-search-full {
    flex: 1;
    padding: 0.75rem 1.5rem;
    padding-right: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
}

.feed-search-full:focus {
    outline: none;
    border-color: #00ff00;
    background: rgba(255, 255, 255, 0.08);
}

.feed-search-full::placeholder {
    color: #808080;
}

.feed-search-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff00;
    pointer-events: none;
}

/* Dropdown résultats recherche Feed */
.feed-search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.feed-search-results.show {
    display: block;
}

.feed-search-section {
    padding: 1rem;
}

.feed-search-section h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feed-search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.feed-search-result-item:hover {
    background: rgba(0, 255, 0, 0.1);
}

.feed-search-result-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.feed-search-result-info {
    flex: 1;
}

.feed-search-result-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.feed-search-result-subtitle {
    font-size: 0.8rem;
    color: #808080;
    margin: 0;
}

.feed-search-no-results {
    padding: 2rem;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* Responsive Laptop/PC Portable - Multiples breakpoints pour meilleure adaptation */

/* Très petits laptops (1024px - 1280px) */
@media (max-width: 1280px) and (min-width: 1024px) {
    .feed-modern-container {
        max-width: 95%;
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
    
    .feed-card-center {
        width: 320px !important;
    }
    
    .feed-card-side {
        width: 160px !important;
    }
    
    .feed-carousel {
        gap: 0.75rem;
    }
    
    .feed-contact-big {
        width: 300px;
        font-size: 1rem;
        padding: 0.9rem 1.25rem;
    }
    
    .feed-artist-section {
        max-width: 320px;
        gap: 1.25rem;
    }
    
    .feed-controls-center {
        max-width: 320px;
        gap: 1.25rem;
    }
    
    .feed-ctrl-prev,
    .feed-ctrl-next {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    
    .feed-ctrl-like {
        width: 68px;
        height: 68px;
        font-size: 1.6rem;
    }
}

/* Laptops moyens (1281px - 1440px) */
@media (max-width: 1440px) and (min-width: 1281px) {
    .feed-modern-container {
        max-width: 96%;
        padding: 1rem 1.75rem 2rem 1.75rem;
    }
    
    .feed-card-center {
        width: 360px !important;
    }
    
    .feed-card-side {
        width: 190px !important;
    }
    
    .feed-carousel {
        gap: 1rem;
    }
    
    .feed-contact-big {
        width: 340px;
        font-size: 1.05rem;
    }
    
    .feed-artist-section {
        max-width: 360px;
        gap: 1.5rem;
    }
    
    .feed-controls-center {
        max-width: 360px;
        gap: 1.5rem;
    }
    
    .feed-ctrl-prev,
    .feed-ctrl-next {
        width: 54px;
        height: 54px;
    }
    
    .feed-ctrl-like {
        width: 72px;
        height: 72px;
    }
}

/* Laptops standards (1441px - 1600px) */
@media (max-width: 1600px) and (min-width: 1441px) {
    .feed-modern-container {
        max-width: 97%;
    }
    
    .feed-card-center {
        width: 400px !important;
    }
    
    .feed-card-side {
        width: 210px !important;
    }
    
    .feed-carousel {
        gap: 1.25rem;
    }
    
    .feed-contact-big {
        width: 360px;
        font-size: 1.1rem;
    }
    
    .feed-artist-section {
        max-width: 400px;
    }
    
    .feed-controls-center {
        max-width: 400px;
    }
    
    .feed-ctrl-prev,
    .feed-ctrl-next {
        width: 56px;
        height: 56px;
    }
    
    .feed-ctrl-like {
        width: 74px;
        height: 74px;
    }
}

/* Tablettes paysage et petits laptops (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .feed-modern-container {
        max-width: 100%;
        padding: 1rem 1rem 2rem 1rem;
    }
    
    .feed-card-center {
        width: 300px !important;
    }
    
    .feed-card-side {
        width: 150px !important;
    }
    
    .feed-carousel {
        gap: 0.6rem;
    }
    
    .feed-contact-big {
        width: 280px;
        font-size: 0.95rem;
        padding: 0.85rem 1.15rem;
    }
    
    .feed-artist-section {
        max-width: 300px;
        gap: 1rem;
    }
    
    .feed-artist-avatar-center {
        width: 42px;
        height: 42px;
    }
    
    .feed-artist-text h3 {
        font-size: 0.95rem;
    }
    
    .feed-artist-text p {
        font-size: 0.8rem;
    }
    
    .feed-controls-center {
        max-width: 300px;
        gap: 1rem;
    }
    
    .feed-ctrl-prev,
    .feed-ctrl-next {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feed-ctrl-like {
        width: 66px;
        height: 66px;
        font-size: 1.5rem;
    }
    
    .feed-tags-container {
        max-width: 300px;
        padding: 0.75rem;
    }
    
    .feed-back-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .feed-modern-container {
        padding: 0 0 120px 0 !important;
        max-width: 100vw;
        width: 100vw;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 1rem !important;
        overflow-x: hidden !important;
        margin: 0 !important;
    }
    
    /* Image centrale centrée */
    .feed-card-center {
        width: 70vw !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .feed-card-center .feed-card-inner {
        width: 100% !important;
        height: auto !important;
    }
    
    .feed-card-center .feed-cover {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        background: #000 !important;
    }
    
    
    /* Container en flexbox column pour respecter order */
    .feed-modern-container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .feed-carousel {
        padding: 0 !important;
        margin-bottom: 1rem !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        justify-content: center !important;
    }
    
    /* Tags en colonne sur mobile */
    .feed-tags-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .feed-tag-item {
        display: inline-block;
        margin-right: 0.5rem;
        margin-bottom: 0.25rem;
    }
    
    /* Espaces ultra réduits entre sections */
    .feed-artist-section {
        margin: 0.25rem auto 0.25rem;
    }
    
    .feed-controls-center {
        margin: 0.5rem 0 0.5rem;
        gap: 1.5rem !important;
    }
    
    .feed-contact-big {
        margin: 0.5rem auto 2rem;
        order: 3;
    }
    
    /* Barre de temps centrée - même largeur que l'image */
    .feed-time-bar-external {
        order: 1;
        margin: 0.5rem auto 0.25rem !important;
        width: 70vw !important;
        max-width: 450px !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
    }
    
    .feed-time-bar-progress {
        height: 4px !important;
        margin-bottom: 0.5rem !important;
        width: 100% !important;
    }
    
    .feed-time-bar-times {
        font-size: 0.75rem !important;
        font-weight: 500 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    
    .feed-artist-section {
        order: 0;
    }
    
    .feed-controls-center {
        order: 2;
    }
    
    
    /* Bouton Play/Pause CACHÉ par défaut sur mobile, affiché au touch */
    .feed-play-overlay {
        display: flex;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .feed-play-overlay.show-mobile {
        opacity: 1;
    }
    
    /* Carousel centré avec images latérales */
    .feed-carousel {
        gap: 0 !important;
        overflow: visible !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }
    
    .feed-card-center .feed-card-inner {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
    }
    
    /* Cacher les images latérales en mobile */
    .feed-card-side {
        display: none !important;
    }
    
    /* Barre de temps sur la cover (comme desktop) */
    .feed-card-inner .feed-time-bar {
        display: block !important;
    }
    
    /* Cacher le temps total, garder seulement temps actuel */
    #time-total,
    #time-total-mobile {
        display: none !important;
    }
    
    /* Barre externe CACHÉE sur mobile */
    .feed-time-bar-external {
        display: none !important;
    }
    
    /* Afficher les infos en haut de la cover sur mobile */
    .feed-cover-artist-top-mobile {
        display: flex !important;
    }
    
    /* Cacher les infos en bas de la cover sur mobile */
    .feed-cover-artist-info {
        display: none !important;
    }
    
    /* Afficher pseudo et titre au-dessus de la barre de temps sur mobile */
    .feed-time-bar-artist-info-mobile {
        display: flex !important;
    }
    
    /* Header responsive mobile - caché par défaut mais peut être affiché via le bouton */
    .olympe-header-section {
        display: none;
    }
    
    .olympe-header-section.show-mobile {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
        border-radius: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Afficher le titre de la compétition au-dessus de la cover sur mobile */
    .olympe-competition-title-mobile {
        display: flex !important;
        margin-bottom: 0.3rem !important;
        margin-top: 0 !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .olympe-competition-title-text {
        font-size: 1.15rem !important;
        font-weight: 900 !important;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Afficher le bouton pour afficher le popup sur mobile (inline) */
    .olympe-mobile-popup-btn-inline {
        display: flex !important;
        width: 22px !important;
        height: 22px !important;
        border-radius: 50% !important;
        background: rgba(30, 30, 30, 0.9) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #fff !important;
        font-weight: 700 !important;
        font-size: 0.7rem !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
    
    /* Afficher le texte des boutons sur mobile */
    .olympe-header-btn span {
        display: inline !important;
    }
    
    .olympe-header-content {
        gap: 0.75rem;
    }
    
    .olympe-header-top {
        gap: 0.75rem;
    }
    
    .olympe-header-buttons {
        gap: 0.5rem;
    }
    
    .olympe-header-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .olympe-header-btn span {
        font-size: 0.7rem;
    }
    
    .olympe-header-competition-name {
        font-size: 0.95rem;
        flex: 1;
        min-width: 0;
    }
    
    .olympe-header-close-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    /* Cacher le badge top en haut à droite sur mobile */
    .feed-cover-rank-badge-top-right {
        display: none !important;
    }
    
    /* Cacher bouton partage */
    .feed-share-corner {
        display: none !important;
    }
    
    .feed-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feed-modern-card {
        padding: 0;
    }
    
    .feed-cover-container {
        border-radius: 12px;
    }
    
    .feed-back-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feed-artist-avatar {
        width: 42px;
        height: 42px;
    }
    
    .feed-track-title {
        font-size: 1.1rem;
    }
    
    .feed-artist-name {
        font-size: 0.85rem;
    }
    
    .feed-play-button {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .feed-modern-controls {
        gap: 1rem;
    }
    
    .feed-control-btn {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .feed-btn-like {
        width: 76px;
        height: 76px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .feed-cover-placeholder {
        font-size: 4rem;
    }
    
    .feed-player-section {
        padding: 1rem;
    }
    
    .feed-control-btn {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .feed-btn-like {
        width: 68px;
        height: 68px;
        font-size: 1.5rem;
    }
}

/* Animations Swipe */
@keyframes swipeRight {
    to {
        transform: translateX(150%) rotate(20deg);
        opacity: 0;
    }
}

@keyframes swipeLeft {
    to {
        transform: translateX(-150%) rotate(-20deg);
        opacity: 0;
    }
}

.feed-swipe-right {
    animation: swipeRight 0.6s ease-out forwards;
}

.feed-swipe-left {
    animation: swipeLeft 0.6s ease-out forwards;
}

/* ====================================
   OLYMPE CUP FEED MODE
   ==================================== */

.olympe-feed-mode {
    /* Background supprimé comme demandé */
}

/* Titre compétition au-dessus de la cover (mobile uniquement) */
.olympe-competition-title-mobile {
    display: none;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0;
    padding: 0.4rem 0.75rem;
    line-height: 1.2;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.olympe-competition-title-text {
    font-size: 1.15rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.olympe-competition-title-text:hover {
    transform: scale(1.05);
}

/* Bouton pour afficher le popup sur mobile (inline avec le titre) */
.olympe-mobile-popup-btn-inline {
    display: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.olympe-mobile-popup-btn-inline:hover {
    background: rgba(40, 40, 40, 0.95);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Header Olympe sous le header principal */
.olympe-header-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(102, 126, 234, 0.12) 100%);
    backdrop-filter: blur(30px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding: 1rem 2rem;
    margin: 0 -2rem 2rem -2rem;
    border-radius: 0 0 20px 20px;
}

.olympe-header-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.olympe-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.olympe-header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.olympe-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
}

.olympe-header-competition-name {
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 0;
}

.olympe-header-competition-name:hover {
    transform: scale(1.05);
}

.olympe-header-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.olympe-header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

.olympe-header-btn i {
    font-size: 0.9rem;
}

.olympe-header-participate-btn,
.olympe-header-ranking-btn,
.olympe-header-return-btn {
    /* Utilise la classe .olympe-header-btn */
}

.olympe-header-return-btn {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.olympe-header-return-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.olympe-header-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.olympe-header-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}


/* Bouton Voir l'ensemble */
.olympe-view-all-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.olympe-view-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.olympe-view-all-btn i {
    font-size: 1rem;
}

.olympe-view-all-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}


/* Section complète de la compétition */
.olympe-full-competition {
    margin-top: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.olympe-full-competition-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.olympe-competition-tracks {
    flex: 1;
}

.olympe-competition-title-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.olympe-competition-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.olympe-competition-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.olympe-competition-list::-webkit-scrollbar {
    width: 6px;
}

.olympe-competition-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.olympe-competition-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.olympe-competition-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.olympe-competition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.olympe-competition-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(4px);
}

.olympe-competition-item.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.olympe-competition-position {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
}

.olympe-competition-points {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.25rem;
}

.feed-rank-points {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    margin-left: 0.3rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.olympe-ranking-points {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.25rem;
}

.olympe-my-position-points {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.25rem;
}
    min-width: 70px;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.olympe-competition-cover,
.olympe-competition-item img,
.olympe-competition-list img,
.olympe-full-ranking-item img {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
    border-radius: 4px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: block !important;
}

.olympe-competition-info {
    flex: 1;
    min-width: 0;
}

.olympe-competition-track-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.3rem;
}

.olympe-competition-artist-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.olympe-competition-votes {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFD700;
    flex-shrink: 0;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.olympe-competition-votes i {
    color: #ff0033;
    font-size: 0.85rem;
}

.olympe-competition-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Ma position */
.olympe-my-position {
    min-width: 250px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.olympe-my-position-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem 0;
}

.olympe-my-position-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.olympe-my-position-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.olympe-my-position-badge i {
    font-size: 1rem;
}

.olympe-my-position-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

.olympe-ranking-sidebar::-webkit-scrollbar {
    width: 6px;
}

.olympe-ranking-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.olympe-ranking-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.olympe-ranking-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.olympe-ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.olympe-ranking-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.olympe-ranking-header h3 i {
    color: #FFD700;
    font-size: 1.1rem;
}

.olympe-ranking-update-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    background: rgba(0, 255, 0, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.olympe-ranking-pulse {
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.olympe-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.olympe-ranking-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.olympe-ranking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 215, 0, 0);
    transition: all 0.3s ease;
}

.olympe-ranking-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.olympe-ranking-item:hover::before {
    background: rgba(255, 215, 0, 0.6);
}

.olympe-ranking-top3 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.olympe-ranking-top3::before {
    background: rgba(255, 215, 0, 0.6) !important;
}

.olympe-ranking-position {
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    min-width: 36px;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.olympe-ranking-cover {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.olympe-ranking-info {
    flex: 1;
    min-width: 0;
}

.olympe-ranking-track-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.olympe-ranking-artist-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.olympe-ranking-votes {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    flex-shrink: 0;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.olympe-ranking-votes i {
    color: #ff0033;
    font-size: 0.8rem;
}

/* Icône trophée sur les tracks de compétition dans le feed */
.feed-competition-trophy {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.feed-competition-trophy:hover {
    background: rgba(255, 215, 0, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
}

.feed-competition-trophy i {
    color: #000;
    font-size: 1.2rem;
}

/* Badge classement dans l'olympe */
.feed-olympe-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.15) 100%);
    color: #FFD700;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feed-olympe-rank-badge i {
    font-size: 0.75rem;
}

/* Répertoire complet sous le bouton contacter */
.olympe-full-ranking {
    width: 100%;
    margin-top: 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.olympe-full-ranking-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.olympe-full-ranking-title i {
    font-size: 1.1rem;
}

.olympe-full-ranking-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

@media (max-width: 768px) {
    .olympe-full-ranking-list {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        max-height: none !important;
    }
}

.olympe-full-ranking-list::-webkit-scrollbar {
    width: 6px;
}

.olympe-full-ranking-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.olympe-full-ranking-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.olympe-full-ranking-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.olympe-full-ranking-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.olympe-full-ranking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 215, 0, 0);
    transition: all 0.3s ease;
}

.olympe-full-ranking-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.olympe-full-ranking-item:hover::before {
    background: rgba(255, 255, 255, 0.1);
}

.olympe-full-ranking-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.olympe-full-ranking-item.active::before {
    background: rgba(255, 255, 255, 0.15);
}

.olympe-full-ranking-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.olympe-full-ranking-position {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    min-width: 65px;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.olympe-full-ranking-cover,
.olympe-full-ranking-item-header img {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
    border-radius: 4px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    display: block !important;
}

.olympe-full-ranking-info {
    flex: 1;
    min-width: 0;
}

.olympe-full-ranking-track-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.olympe-full-ranking-artist-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.olympe-full-ranking-votes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 0.5rem;
}

.olympe-full-ranking-votes i {
    color: #ff0033;
    font-size: 0.85rem;
}

.olympe-full-ranking-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .olympe-full-ranking {
        padding: 1rem !important;
        margin: 0 -1rem !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    .olympe-full-ranking-title {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    .olympe-full-ranking-list {
        grid-template-columns: 1fr !important;
        max-height: none !important;
        gap: 0.5rem !important;
        padding-right: 0 !important;
    }
    
    .olympe-full-ranking-item {
        padding: 0.75rem !important;
        gap: 0.5rem !important;
        border-radius: 12px !important;
    }
    
    .olympe-full-ranking-item-header {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .olympe-full-ranking-cover,
    .olympe-full-ranking-item-header img {
        width: 25px !important;
        height: 25px !important;
        max-width: 25px !important;
        max-height: 25px !important;
    }
    
    .olympe-competition-cover,
    .olympe-competition-item img,
    .olympe-competition-list img {
        width: 25px !important;
        height: 25px !important;
        max-width: 25px !important;
        max-height: 25px !important;
    }
    
    .olympe-full-ranking-position {
        min-width: 50px !important;
        font-size: 0.75rem !important;
        padding: 0.3rem 0.4rem !important;
    }
    
    .olympe-full-ranking-track-title {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .olympe-full-ranking-artist-name {
        font-size: 0.75rem !important;
    }
    
    .olympe-full-ranking-votes {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
        margin-top: 0.5rem !important;
    }
    
    .olympe-full-ranking-info {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    
    .feed-rank-points {
        font-size: 0.7rem !important;
        padding: 0.1rem 0.3rem !important;
    }
    
    .feed-cover-rank-badge-top .feed-rank-points {
        font-size: 0.65rem !important;
        padding: 0.1rem 0.25rem !important;
    }
    
    .olympe-competition-item {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
    }
    
    .olympe-competition-position {
        font-size: 0.8rem !important;
    }
    
    .olympe-competition-track-title {
        font-size: 0.85rem !important;
    }
    
    .olympe-competition-artist-name {
        font-size: 0.75rem !important;
    }
    
    .olympe-competition-votes {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .olympe-full-ranking {
        padding: 0.75rem !important;
    }
    
    .olympe-full-ranking-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .olympe-full-ranking-item {
        padding: 0.6rem !important;
        gap: 0.4rem !important;
    }
    
    .olympe-full-ranking-item-header {
        gap: 0.4rem !important;
    }
    
    .olympe-full-ranking-position {
        min-width: 45px !important;
        font-size: 0.7rem !important;
        padding: 0.25rem 0.35rem !important;
    }
    
    .olympe-full-ranking-track-title {
        font-size: 0.8rem !important;
    }
    
    .olympe-full-ranking-artist-name {
        font-size: 0.7rem !important;
    }
    
    .olympe-full-ranking-votes {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.5rem !important;
    }
    
    .olympe-competition-item {
        padding: 0.6rem !important;
        gap: 0.5rem !important;
    }
    
    .olympe-competition-position {
        font-size: 0.75rem !important;
    }
    
    .olympe-competition-track-title {
        font-size: 0.8rem !important;
    }
    
    .olympe-competition-artist-name {
        font-size: 0.7rem !important;
    }
    
    /* Sur mobile, le classement doit être tout en bas */
    .olympe-full-competition {
        position: relative;
        margin-top: auto;
        padding-top: 2rem;
    }
    
    .olympe-feed-mode .feed-modern-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .olympe-full-competition-content {
        flex-direction: column;
    }
    
    .olympe-my-position {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

.olympe-ranking-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Bouton pour réafficher le header (PC uniquement) */
.olympe-show-header-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0.7) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.olympe-show-header-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 215, 0, 0.9) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Olympe Feed */
@media (max-width: 768px) {
    .olympe-header-section {
        padding: 0.75rem 1rem;
        margin: 0 -1rem 1.5rem -1rem;
    }
    
    .olympe-header-content {
        gap: 1rem;
    }
    
    .olympe-header-left {
        gap: 1rem;
    }
    
    .olympe-header-badge {
        font-size: 0.95rem;
    }
    
    .olympe-header-competition-name {
        font-size: 0.9rem;
    }
    
    .olympe-header-return-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .olympe-header-close-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .olympe-view-all-bottom {
        border-radius: 16px 16px 0 0;
        padding: 0.85rem;
        font-size: 0.9rem;
    }
    
    .olympe-full-competition-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .olympe-my-position {
        min-width: auto;
        width: 100%;
    }
    
    .olympe-competition-list {
        max-height: 400px;
    }
    
    /* Ajouter padding en bas pour le bouton fixe */
    .olympe-feed-mode .feed-modern-container {
        padding-bottom: 80px;
    }
    
    /* Cacher le bouton pour réafficher le header sur mobile (celui en bas à droite) */
    .olympe-show-header-btn {
        display: none !important;
    }
}