:root {
    --gold: #e3b341;
    --bg: #0e0e10;
    --card: #151517;
    --border: #2a2a2f;
    --muted: #b5b5c0;
    --text: #eaeaea;
    --shadow: 0 8px 28px rgba(0, 0, 0, .25);
    --radius: 5px;
    --page-max: 1040px;
    --gutter: 16px;
    --aside-w: 260px;
    --mrv-h: 190px;
    --mrv-indicators-h: 16px;
    --tease-overlay-height: 72px;
}

@media (max-width: 980px) {
    :root {
        --aside-w: 100%;
        --mrv-h: 170px;
        --mrv-indicators-h: 14px;
    }
}

@media (max-width: 780px) {
    :root {
        --mrv-h: 260px;
        --mrv-indicators-h: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --mrv-h: 220px;
        --mrv-indicators-h: 22px;
    }
}

header {
    display: none;
}

.content-page {
    position: relative;
    z-index: 2;
}

body.rbc-modal-open {
    overflow: hidden;
}

.rbc-layout {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(0, var(--aside-w));
    gap: var(--gutter);
}

.rbc-main, .rbc-aside {
    min-width: 0;
}

.rbc-aside {
    align-self: start;
}

@media (max-width: 980px) {
    .rbc-layout {
        grid-template-columns: 1fr;
        padding: 12px;
        margin-top: 30px;
    }
}

.rbc-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.rbc-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rbc-card.rbc-has-bg {
    background-image: var(--rbc-bg);
    background-size: cover;
    background-position: center;
}

.rbc-bg-veil {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(3px);
    pointer-events: none;
    border-radius: var(--radius);
}

.rbc-card> :not(.rbc-bg-veil) {
    position: relative;
    z-index: 1;
}

.rbc-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 8px;
}

.rbc-title {
    color: #fff;
    margin: 4px 0 2px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
}

.rbc-meta {
    color: var(--muted);
    font-size: .92rem;
}

.rbc-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 1.05rem;
    color: var(--muted);
}

.rbc-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.rbc-author-name {
    font-weight: 600;
    color: var(--text);
}

.rbc-title, .rbc-date, .rbc-author, .rbc-text.rte {
    text-shadow: 0 0 3px rgba(0, 0, 0, .7), 0 0 6px rgba(0, 0, 0, .5);
}

.rbc-text {
    color: #fff;
}

.rbc-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.rbc-image, .rbc-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    -webkit-user-drag: none;
    user-select: none;
}

.rbc-video {
    outline: none;
}

.rbc-media img,
.rbc-image,
.rbc-video {
    max-height: 360px;
    object-fit: contain;
}

@media (max-width: 780px) {
    .rbc-media img, .rbc-image {
        max-width: 100%;
        width: 100% !important;
        height: auto !important;
        max-height: 55vh;
        margin: 0 auto;
        object-fit: contain;
        display: block;
    }
}

.rbc-overlay {
    display: none;
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
    padding: 10px;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.rbc-media:hover .rbc-overlay {
    display: block;
}

.rbc-file-viewer {
    margin-top: 10px;
}

.rbc-file-viewer embed {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: var(--radius);
}

.rbc-body {
    padding: 12px 16px 4px;
}

.rbc-text.rte {
    line-height: 1.6;
    word-wrap: break-word;
}

.rbc-text.rte p {
    margin: 0 0 10px;
}

/* Tease simple */
.rbc-text.teased {
    max-height: 130px;
    overflow: hidden;
    position: relative;
}

.rbc-text.teased::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .65));
}

.rbc-text.rte.teased,
.rbc-mrv-right-text.rte.teased {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.rbc-mrv-right-text.rte.teased {
    padding-right: 0;
}

.rbc-text.rte.teased.teased-locked::after,
.rbc-mrv-right-text.rte.teased.teased-locked::after {
    content: attr(data-tease-msg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--tease-overlay-height) !important;
    padding: 16px 12px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(6px);
    background: linear-gradient(180deg,
            rgba(21, 21, 23, 0) 0%,
            rgba(21, 21, 23, .55) 25%,
            rgba(21, 21, 23, .88) 70%,
            rgba(21, 21, 23, .98) 100%);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.rbc-text.rte.teased.teased-locked.has-tease-link::after,
.rbc-mrv-right-text.rte.teased.teased-locked.has-tease-link::after {
    content: none;
}

.rbc-tease-link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-align: center;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
    backdrop-filter: blur(6px);
    background: var(--gold);
    border-radius: var(--radius);
}

.rbc-tease-link:hover {
    filter: brightness(0.7);
}

.rbc-mr-view {
    margin-top: 12px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.rbc-mrv-zone {
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    height: calc(var(--mrv-h) + 16px);
    overflow: hidden;
}

.rbc-mrv-two {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
    align-items: start;
}

@media (max-width: 780px) {
    .rbc-mrv-two {
        grid-template-columns: 1fr;
    }

    .rbc-mrv-zone {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        margin-bottom: 20px;
    }

    .rbc-mrv-viewport {
        margin-bottom: 12px;
        min-height: 200px;
        height: auto;
    }
}

.rbc-mrv-left {
    min-width: 0;
}

.rbc-mrv-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: var(--mrv-h);
    min-height: var(--mrv-h);
}

.rbc-mrv-left:empty, .rbc-mrv-right:empty {
    display: none;
}

.rbc-mrv-two:has(.rbc-mrv-left:empty) {
    grid-template-columns: 1fr;
}

.rbc-mrv-two:has(.rbc-mrv-right:empty) {
    grid-template-columns: 1fr;
}

.rbc-mrv-zone:has(.rbc-mrv-left:empty):has(.rbc-mrv-right:empty) {
    display: none;
}

.rbc-mrv-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.rbc-mrv-viewport {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
    background: #0e0e10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--mrv-h) - var(--mrv-indicators-h));
    min-height: 140px;
}

.rbc-mrv-track {
    display: flex;
    transition: transform .3s ease;
    height: 100%;
}

.rbc-mrv-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.rbc-mrv-slide:hover {
    transform: translateY(-2px);
}

.rbc-mrv-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
}

.rbc-mrv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: var(--radius);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.rbc-mrv-prev {
    left: 8px;
}

.rbc-mrv-next {
    right: 8px;
}

.rbc-mrv-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    min-height: var(--mrv-indicators-h);
}

.rbc-mrv-dots button {
    width: 8px;
    height: 8px;
    border-radius: var(--radius);
    border: 0;
    background: #555;
    cursor: pointer;
}

.rbc-mrv-dots [aria-selected="true"] {
    background: var(--gold);
}

.rbc-mrv-right-title {
    color: #fff;
    flex: 0 0 auto;
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.rbc-mrv-right-text.rte {
    color: var(--text);
    font-size: .98rem;
    line-height: 1.55;
    flex: 1 1 auto;
    overflow: auto;
    padding-right: 6px;
    scrollbar-gutter: stable both-edges;
}

@media (max-width: 780px) {

    .rbc-mrv-right-text:not(.teased),
    .rbc-text.rte:not(.teased) {
        overflow: visible !important;
    }

    .rbc-mrv-right-text.rte.teased,
    .rbc-text.rte.teased {
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    .rbc-mrv-right-text.rte.teased.teased-locked,
    .rbc-text.rte.teased.teased-locked {
        padding-bottom: calc(var(--tease-overlay-height) * .35 + 10px) !important;
    }

    .rbc-mrv-right-text.rte,
    .rbc-text.rte {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

.rbc-foot {
    padding: 10px 16px 16px;
}

.rbc-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rbc-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--gold);
    color: #0b0b0d;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: filter .15s ease, transform .06s ease;
}

.rbc-btn:hover {
    filter: brightness(1.05);
}

.rbc-btn:active {
    transform: translateY(1px);
}

.rbc-btn-ghost {
    background: #2b2b31;
    color: #fff;
    border-radius: var(--radius);
}

.rbc-aside-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(3px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    margin-bottom: 16px;
    color: var(--text);
}

.rbc-aside-title {
    font-weight: 700;
    margin: 2px 0 10px;
}

.rbc-aside-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rbc-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.rbc-related__card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    overflow: hidden;
    transition: filter .15s ease, transform .06s ease;
}

.rbc-related__card:hover {
    filter: brightness(1.06);
}

.rbc-related__card:active {
    transform: translateY(1px);
}

.rbc-related__thumb {
    position: relative;
    background: #0e0e10;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

.rbc-related__thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: calc(var(--radius) - 1px);
}

.rbc-related__card-title {
    padding: 10px 12px;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 780px) {
    .rbc-related__thumb {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .rbc-related__thumb {
        height: 110px;
    }
}

.rbc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: grid;
    place-items: center;
    padding: 16px;
    z-index: 9999;
}

.rbc-modal {
    width: 100%;
    max-width: 420px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--text);
    overflow: hidden;
    animation: rbc-modal-in .15s ease-out;
}

@keyframes rbc-modal-in {
    from {
        transform: translateY(8px);
        opacity: .85;
    }

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

.rbc-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(227, 179, 65, .18);
    background: linear-gradient(180deg, rgba(227, 179, 65, .10), rgba(227, 179, 65, 0));
}

.rbc-modal-head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.rbc-modal-close {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    border-radius: 10px;
    transition: background .15s ease, color .15s ease;
}

.rbc-modal-close:hover {
    background: rgba(227, 179, 65, .08);
    color: var(--text);
}

.rbc-modal-body {
    padding: 14px;
    font-size: .98rem;
    color: var(--muted);
}

.rbc-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 12px 14px 16px;
    border-top: 1px solid rgba(227, 179, 65, .14);
}

/* Erreurs */
.rbc-error {
    max-width: 800px;
    margin: 20px auto;
    padding: 16px;
    background: #2a1b1b;
    border: 1px solid #5a2e2e;
    border-radius: var(--radius);
    color: #ffb4b4;
}

.rbc-share-modal {
    background: linear-gradient(180deg, rgba(21, 21, 23, .85), rgba(10, 10, 12, .9));
    border: 1px solid rgba(227, 179, 65, .22);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .03);
    border-radius: 14px;
    overflow: hidden;
    max-width: 720px;
    width: min(92vw, 720px);
    backdrop-filter: blur(6px);
    animation: rbc-share-in .18s ease-out;
}

@keyframes rbc-share-in {
    from {
        transform: translateY(8px);
        opacity: .88;
    }

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

.rbc-share-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .2px;
}

.rbc-share-title-ico {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(227, 179, 65, .18), rgba(227, 179, 65, .06));
    color: var(--gold);
    border: 1px solid rgba(227, 179, 65, .28);
}

.rbc-share-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 560px) {
    .rbc-share-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 840px) {
    .rbc-share-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rbc-share-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, .03), rgba(0, 0, 0, .08));
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    transition: transform .06s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    outline: none;
}

.rbc-share-item:hover {
    transform: translateY(-1px);
    border-color: rgba(227, 179, 65, .38);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .35);
    background: radial-gradient(120% 120% at 0% 0%, rgba(227, 179, 65, .08), rgba(0, 0, 0, .10));
}

.rbc-share-item:active {
    transform: translateY(0);
}

.rbc-share-item:focus-visible {
    box-shadow: 0 0 0 3px rgba(227, 179, 65, .35);
}

.rbc-si-ico {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #16161a;
    color: var(--gold);
    border: 1px solid rgba(227, 179, 65, .25);
    flex: 0 0 36px;
}

.rbc-si-label {
    font-weight: 700;
    letter-spacing: .2px;
}

.rbc-si-facebook:hover .rbc-si-ico,
.rbc-si-x:hover .rbc-si-ico,
.rbc-si-linkedin:hover .rbc-si-ico,
.rbc-si-whatsapp:hover .rbc-si-ico,
.rbc-si-telegram:hover .rbc-si-ico,
.rbc-si-reddit:hover .rbc-si-ico,
.rbc-si-email:hover .rbc-si-ico {
    color: #e3b341;
}

.dash-quick-auth {
    position: fixed;
    top: 16px;
    right: calc(16px + 48px + 10px);
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 1100;
}

.dash-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border: none;
    border-radius: 5px;
    background: #1f2937;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    transition: transform .08s ease, filter .15s ease;
}

.dash-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 0 5px #ffd700;
}

.dash-cta:active {
    transform: translateY(1px);
}

.dash-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.dropdown-wrap {
    position: relative;
}

.mini-dd {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    padding: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.mini-dd-item {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
    transition: background .15s ease;
}

.mini-dd-item:hover {
    background: rgba(255, 255, 255, .08);
}

.dash-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border: none;
    border-radius: 5px;
    background: #1f2937;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    transition: transform .08s ease, filter .15s ease;
}

.dash-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 0 5px #ffd700;
}

.dash-cta:active {
    transform: translateY(1px);
}

.dash-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.rbc-logo {
    position: fixed;
    top: 15px;
    left: 20px;
    z-index: 1000;
}

.rbc-logo img {
    height: 80px;
    width: auto;
    display: block;
}

@media (max-width: 780px) {
    .dash-quick-auth, .rbc-logo {
        transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
        will-change: transform, opacity;
    }

    body.rbc-ui-hidden .dash-quick-auth,
    body.rbc-ui-hidden .rbc-logo {
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .rbc-logo img {
        height: 50px !important;
    }
}

.rbc-mrv-slide, .rbc-media {
    position: relative;
}

.rbc-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    cursor: pointer;
    transition: transform .08s ease, filter .15s ease, border-color .15s ease, background .15s ease;
    z-index: 4;
}

.rbc-zoom-btn:hover {
    filter: brightness(0.7);
}

.rbc-zoom-btn:active {
    transform: translateY(1px);
}

.rbc-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .88);
    z-index: 10001;
    padding: 16px;
}

.rbc-lightbox.is-open {
    display: grid;
}

.rbc-lightbox__img-wrap {
    max-width: 95vw;
    max-height: 95vh;
    display: grid;
    place-items: center;
}

.rbc-lightbox__img {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 14px 48px rgba(0, 0, 0, .5);
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.rbc-lightbox__close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(227, 179, 65, .35);
    background: rgba(0, 0, 0, .55);
    color: var(--gold);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    transition: filter .15s ease, border-color .15s ease, transform .08s ease, background .15s ease;
}

.rbc-lightbox__close:hover {
    filter: brightness(1.06);
    border-color: rgba(227, 179, 65, .7);
    background: rgba(0, 0, 0, .65);
}

.rbc-lightbox__close:active {
    transform: translateY(1px);
}

@media (max-width: 480px) {
    .rbc-lightbox__close {
        right: 12px;
    }
}

.tease-link {
    color: #f0c040;
    font-weight: bold;
    text-decoration: underline;
}

.tease-link:hover {
    text-decoration: none;
    color: #ffda66;
}

.rbc-btn--gold {
    background: linear-gradient(180deg, #f3d47a, #e3b341);
    color: #0b0b0d;
    border: 0;
    border-radius: 10px;
    font-weight: 800;
}

.rbc-btn--gold:hover {
    filter: brightness(1.04);
}

.rbc-btn--gold:active {
    transform: translateY(1px);
}

.rbc-related__card--video .rbc-related__thumb {
    position: relative;
}

.rbc-related__video-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    border-radius: 6px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rbc-related__video-badge svg {
    display: block;
}




















/* Version améliorée avec effets modernes */
.rbc-react-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rbc-react-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.rbc-react-btn:hover::before {
    left: 100%;
}

.rbc-react-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(227, 179, 65, 0.4);
}

/* Like actif avec effet glow */
.rbc-react-btn--like.is-active {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border-color: rgba(76, 175, 80, 0.6);
    color: #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

/* Dislike actif avec effet glow */
.rbc-react-btn--dislike.is-active {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.1));
    border-color: rgba(244, 67, 54, 0.6);
    color: #F44336;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
}

.rbc-react-count {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rbc-react-btn.is-active .rbc-react-count {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: scale(1.05);
}


/* Styles pour les miniatures vidéo locales */
.rbc-related__thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rbc-related__card:hover .rbc-related__thumb img {
    transform: scale(1.05);
}

.rbc-related__video-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 600;
}

.rbc-related__video-badge svg {
    display: block;
    flex-shrink: 0;
}

/* Indicateur pour les vidéos locales */
.rbc-related__video-badge span {
    font-size: 0.6rem;
    opacity: 0.8;
}





/* Dropdown Profile */
.rbc-profile-dropdown {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    place-items: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.rbc-profile-dropdown.is-open {
    display: grid;
}

.rbc-profile-card {
    display: flex;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(20, 20, 25, 0.98));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    max-width: 800px;
    width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    gap: 24px;
    align-items: flex-start;
    animation: rbc-profile-in 0.2s ease-out;
    position: relative;
}

@keyframes rbc-profile-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.rbc-profile-left {
    flex: 0 0 auto;
    text-align: center;
    min-width: 0;
}

.rbc-profile-avatar-large {
    width: 300px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 16px;
}

.rbc-profile-right {
    flex: 1;
    color: var(--text);
    min-width: 0;
}

.rbc-profile-greeting {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.rbc-profile-username {
    color: var(--gold);
    font-weight: 600;
}

.rbc-profile-bio {
    line-height: 1.5;
    margin: 16px 0;
    color: var(--muted);
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.rbc-profile-referral {
    background: rgba(227, 179, 65, 0.1);
    border: 1px solid rgba(227, 179, 65, 0.3);
    border-radius: 10px;
    padding: 16px;
    margin-top: 20px;
}

.rbc-profile-referral-title {
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--gold);
    font-size: 1.1rem;
}

.rbc-profile-referral-link {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rbc-referral-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-size: 0.9rem;
    min-width: 0;
}

.rbc-copy-btn {
    padding: 8px 16px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rbc-copy-btn:hover {
    filter: brightness(0.9);
}

.rbc-copy-btn.copied {
    background: transparent !important;
    color: var(--gold) !important;
    border : solid 1px var(--gold) !important;
}

.rbc-profile-close {
    all: unset;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;   
    color: var(--text);    
    cursor: pointer;    
    font-size: 1.2rem;
    z-index: 1;
}


/* Responsive Design */
@media (max-width: 768px) {
    .rbc-profile-dropdown {
        padding: 16px;
    }
    
    .rbc-profile-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        max-width: 500px;
    }
    
    .rbc-profile-left {
        width: 100%;
    }
    
    .rbc-profile-avatar-large {
        width: 250px;
        height: auto;
        margin: 0 auto 12px;
    }
    
    .rbc-profile-right {
        width: 100%;
        text-align: center;
    }
    
    .rbc-profile-greeting {
        font-size: 1.3rem;
    }
    
    .rbc-profile-bio {
        font-size: 0.95rem;
        margin: 12px 0;
    }
    
    .rbc-profile-referral-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rbc-profile-dropdown {
        padding: 12px;
    }
    
    .rbc-profile-card {
        padding: 16px;
        gap: 16px;
        width: 95vw;
    }
    
    /* .rbc-profile-avatar-large {
        width: 150px;
        height: auto;
    } */
    
    .rbc-profile-greeting {
        font-size: 1.2rem;
    }
    
    .rbc-profile-bio {
        font-size: 0.9rem;
    }
    
    .rbc-profile-referral-link {
        flex-direction: column;
        gap: 10px;
    }
    
    .rbc-referral-input {
        width: 100%;
        font-size: 0.85rem;
    }
    
    .rbc-copy-btn {
        width: 100%;
        padding: 10px;
    }
    
    .rbc-profile-close {
        top: -8px;
        right: -8px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 300px) {
    .rbc-profile-avatar-large {
        width: 180px;
        height: auto;
    }
}


@media (max-width: 250px) {
    .rbc-profile-avatar-large {
        display: none;
    }
}


/* Pour les très grands écrans */
@media (min-width: 1200px) {
    .rbc-profile-card {
        max-width: 900px;
    }
    
    .rbc-profile-avatar-large {
        width: 350px;
        height: auto;
    }
    
    .rbc-profile-greeting {
        font-size: 1.7rem;
    }
    
    .rbc-profile-bio {
        font-size: 1.1rem;
    }
}

/* Gestion du texte long */
.rbc-profile-bio {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Scrollbar personnalisée pour la bio */
.rbc-profile-bio::-webkit-scrollbar {
    width: 6px;
}

.rbc-profile-bio::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.rbc-profile-bio::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.rbc-profile-bio::-webkit-scrollbar-thumb:hover {
    background: #d4a62e;
}