/*:root {
    --bg: #030305;
    --bg-soft: #07070b;
    --panel: #0b0b10;
    --panel-2: #111018;
    --border: #251120;
    --border-hot: #ff2f9b;
    --pink: #ff3ea5;
    --pink-soft: #a81964;
    --text: #f5f3f7;
    --muted: #7d7782;
    --muted-2: #b1aab7;
    --green: #19ff7a;
    --sidebar: 74px;
}*/

:root {
    --bg: #070303;
    --bg-soft: #100606;
    --panel: #140909;
    --panel-2: #1d0f0c;
    --border: #351b15;
    --border-hot: #ff784a;
    --pink: #ff4d3d;
    --pink-soft: #9d2d22;
    --text: #fff5f2;
    --muted: #887875;
    --muted-2: #c3aeaa;
    --green: #ffd166;
    --sidebar: 74px;
}


* {
    box-sizing: border-box;
}

html {
    scrollbar-color: var(--pink-soft) #050509;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 92% 18%, rgba(255, 47, 155, 0.16), transparent 32%),
        radial-gradient(circle at 55% 0%, rgba(255, 47, 155, 0.08), transparent 24%),
        linear-gradient(180deg, #020203 0%, #050507 44%, #030305 100%);
    color: var(--text);
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    letter-spacing: 0.03em;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 62, 165, 0.28) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.18;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            rgba(255,255,255,0.018) 50%,
            rgba(0,0,0,0.04) 50%
        );
    background-size: 100% 4px;
    opacity: 0.35;
    z-index: 999;
}

/* SIDEBAR */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar);
    background: rgba(8, 8, 13, 0.96);
    border-right: 1px solid #1d101b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    gap: 8px;
    z-index: 50;
    box-shadow: 12px 0 35px rgba(0,0,0,0.45);
}

.sidebar .logo {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #3a1830;
    border-radius: 10px;
    background: linear-gradient(180deg, #16101a, #09090d);
    font-size: 22px;
    box-shadow: inset 0 0 18px rgba(255, 62, 165, 0.14);
    margin-bottom: 8px;
}

.sidebar a {
    width: 58px;
    min-height: 52px;
    color: #b2aeba;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    line-height: 1.1;
    font-weight: 800;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 8px;
    opacity: 0.8;
}

.sidebar a:hover,
.sidebar a.active {
    color: var(--pink);
    border-color: #401531;
    background: rgba(255, 62, 165, 0.08);
    box-shadow: inset 3px 0 0 var(--pink);
    opacity: 1;
}

/* LAYOUT */

.main {
    margin-left: var(--sidebar);
    padding: 18px 22px 42px;
}

.hero {
    position: relative;
    min-height: 210px;
    padding-top: 2px;
    /*padding-right: 260px;*/
}

.hero h1 {
    margin: 0;
    max-width: 1100px;
    color: #f9f5fb;
    text-transform: uppercase;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}

.hero h1 span,
.hero .hot {
    color: var(--pink);
    text-shadow: 0 0 22px rgba(255, 62, 165, 0.42);
}

.hero p {
    max-width: 720px;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
    margin: 16px 0 0;
}

/* TOP BUTTONS */

.top-actions {
    position: fixed;
    top: 20px;
    right: 22px;
    display: flex;
    gap: 10px;
    z-index: 60;
}

.top-actions a,
.top-actions button {
    border: 1px solid #7d2557;
    background: rgba(23, 10, 20, 0.82);
    color: #ffd8ef;
    border-radius: 8px;
    padding: 11px 16px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 62, 165, 0.12);
}

.top-actions a:hover,
.top-actions button:hover {
    border-color: var(--pink);
    color: white;
}

/* SEARCH */

.search {
    margin-top: 34px;
    display: flex;
    width: min(520px, 100%);
    height: 46px;
}

.search input {
    flex: 1;
    background: #07070b;
    border: 2px solid var(--pink);
    color: white;
    padding: 0 16px;
    border-radius: 7px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    outline: none;
    text-transform: uppercase;
    box-shadow:
        inset 0 0 20px rgba(255, 62, 165, 0.04),
        0 0 24px rgba(255, 62, 165, 0.08);
}

.search input::placeholder {
    color: #8c7f8b;
}

.search button {
    margin-left: 10px;
    background: #15101a;
    color: var(--pink);
    border: 1px solid #7d2557;
    border-radius: 7px;
    padding: 0 18px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.search button:hover {
    background: var(--pink);
    color: white;
}

.result-count {
    margin-top: 13px;
    color: #817784;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

/* VIDEO GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(210px, 1fr));
    gap: 15px;
    margin-top: 14px;
}

.card {
    position: relative;
    background: linear-gradient(180deg, #0b0b10, #07070a);
    border: 1px solid #25111f;
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    box-shadow:
        0 10px 28px rgba(0,0,0,0.38),
        inset 0 0 0 1px rgba(255,255,255,0.015);
    transition: 0.16s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: #9d2d22;
    box-shadow:
        0 16px 34px rgba(0,0,0,0.52),
        0 0 24px rgba(255, 62, 165, 0.13);
}

.card::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 25px;
    background: var(--pink);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 18px rgba(255, 62, 165, 0.8);
    z-index: 3;
}

.card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-head {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 10px 7px 15px;
    background: rgba(5, 5, 8, 0.96);
    border-bottom: 1px solid #24111f;
}

.card h2 {
    margin: 0;
    color: #ece7ef;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.watch {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--pink);
    background: rgba(255, 62, 165, 0.09);
    border: 1px solid #661e49;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.watch::before {
    content: "●";
    font-size: 8px;
}

.thumb {
    position: relative;
    background: #111;
    overflow: hidden;
}

.card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    transition: 0.18s ease;
}

.card:hover img {
    transform: scale(1.035);
}

.duration {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.62);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 900;
    text-shadow: 0 1px 2px black;
}

.card-body {
    padding: 10px 10px 12px;
}

.meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8f8792;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    color: #c9b7c5;
    background: #22111d;
    border: 1px solid #4a1b36;
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

/* PLAYER PAGE */

.player {
    margin-top: 18px;
    background: #050507;
    border: 1px solid #271321;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 35px rgba(255, 62, 165, 0.08);
}

.player iframe,
.player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 7px;
    background: black;
}

/* PAGINATION */

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 34px 0 8px;
}

.pagination a,
.pagination span {
    color: #d8cad7;
    background: #100b12;
    border: 1px solid #38172b;
    border-radius: 7px;
    min-width: 38px;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.pagination a:hover,
.pagination .current {
    color: white;
    border-color: var(--pink);
    background: rgba(255, 62, 165, 0.14);
}

/* FLOATING CATALOG BOX */

.live-catalog {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 235px;
    background: rgba(7, 13, 12, 0.92);
    border: 1px solid rgba(25, 255, 122, 0.35);
    border-radius: 13px;
    padding: 15px 17px;
    z-index: 70;
    box-shadow:
        0 0 30px rgba(25, 255, 122, 0.12),
        0 18px 40px rgba(0,0,0,0.55);
}

.live-catalog strong {
    display: block;
    color: #7f8882;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.live-catalog .number {
    color: var(--green);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.live-catalog .bar {
    margin-top: 10px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), rgba(25,255,122,0.15));
}

.live-catalog small {
    display: block;
    margin-top: 8px;
    color: #7a837d;
    font-size: 10px;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 1700px) {
    .grid {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
    }
}

@media (max-width: 1400px) {
    .grid {
        grid-template-columns: repeat(4, minmax(210px, 1fr));
    }
}

@media (max-width: 1100px) {
    .hero {
        padding-right: 0;
    }

    .top-actions {
        position: static;
        margin-left: var(--sidebar);
        padding: 16px 22px 0;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(190px, 1fr));
    }

    .live-catalog {
        display: none;
    }
}

@media (max-width: 760px) {
    :root {
        --sidebar: 0px;
    }

    .main {
        margin-left: 0;
        padding: 16px;
    }

    .top-actions {
        margin-left: 0;
        padding: 14px 16px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 11px;
    }

    .card-head {
        height: 42px;
    }

    .watch {
        display: none;
    }
}

@media (max-width: 460px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.category-list {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(6, minmax(160px, 1fr));
    gap: 14px;
}

.category-tile {
    min-height: 92px;
    background: linear-gradient(180deg, #0b0b10, #07070a);
    border: 1px solid #25111f;
    border-radius: 9px;
    padding: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.category-tile:hover {
    border-color: var(--pink);
    box-shadow: 0 0 24px rgba(255, 62, 165, 0.14);
}

.category-tile strong {
    color: #f5eef5;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.category-tile span {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.no-comments {
    margin-top: 10px;
    color: #7d7580;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer {
    margin-top: 36px;
    border-top: 1px solid #322431;
    padding: 44px 0 28px;
}

.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: #f7f1f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-footer p {
    color: #8d858f;
    font-size: 12px;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 900;
}

.site-footer a {
    display: block;
    color: var(--pink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.site-footer a:hover {
    color: white;
}

.footer-button {
    display: inline-block !important;
    margin-top: 12px;
    border: 1px solid #7d2557;
    background: rgba(255, 62, 165, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 38px auto 0;
    padding-top: 18px;
    border-top: 1px solid #2b202b;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #6f6871;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
}

.footer-bottom span:last-child {
    display: flex;
    gap: 16px;
}

.footer-bottom a {
    margin: 0;
    color: #7d7580;
}

@media (max-width: 1200px) {
    .category-list {
        grid-template-columns: repeat(4, minmax(160px, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .category-list {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom span:last-child {
        flex-direction: column;
        gap: 8px;
    }
}

.similar-section {
    margin-top: 28px;
}

.similar-section h2 {
    color: #f4edf4;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 14px;
}

.similar-grid {
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    margin-top: 0;
}

@media (max-width: 1400px) {
    .similar-grid {
        grid-template-columns: repeat(4, minmax(180px, 1fr));
    }
}

@media (max-width: 900px) {
    .similar-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }
}

/* =========================================================
   VIDEO PAGE - GOONIT-LIKE LAYOUT
   À COLLER À LA FIN DE style.css
========================================================= */

.video-page {
    background:
        radial-gradient(circle at 8% 34%, rgba(255, 47, 155, 0.15), transparent 28%),
        radial-gradient(circle at 91% 38%, rgba(255, 47, 155, 0.23), transparent 31%),
        radial-gradient(circle at 45% 102%, rgba(255, 47, 155, 0.12), transparent 28%),
        linear-gradient(180deg, #020203 0%, #050506 48%, #080006 100%);
}

.video-page .top-bar {
    display: none;
}

.video-page .top-actions {
    position: fixed;
    top: 24px;
    right: 26px;
    z-index: 80;
}

.video-page .top-actions a {
    padding: 11px 18px;
    font-size: 10px;
    border-radius: 8px;
    background: rgba(34, 10, 25, 0.88);
    border: 1px solid #8a2a62;
    color: #ffd4eb;
    box-shadow: 0 0 24px rgba(255, 62, 165, 0.16);
}

.video-main {
    margin-left: var(--sidebar);
    padding: 24px 24px 0;
}

.video-header {
    padding: 0 260px 0 18px;
}

.video-header h1 {
    margin: 0;
    max-width: 1320px;
    color: #f8f4f8;
    font-size: clamp(28px, 2.5vw, 45px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.05);
}

.video-header p {
    margin: 14px 0 0;
    color: #89818c;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.breadcrumb {
    margin-top: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #746c77;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.breadcrumb a {
    color: var(--pink);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.watch-layout {
    width: min(760px, calc(100vw - var(--sidebar) - 80px));
    margin: 28px auto 0;
}

.player-shell {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid #29272d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.015),
        0 22px 80px rgba(0,0,0,0.55);
}

.player-shell iframe,
.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
}

.empty-player {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #58515b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.video-info-box {
    margin-top: 18px;
    background: rgba(8, 8, 12, 0.92);
    border: 1px solid #2e2a31;
    border-radius: 10px;
    padding: 20px 20px 22px;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.015),
        0 18px 70px rgba(0,0,0,0.42);
}

.video-info-box h2 {
    margin: 0 0 16px;
    color: #f0edf2;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.video-tags .tag {
    display: inline-flex;
    align-items: center;
    color: #ffd8ee;
    background: #341628;
    border: 1px solid #8e3463;
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.video-tags .tag:hover {
    color: #fff;
    border-color: var(--pink);
    background: rgba(255, 62, 165, 0.24);
}

.video-description {
    margin: 0;
    color: #aaa3ad;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.video-stats {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #8d858f;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.video-stats span {
    background: transparent;
    border: 0;
    padding: 0;
}

.video-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.video-links a {
    color: var(--pink);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.video-links a:hover {
    color: white;
}

/* boutons sous player, alignés à gauche comme sur l'image */

.interaction-row {
    margin: 24px 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.interaction-row button {
    background: #19171c;
    color: #c6bcc7;
    border: 1px solid #39313a;
    border-radius: 7px;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.interaction-row button:hover {
    border-color: var(--pink);
    color: white;
}

.interaction-row span {
    color: #625b65;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

/* commentaires */

.comments-section {
    margin: 22px 0 0 18px;
    padding-right: 18px;
}

.comments-section h2 {
    color: var(--pink);
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.comment-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255,255,255,0.045);
    border-radius: 7px;
    padding: 13px 16px;
}

.comment-box p {
    margin: 0;
    color: #8e858f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.comment-box span {
    color: var(--pink);
}

.no-comments {
    margin: 12px 0 0;
    color: #77707a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

/* similaires */

.similar-section {
    margin: 28px 0 0 18px;
    padding-right: 18px;
}

.similar-section h2 {
    color: #f4edf4;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 14px;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(185px, 1fr));
    gap: 14px;
    margin-top: 0;
}

.similar-grid .card-head {
    height: 36px;
}

.similar-grid .card h2 {
    font-size: 10px;
}

/* footer comme screenshot */

.site-footer {
    margin-top: 26px;
    margin-left: calc(-1 * 24px);
    margin-right: calc(-1 * 24px);
    border-top: 1px solid #3a3038;
    background: rgba(0, 0, 0, 0.58);
    padding: 44px 24px 30px;
}

.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: #f7f1f7;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.site-footer p {
    color: #8d858f;
    font-size: 11px;
    line-height: 1.65;
    text-transform: uppercase;
    font-weight: 900;
}

.site-footer a {
    display: block;
    color: var(--pink);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.site-footer a:hover {
    color: white;
}

.footer-button {
    display: inline-block !important;
    margin-top: 12px;
    border: 1px solid #7d2557;
    background: rgba(255, 62, 165, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 38px auto 0;
    padding-top: 18px;
    border-top: 1px solid #2b202b;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #6f6871;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 900;
}

.footer-bottom span:last-child {
    display: flex;
    gap: 16px;
}

.footer-bottom a {
    margin: 0;
    color: #7d7580;
}

/* responsive */

@media (max-width: 1500px) {
    .similar-grid {
        grid-template-columns: repeat(5, minmax(180px, 1fr));
    }
}

@media (max-width: 1250px) {
    .similar-grid {
        grid-template-columns: repeat(4, minmax(180px, 1fr));
    }

    .watch-layout {
        width: min(760px, calc(100vw - var(--sidebar) - 48px));
    }
}

@media (max-width: 900px) {
    .video-header {
        padding-right: 0;
    }

    .watch-layout {
        width: 100%;
    }

    .similar-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .video-main {
        margin-left: 0;
        padding: 18px 16px 0;
    }

    .video-page .top-actions {
        position: static;
        padding: 12px 16px 0;
        justify-content: flex-end;
    }

    .video-header {
        padding: 0;
    }

    .video-header h1 {
        font-size: 26px;
    }

    .breadcrumb {
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .interaction-row,
    .comments-section,
    .similar-section {
        margin-left: 0;
        padding-right: 0;
    }

    .site-footer {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom,
    .footer-bottom span:last-child {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .similar-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SIDEBAR ICONES
========================================================= */

.sidebar .logo {
    text-decoration: none;
}

.sidebar a {
    width: 58px;
    min-height: 35px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    text-align: center;
}

.nav-ico {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.nav-ico svg {
    width: 18px;
    height: 18px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-label {
    display: block;
    font-size: 8px;
    line-height: 1.1;
    letter-spacing: 0.06em;
    font-weight: 900;
    text-transform: uppercase;
}

.sidebar-tip {
    margin-top: auto;
    margin-bottom: 6px;
    border: 1px solid #61203f !important;
    background: rgba(255, 62, 165, 0.07);
}

/* =========================================================
   PAGE CATEGORIES OVERVIEW
========================================================= */

.categories-page {
    background:
        radial-gradient(circle at 8% 36%, rgba(255, 47, 155, 0.15), transparent 28%),
        radial-gradient(circle at 92% 40%, rgba(255, 47, 155, 0.20), transparent 31%),
        linear-gradient(180deg, #020203 0%, #050507 44%, #030305 100%);
}

.category-main {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 40px;
}

.cat-overview-hero {
    padding: 0 0 26px;
    max-width: 980px;
}

.cat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 38px;
    color: #7e7680;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cat-breadcrumb a {
    color: var(--pink);
    text-decoration: none;
}

.cat-breadcrumb a:hover {
    color: white;
}

.cat-overview-hero h1 {
    margin: 0;
    max-width: 920px;
    color: #f7f2f8;
    font-size: clamp(34px, 3.8vw, 62px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.cat-overview-hero p {
    margin: 24px 0 0;
    max-width: 1040px;
    color: #88808a;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.popular-searches-section,
.browse-categories-section {
    margin-top: 32px;
}

.popular-searches-section h2,
.browse-categories-section h2 {
    margin: 0 0 18px;
    color: #655f68;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 14px;
}

.popular-card {
    min-height: 126px;
    padding: 18px 18px 16px;
    border-radius: 12px;
    border: 1px solid #25202a;
    background:
        linear-gradient(180deg, rgba(10,10,15,0.96), rgba(7,7,10,0.98));
    text-decoration: none;
    color: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.015),
        0 16px 35px rgba(0,0,0,0.35);
    transition: 0.16s ease;
}

.popular-card.featured {
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 62, 165, 0.16), transparent 65%),
        linear-gradient(180deg, rgba(56,14,35,0.85), rgba(14,10,18,0.95));
    border-color: #7d2557;
}

.popular-card:hover {
    transform: translateY(-2px);
    border-color: var(--pink);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.42),
        0 0 22px rgba(255, 62, 165, 0.10);
}

.popular-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.popular-card h3 {
    margin: 0;
    color: #f5eef4;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.popular-card p {
    margin: 0;
    color: #6f6872;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 900;
    text-transform: uppercase;
}

.popular-badge,
.popular-arrow {
    flex: 0 0 auto;
    color: var(--pink);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 14px;
}

.browse-card {
    min-height: 142px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #25202a;
    background:
        linear-gradient(180deg, rgba(10,10,15,0.96), rgba(7,7,10,0.98));
    text-decoration: none;
    color: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.015),
        0 16px 35px rgba(0,0,0,0.35);
    transition: 0.16s ease;
}

.browse-card:hover {
    transform: translateY(-2px);
    border-color: var(--pink);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.42),
        0 0 22px rgba(255, 62, 165, 0.10);
}

.browse-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.browse-card-head strong {
    color: #f4eef4;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.browse-card-head span {
    color: var(--pink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.browse-card p {
    margin: 0;
    color: #756d77;
    font-size: 11px;
    line-height: 1.65;
    font-weight: 900;
    text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1600px) {
    .popular-grid {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }

    .browse-grid {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }
}

@media (max-width: 1200px) {
    .popular-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .browse-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 760px) {
    .category-main {
        padding: 18px 16px 28px;
    }

    .cat-overview-hero h1 {
        font-size: 34px;
    }

    .popular-grid,
    .browse-grid {
        grid-template-columns: 1fr;
    }

    .sidebar a {
        min-height: 54px;
    }
}

/* =========================================================
   AGE GATE
========================================================= */

.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
}

.age-gate-box {
    position: relative;
    width: min(430px, 100%);
    background: rgba(8, 8, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 34px 28px 30px;
    text-align: center;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.75),
        0 0 40px rgba(255, 62, 165, 0.12);
}

.age-gate-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-size: 25px;
}

.age-gate-box h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.age-gate-box p {
    width: min(330px, 100%);
    margin: 0 auto 28px;
    color: #aaa3ad;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.age-enter {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--pink);
    color: #16000c;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 0 28px rgba(255, 62, 165, 0.22);
}

.age-enter:hover {
    filter: brightness(1.12);
}

.age-exit {
    display: inline-block;
    margin-top: 22px;
    color: #77707a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.age-exit:hover {
    color: #fff;
}

/* =========================================================
   MOBILE / RESPONSIVE FIX
   Age gate + menu mobile
========================================================= */

@media (max-width: 760px) {

    :root {
        --sidebar: 0px;
    }

    body {
        padding-bottom: 82px;
        overflow-x: hidden;
    }

    .main,
    .category-main,
    .video-main {
        margin-left: 0 !important;
        padding: 16px 14px 96px !important;
        width: 100%;
    }

    /* MENU MOBILE EN BAS */

    .sidebar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100% !important;
        height: 74px !important;
        z-index: 9990 !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;

        padding: 8px 10px !important;
        gap: 8px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        background: rgba(7, 7, 11, 0.98) !important;
        border-right: 0 !important;
        border-top: 1px solid #32162b !important;
        box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.72) !important;
        backdrop-filter: blur(10px);
    }

    .sidebar::-webkit-scrollbar {
        height: 0;
    }

    .sidebar .logo {
        flex: 0 0 48px !important;
        width: 48px !important;
        height: 48px !important;
        margin: 0 !important;
        font-size: 22px !important;
    }

    .sidebar a {
        flex: 0 0 62px !important;
        width: 62px !important;
        min-width: 62px !important;
        min-height: 54px !important;
        height: 54px !important;

        padding: 6px 4px !important;
        border-radius: 9px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;

        font-size: 8px !important;
        line-height: 1.05 !important;
    }

    .sidebar a.active {
        border-color: #7d2557 !important;
        background: rgba(255, 62, 165, 0.14) !important;
        box-shadow: inset 0 3px 0 var(--pink) !important;
    }

    .nav-ico,
    .nav-ico svg {
        width: 17px !important;
        height: 17px !important;
    }

    .nav-label {
        font-size: 7px !important;
        line-height: 1.05 !important;
    }

    .sidebar-tip {
        margin: 0 !important;
    }

    /* TOP ACTIONS */

    .top-actions,
    .video-page .top-actions,
    .video-actions {
        position: static !important;
        margin: 0 !important;
        padding: 10px 14px 0 !important;
        justify-content: flex-end !important;
        display: flex !important;
    }

    .top-actions a,
    .top-actions button {
        padding: 9px 12px !important;
        font-size: 9px !important;
    }

    /* HERO MOBILE */

    .hero {
        min-height: auto !important;
        padding: 0 !important;
    }

    .hero h1 {
        font-size: 30px !important;
        line-height: 0.98 !important;
        letter-spacing: 0.08em !important;
    }

    .hero p {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .search {
        width: 100% !important;
        height: auto !important;
        gap: 8px !important;
        margin-top: 26px !important;
    }

    .search input {
        min-width: 0 !important;
        height: 44px !important;
        font-size: 12px !important;
    }

    .search button {
        margin-left: 0 !important;
        height: 44px !important;
        padding: 0 14px !important;
        font-size: 10px !important;
    }

    /* GRILLE MOBILE */

    .grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .card-head {
        height: 38px !important;
    }

    .watch {
        display: none !important;
    }

    .card h2 {
        font-size: 10px !important;
    }

    .live-catalog {
        display: none !important;
    }
}

/* =========================================================
   AGE GATE RESPONSIVE
========================================================= */

@media (max-width: 760px) {

    .age-gate-overlay {
        padding: 18px !important;
        align-items: center !important;
        justify-items: center !important;
    }

    .age-gate-backdrop {
        background: rgba(0, 0, 0, 0.78) !important;
        backdrop-filter: blur(10px) !important;
    }

    .age-gate-box {
        width: min(360px, calc(100vw - 32px)) !important;
        max-height: calc(100vh - 120px) !important;
        overflow-y: auto !important;

        padding: 28px 20px 24px !important;
        border-radius: 13px !important;
    }

    .age-gate-icon {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 14px !important;
        font-size: 23px !important;
    }

    .age-gate-box h2 {
        font-size: 16px !important;
        letter-spacing: 0.12em !important;
    }

    .age-gate-box p {
        width: 100% !important;
        font-size: 12px !important;
        line-height: 1.55 !important;
        margin-bottom: 22px !important;
        letter-spacing: 0.06em !important;
    }

    .age-enter {
        height: 48px !important;
        font-size: 11px !important;
        padding: 0 12px !important;
    }

    .age-exit {
        margin-top: 18px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 390px) {

    .age-gate-box {
        width: calc(100vw - 24px) !important;
        padding: 24px 16px 22px !important;
    }

    .age-gate-box h2 {
        font-size: 15px !important;
    }

    .age-gate-box p {
        font-size: 11px !important;
    }

    .age-enter {
        font-size: 10px !important;
    }
}

/* =========================================================
   FIX SIDEBAR RESPONSIVE - MENU GAUCHE COMPACT
   À COLLER TOUT À LA FIN DU style.css
========================================================= */

@media (max-width: 760px) {

    :root {
        --sidebar: 64px;
    }

    body {
        padding-bottom: 0 !important;
        overflow-x: hidden;
    }

    .main,
    .category-main,
    .video-main {
        margin-left: var(--sidebar) !important;
        width: calc(100% - var(--sidebar)) !important;
        padding: 18px 12px 40px !important;
    }

    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;

        width: var(--sidebar) !important;
        height: 100vh !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;

        padding: 10px 5px !important;
        gap: 3px !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        background: rgba(8, 8, 13, 0.98) !important;
        border-right: 1px solid #251120 !important;
        border-top: 0 !important;
        box-shadow: 10px 0 28px rgba(0, 0, 0, 0.65) !important;
        z-index: 9990 !important;
    }

    .sidebar::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .sidebar {
        scrollbar-width: none;
    }

    .sidebar .logo {
        flex: 0 0 auto !important;
        width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        margin: 0 0 8px !important;

        display: grid !important;
        place-items: center !important;

        font-size: 20px !important;
        border-radius: 10px !important;
    }

    .sidebar a {
        flex: 0 0 auto !important;

        width: 54px !important;
        min-width: 54px !important;
        height: 42px !important;
        min-height: 42px !important;

        padding: 4px 3px !important;
        margin: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 3px !important;

        border-radius: 7px !important;

        font-size: 7px !important;
        line-height: 1 !important;
        letter-spacing: 0.03em !important;
    }

    .sidebar a.active {
        color: var(--pink) !important;
        border-color: #7d2557 !important;
        background: rgba(255, 62, 165, 0.13) !important;
        box-shadow: inset 3px 0 0 var(--pink) !important;
    }

    .nav-ico {
        width: 15px !important;
        height: 15px !important;
    }

    .nav-ico svg {
        width: 15px !important;
        height: 15px !important;
        stroke-width: 1.75 !important;
    }

    .nav-label {
        font-size: 6.6px !important;
        line-height: 1.05 !important;
        letter-spacing: 0.03em !important;
        max-width: 52px !important;
        white-space: normal !important;
    }

    .sidebar-tip {
        margin-top: auto !important;
        margin-bottom: 0 !important;
        height: 42px !important;
        min-height: 42px !important;
    }

    .top-actions,
    .video-page .top-actions,
    .video-actions {
        position: static !important;
        margin-left: var(--sidebar) !important;
        padding: 10px 12px 0 !important;
        justify-content: flex-end !important;
    }

    .hero {
        min-height: auto !important;
        padding: 0 !important;
    }

    .hero h1 {
        font-size: 28px !important;
        line-height: 1 !important;
        letter-spacing: 0.08em !important;
    }

    .hero p {
        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .search {
        width: 100% !important;
        height: auto !important;
        gap: 8px !important;
        margin-top: 24px !important;
    }

    .search input {
        height: 42px !important;
        min-width: 0 !important;
        font-size: 11px !important;
    }

    .search button {
        height: 42px !important;
        margin-left: 0 !important;
        padding: 0 12px !important;
        font-size: 9px !important;
    }

    .grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .live-catalog {
        display: none !important;
    }
}

@media (max-height: 720px) and (max-width: 760px) {

    .sidebar {
        padding-top: 6px !important;
        gap: 2px !important;
    }

    .sidebar .logo {
        width: 34px !important;
        height: 34px !important;
        min-height: 34px !important;
        margin-bottom: 5px !important;
        font-size: 18px !important;
    }

    .sidebar a {
        height: 37px !important;
        min-height: 37px !important;
        gap: 2px !important;
    }

    .nav-ico,
    .nav-ico svg {
        width: 13px !important;
        height: 13px !important;
    }

    .nav-label {
        font-size: 6px !important;
    }

    .sidebar-tip {
        height: 37px !important;
        min-height: 37px !important;
    }
}

/* =========================================================
   STATIC / AUTH / LIVE SEARCH PAGES
========================================================= */

.static-main {
    padding-top: 42px;
}

.static-page {
    width: min(940px, 100%);
    margin: 0 auto 40px;
    background: rgba(8, 8, 12, 0.72);
    border: 1px solid #2b202b;
    border-radius: 14px;
    padding: 34px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

.static-page h1 {
    margin: 0;
    color: #f8f4f8;
    font-size: clamp(34px, 4vw, 62px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.static-kicker {
    color: var(--pink);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 18px;
}

.static-lead {
    color: #9b929f;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 780px;
}

.static-page article {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #2b202b;
}

.static-page h2 {
    color: #f5eef5;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.static-page p {
    color: #aaa3ad;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
    text-transform: uppercase;
}

.static-page a {
    color: var(--pink);
}

.auth-box {
    margin-top: 30px;
    background: #0b0b10;
    border: 1px solid #332230;
    border-radius: 12px;
    padding: 24px;
}

.google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--pink);
    color: #17000e !important;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.empty-state {
    color: #8f8792;
    text-transform: uppercase;
    font-weight: 900;
    padding: 20px 0;
}

@media (max-width: 760px) {
    .static-page {
        padding: 22px 16px;
    }

    .static-page h1 {
        font-size: 32px;
    }
}
/* HERO FONT - plus proche, moins pixel */
.hero h1,
.video-header h1,
.cat-overview-hero h1,
.static-page h1 {
    font-family: "Share Tech Mono", "Courier New", monospace !important;
    font-size: clamp(30px, 2.45vw, 50px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.075em !important;
    font-weight: 900 !important;
    max-width: 1020px !important;
}

.hero {
    min-height: 185px !important;
}
.empty-state {
    color: #8f8792;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 18px 0;
}

/* =========================================================
   AUTH PAGE
========================================================= */

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.auth-tabs a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #3d2035;
    border-radius: 8px;
    color: #aaa3ad;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-tabs a.active,
.auth-tabs a:hover {
    color: white;
    border-color: var(--pink);
    background: rgba(255, 62, 165, 0.12);
}

.local-login-form {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.local-login-form label {
    display: grid;
    gap: 8px;
    color: #aaa3ad;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.local-login-form input {
    height: 46px;
    background: #07070b;
    border: 1px solid #7d2557;
    color: white;
    border-radius: 8px;
    padding: 0 14px;
    font-family: inherit;
    font-weight: 900;
}

.local-login-form button,
.google-button {
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--pink);
    color: #16000c !important;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.google-button {
    width: 100%;
    margin-top: 12px;
}

.auth-error {
    color: #ff6b9f !important;
    background: rgba(255, 62, 165, 0.08);
    border: 1px solid rgba(255, 62, 165, 0.35);
    border-radius: 8px;
    padding: 12px;
}

.auth-success {
    color: #19ff7a !important;
    background: rgba(25, 255, 122, 0.08);
    border: 1px solid rgba(25, 255, 122, 0.35);
    border-radius: 8px;
    padding: 12px;
}

.auth-note {
    color: #8f8792 !important;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 12px;
    font-size: 11px !important;
}

.auth-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 4px;
    color: #6f6871;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-separator::before,
.auth-separator::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #2b202b;
}

/* =========================================================
   FLASH + AUTH + STATIC HELPERS
========================================================= */

.flash-message {
    position: fixed;
    top: 76px;
    right: 22px;
    z-index: 9998;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 9px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.flash-success {
    color: #19ff7a;
    background: rgba(11, 45, 25, 0.95);
    border: 1px solid rgba(25, 255, 122, 0.35);
}

.flash-error {
    color: #ff6b9f;
    background: rgba(45, 11, 25, 0.95);
    border: 1px solid rgba(255, 62, 165, 0.35);
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.auth-tabs a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #3d2035;
    border-radius: 8px;
    color: #aaa3ad;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-tabs a.active,
.auth-tabs a:hover {
    color: white;
    border-color: var(--pink);
    background: rgba(255, 62, 165, 0.12);
}

.local-login-form {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.local-login-form label {
    display: grid;
    gap: 8px;
    color: #aaa3ad;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.local-login-form input {
    height: 46px;
    background: #07070b;
    border: 1px solid #7d2557;
    color: white;
    border-radius: 8px;
    padding: 0 14px;
    font-family: inherit;
    font-weight: 900;
}

.local-login-form button,
.google-button {
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--pink);
    color: #16000c !important;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.google-button {
    width: 100%;
    margin-top: 12px;
}

.auth-error {
    color: #ff6b9f !important;
    background: rgba(255, 62, 165, 0.08);
    border: 1px solid rgba(255, 62, 165, 0.35);
    border-radius: 8px;
    padding: 12px;
}

.auth-note {
    color: #8f8792 !important;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 12px;
    font-size: 11px !important;
}

.auth-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 4px;
    color: #6f6871;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-separator::before,
.auth-separator::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #2b202b;
}

.empty-state {
    color: #8f8792;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 18px 0;
}

.static-main {
    padding-top: 42px;
}

.static-page {
    width: min(940px, 100%);
    margin: 0 auto 40px;
    background: rgba(8, 8, 12, 0.72);
    border: 1px solid #2b202b;
    border-radius: 14px;
    padding: 34px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

.static-page h1 {
    margin: 0;
    color: #f8f4f8;
    font-size: clamp(34px, 4vw, 62px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.static-kicker {
    color: var(--pink);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 18px;
}

.static-lead {
    color: #9b929f;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 780px;
}

.static-page article {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #2b202b;
}

.static-page h2 {
    color: #f5eef5;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.static-page p {
    color: #aaa3ad;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
    text-transform: uppercase;
}

.static-page a {
    color: var(--pink);
}

@media (max-width: 760px) {
    .flash-message {
        left: 78px;
        right: 12px;
        top: 12px;
    }

    .static-page {
        padding: 22px 16px;
    }

    .static-page h1 {
        font-size: 32px;
    }
}

/* =========================================================
   ACCOUNT / INTERACTIONS / COMMENTS
========================================================= */

.interaction-row button.active {
    border-color: var(--pink) !important;
    color: #fff !important;
    background: rgba(255, 62, 165, 0.18) !important;
}

.action-login {
    color: var(--pink);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
}

.comment-form {
    width: min(760px, 100%);
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.comment-form textarea {
    min-height: 95px;
    resize: vertical;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    padding: 14px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
}

.comment-form button {
    justify-self: start;
    background: rgba(255, 62, 165, 0.12);
    border: 1px solid #7d2557;
    color: var(--pink);
    border-radius: 7px;
    padding: 10px 16px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.comment-list {
    width: min(760px, 100%);
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.comment-item {
    display: flex;
    gap: 12px;
    background: rgba(8,8,12,0.92);
    border: 1px solid #2b202b;
    border-radius: 9px;
    padding: 14px;
}

.comment-item img {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    object-fit: cover;
}

.comment-item strong {
    display: block;
    color: #f6eff6;
    font-size: 12px;
    text-transform: uppercase;
}

.comment-item small {
    display: block;
    color: #756d77;
    margin-top: 4px;
    font-size: 10px;
    text-transform: uppercase;
}

.comment-item p {
    margin: 10px 0 0;
    color: #aaa3ad;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 900;
    text-transform: uppercase;
}

.account-summary {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.account-summary div {
    background: #111015;
    border: 1px solid #2d2630;
    border-radius: 8px;
    padding: 16px;
}

.account-summary span {
    display: block;
    color: #8f8792;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 8px;
}

.account-summary strong {
    color: #f8f4f8;
    font-size: 14px;
    word-break: break-word;
}

.account-comments article h2 a {
    color: var(--pink);
    text-decoration: none;
}

@media (max-width: 900px) {
    .account-summary {
        grid-template-columns: 1fr;
    }
}

.player-shell iframe,
.player-shell .eporner-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}
/* =========================================================
   FIX SIDEBAR PETITE HAUTEUR / NEST HUB
========================================================= */

.sidebar {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: #ff3ea5 #07070b;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: #07070b;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #ff3ea5;
    border-radius: 99px;
}

@media (max-height: 720px) {
    .sidebar {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        gap: 2px !important;
    }

    .sidebar .logo {
        width: 36px !important;
        height: 36px !important;
        min-height: 36px !important;
        margin-bottom: 6px !important;
        font-size: 18px !important;
    }

    .sidebar a {
        height: 40px !important;
        min-height: 40px !important;
        padding: 3px 2px !important;
        gap: 2px !important;
    }

    .nav-ico,
    .nav-ico svg {
        width: 13px !important;
        height: 13px !important;
    }

    .nav-label {
        font-size: 6px !important;
        line-height: 1 !important;
    }

    .sidebar-tip {
        margin-top: 4px !important;
    }
}

@media (max-height: 620px) {
    .sidebar a {
        height: 34px !important;
        min-height: 34px !important;
    }

    .sidebar .logo {
        width: 32px !important;
        height: 32px !important;
        min-height: 32px !important;
    }

    .nav-ico,
    .nav-ico svg {
        width: 11px !important;
        height: 11px !important;
    }

    .nav-label {
        font-size: 5.3px !important;
    }
}
/* =========================================================
   NEXT FEATURES
========================================================= */
.admin-edit-form {
    display: grid;
    gap: 14px;
}

.admin-edit-form label {
    display: grid;
    gap: 7px;
    color: #aaa3ad;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-edit-form input,
.admin-edit-form textarea,
.admin-edit-form select,
.admin-form select {
    background: #07070b;
    border: 1px solid #7d2557;
    color: #fff;
    border-radius: 7px;
    padding: 11px;
    font-family: inherit;
}

.admin-edit-form textarea {
    min-height: 110px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.admin-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-height: 260px;
    overflow: auto;
    border: 1px solid #261321;
    padding: 12px;
    border-radius: 8px;
}

.admin-edit-form button,
.load-more-button,
.report-form button {
    justify-self: start;
    background: rgba(255, 62, 165, 0.12);
    border: 1px solid #7d2557;
    color: var(--pink);
    border-radius: 7px;
    padding: 10px 16px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.report-form {
    display: grid;
    gap: 10px;
    width: min(700px, 100%);
    margin-top: 20px;
}

.report-form input,
.report-form textarea {
    background: #07070b;
    border: 1px solid #7d2557;
    color: #fff;
    border-radius: 7px;
    padding: 12px;
    font-family: inherit;
}

@media (max-width: 900px) {
    .admin-form-grid,
    .admin-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.report-open-btn {
    background: rgba(255, 62, 165, 0.08);
    border: 1px solid #7d2557;
    color: #ff3ea5;
    border-radius: 7px;
    padding: 8px 12px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.report-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.report-modal.is-open {
    display: block;
}

.report-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(10px);
}

.report-modal-card {
    position: relative;
    width: min(460px, calc(100% - 28px));
    margin: 12vh auto 0;
    background: #08080c;
    border: 1px solid #7d2557;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 22px 80px rgba(0,0,0,0.65);
}

.report-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: 0;
    color: #ff3ea5;
    font-size: 24px;
    cursor: pointer;
}

.modal-open {
    overflow: hidden;
}

.top-actions {
    position: fixed;
    top: 26px;
    right: 26px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(255, 62, 165, 0.7);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 62, 165, 0.13), rgba(255, 62, 165, 0.035)),
        rgba(12, 8, 14, 0.85);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    box-shadow:
        0 0 18px rgba(255, 62, 165, 0.16),
        inset 0 0 0 1px rgba(255,255,255,0.035);
    backdrop-filter: blur(8px);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.top-btn:hover {
    transform: translateY(-1px);
    border-color: #ff3ea5;
    background:
        linear-gradient(180deg, rgba(255, 62, 165, 0.22), rgba(255, 62, 165, 0.06)),
        rgba(18, 8, 18, 0.95);
    box-shadow:
        0 0 24px rgba(255, 62, 165, 0.28),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}

.top-btn span {
    color: #ffcc4d;
    font-size: 12px;
    line-height: 1;
}

.top-btn-random {
    padding-inline: 20px;
}

.top-btn-user {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .top-actions {
        top: 12px;
        right: 10px;
        left: 76px;
        justify-content: flex-end;
        gap: 8px;
    }

    .top-btn {
        min-height: 36px;
        padding: 0 10px;
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .top-btn-user,
    .top-btn-random {
        max-width: 145px;
    }
}

.account-stealth-info {
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(25, 255, 122, .28);
    background: rgba(25, 255, 122, .06);
    border-radius: 10px;
    color: #bfffd8;
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-stealth-info strong {
    color: #19ff7a;
    letter-spacing: .1em;
}

.account-stealth-info kbd {
    background: #07070b;
    border: 1px solid #2d2630;
    color: #fff;
    border-radius: 5px;
    padding: 3px 7px;
    font-size: 11px;
}
.top-btn-stealth {
    width: 42px;
    min-width: 42px;
    padding: 0 !important;
    cursor: help;
}

.top-btn-stealth::after {
    content: "Stealth: Alt + S";
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    white-space: nowrap;
    background: rgba(8, 8, 12, .96);
    border: 1px solid rgba(255, 62, 165, .45);
    color: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: .15s ease;
}

.top-btn-stealth:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.top-btn-stealth.is-active {
    color: #19ff7a !important;
    border-color: rgba(25, 255, 122, .7) !important;
    background:
        linear-gradient(180deg, rgba(25, 255, 122, .18), rgba(25, 255, 122, .05)),
        rgba(8, 18, 12, .95) !important;
    box-shadow: 0 0 22px rgba(25, 255, 122, .24) !important;
}

.top-btn-stealth.is-active {
    animation: stealthPulse 1.2s ease-in-out infinite;
}

@keyframes stealthPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-1px) scale(1.06); }
}
/* =========================================================
   GAMECHANGER FEATURES
========================================================= */

.not-interested-section {
    margin: 22px 0;
    padding: 16px;
    border: 1px solid rgba(255, 62, 165, .18);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
}

.not-interested-section h2 {
    margin: 0 0 8px;
    color: #f6eff6;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .09em;
}

.not-interested-section p {
    color: #8f8792;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.not-interested-form {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.not-interested-form select,
.not-interested-form button {
    background: #07070b;
    border: 1px solid #7d2557;
    color: #fff;
    border-radius: 7px;
    padding: 10px 12px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
}

.not-interested-form button {
    color: var(--pink);
    cursor: pointer;
}

.player-shell {
    transition: width .18s ease, height .18s ease, transform .18s ease, box-shadow .18s ease;
}

.player-shell.mini {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 9998 !important;
    width: 340px !important;
    height: 192px !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 80px rgba(0,0,0,.75), 0 0 28px rgba(255,62,165,.18) !important;
    overflow: hidden !important;
}

.mini-player-close {
    display: none;
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.65);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.player-shell.mini .mini-player-close {
    display: grid;
    place-items: center;
}

.load-more-button {
    display: inline-flex;
    margin: 24px auto;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid #7d2557;
    background: rgba(255,62,165,.08);
    color: var(--pink);
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 760px) {
    .player-shell.mini {
        right: 10px !important;
        bottom: 10px !important;
        width: 240px !important;
        height: 135px !important;
    }

    .not-interested-form {
        display: grid;
    }
}

/* GAMECHANGER FEATURES */
.load-more-button {
    display: flex;
    margin: 24px auto;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid #7d2557;
    background: rgba(255,62,165,.08);
    color: var(--pink);
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.not-interested-section {
    margin: 22px 0;
    padding: 16px;
    border: 1px solid rgba(255, 62, 165, .18);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
}

.not-interested-section h2 {
    margin: 0 0 8px;
    color: #f6eff6;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .09em;
}

.not-interested-section p {
    color: #8f8792;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.not-interested-form {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.not-interested-form select,
.not-interested-form button {
    background: #07070b;
    border: 1px solid #7d2557;
    color: #fff;
    border-radius: 7px;
    padding: 10px 12px;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
}

.not-interested-form button {
    color: var(--pink);
    cursor: pointer;
}

.player-shell.mini {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 9998 !important;
    width: 340px !important;
    height: 192px !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 80px rgba(0,0,0,.75), 0 0 28px rgba(255,62,165,.18) !important;
    overflow: hidden !important;
}

.mini-player-close {
    display: none;
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.65);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.player-shell.mini .mini-player-close {
    display: grid;
    place-items: center;
}
/* =========================================================
   WATCH HISTORY / PREFERENCES
========================================================= */

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.section-title-row h2 {
    margin: 0;
}

.tiny-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 62, 165, .48);
    border-radius: 8px;
    background: rgba(255, 62, 165, .07);
    color: var(--pink);
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.history-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(25,255,122,.25);
    border-radius: 999px;
    background: rgba(25,255,122,.06);
    color: #bfffd8;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-preferences {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.preference-card {
    border: 1px solid #2d2630;
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    padding: 16px;
}

.preference-card h2 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

.preference-card p {
    margin: 0 0 14px;
    color: #8f8792;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 900;
    text-transform: uppercase;
}

.hidden-cats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hidden-cat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,62,165,.35);
    border-radius: 999px;
    padding: 6px 8px;
    background: rgba(255,62,165,.06);
}

.hidden-cat-item span {
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.hidden-cat-item button {
    border: 0;
    background: transparent;
    color: var(--pink);
    cursor: pointer;
    font-weight: 900;
}

@media (max-width: 900px) {
    .account-preferences {
        grid-template-columns: 1fr;
    }
}
.player-shell {
    transition: width .18s ease, height .18s ease, transform .18s ease, box-shadow .18s ease;
}

.player-shell.mini {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 9998 !important;
    width: 340px !important;
    height: 192px !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 80px rgba(0,0,0,.75), 0 0 28px rgba(255,62,165,.18) !important;
    overflow: hidden !important;
}

.mini-player-close {
    display: none;
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 5;
    width: 28px;
    height: 28px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.65);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.player-shell.mini .mini-player-close {
    display: grid;
    place-items: center;
}

@media (max-width: 760px) {
    .player-shell.mini {
        right: 10px !important;
        bottom: 10px !important;
        width: 240px !important;
        height: 135px !important;
    }
}
.card-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.badge-quality {
    border-color: rgba(255,209,102,.5);
    color: #ffd166;
}

.badge-new {
    border-color: rgba(25,255,122,.5);
    color: #19ff7a;
}

.badge-hot {
    border-color: rgba(255,62,165,.6);
    color: #ff3ea5;
}
.next-video-box {
    position: fixed;
    right: 22px;
    bottom: 235px;
    z-index: 9999;
    width: 280px;
    display: none;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255,62,165,.45);
    border-radius: 12px;
    background: rgba(8,8,12,.96);
    box-shadow: 0 20px 70px rgba(0,0,0,.7);
}

.next-video-box.is-visible {
    display: grid;
}

.next-video-box strong {
    color: #ff3ea5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.next-video-box span {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
}

.next-video-box a {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #7d2557;
    color: #ff3ea5;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255,62,165,.08);
}

#nextVideoClose {
    position: absolute;
    top: 7px;
    right: 9px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .next-video-box {
        right: 10px;
        left: 84px;
        bottom: 155px;
        width: auto;
    }
}
.next-video-box {
    position: fixed;
    right: 22px;
    bottom: 235px;
    z-index: 9999;
    width: 280px;
    display: none;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255,62,165,.45);
    border-radius: 12px;
    background: rgba(8,8,12,.96);
    box-shadow: 0 20px 70px rgba(0,0,0,.7);
}

.next-video-box.is-visible {
    display: grid;
}

.next-video-box strong {
    color: #ff3ea5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.next-video-box span {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
}

.next-video-box a {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #7d2557;
    color: #ff3ea5;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255,62,165,.08);
}

#nextVideoClose {
    position: absolute;
    top: 7px;
    right: 9px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .next-video-box {
        right: 10px;
        left: 84px;
        bottom: 155px;
        width: auto;
    }
}
.video-seo-content {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.65;
}

.video-seo-content h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
/* =========================================================
   SEO CONTENT / INTERNAL LINKING
========================================================= */

.homepage-seo-content,
.category-seo-content,
.video-seo-content {
    margin: 22px 0;
    padding: 18px;
    border: 1px solid rgba(255,62,165,.15);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    color: var(--muted-2);
    line-height: 1.65;
    font-size: 13px;
}

.homepage-seo-content h2,
.category-seo-content h1,
.video-seo-content h2 {
    margin: 0 0 10px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.video-seo-content a,
.category-seo-content a,
.homepage-seo-content a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 900;
}

.seo-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.seo-link-grid a {
    border: 1px solid rgba(255,62,165,.35);
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(255,62,165,.06);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Mini player + Up next, safe if already present */
.player-shell.mini {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 9998 !important;
    width: 340px !important;
    height: 192px !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 80px rgba(0,0,0,.75), 0 0 28px rgba(255,62,165,.18) !important;
    overflow: hidden !important;
}

.mini-player-close {
    display: none;
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 5;
    width: 28px;
    height: 28px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.65);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.player-shell.mini .mini-player-close {
    display: grid;
    place-items: center;
}

.next-video-box {
    position: fixed;
    right: 22px;
    bottom: 235px;
    z-index: 9999;
    width: 280px;
    display: none;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255,62,165,.45);
    border-radius: 12px;
    background: rgba(8,8,12,.96);
    box-shadow: 0 20px 70px rgba(0,0,0,.7);
}

.next-video-box.is-visible {
    display: grid;
}

.next-video-box strong {
    color: var(--pink);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.next-video-box span {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
}

.next-video-box a {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #7d2557;
    color: var(--pink);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255,62,165,.08);
}

#nextVideoClose {
    position: absolute;
    top: 7px;
    right: 9px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .player-shell.mini {
        right: 10px !important;
        bottom: 10px !important;
        width: 240px !important;
        height: 135px !important;
    }

    .next-video-box {
        right: 10px;
        left: 84px;
        bottom: 155px;
        width: auto;
    }
}

/* =========================================================
   DISPLAY FILTERS - FLOATING RIGHT PANEL
========================================================= */

.floating-filter-panel {
    position: fixed;
    top: 76px;
    right: 22px;
    width: 260px;
    z-index: 65;
    padding: 14px;
    border: 1px solid rgba(255, 77, 61, 0.45);
    border-radius: 14px;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 77, 61, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(18, 8, 8, 0.96), rgba(7, 5, 6, 0.94));
    box-shadow:
        0 18px 55px rgba(0,0,0,0.52),
        0 0 26px rgba(255, 77, 61, 0.10),
        inset 0 0 0 1px rgba(255,255,255,0.025);
    backdrop-filter: blur(10px);
}

.filter-panel-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.filter-panel-kicker::after {
    content: "⚙";
    color: var(--pink);
    font-size: 13px;
    text-shadow: 0 0 14px rgba(255, 77, 61, 0.45);
}

.video-display-filter {
    display: grid;
    gap: 11px;
}

.video-display-filter label {
    display: grid;
    gap: 6px;
}

.video-display-filter label span {
    color: #8f8584;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-display-filter select {
    width: 100%;
    min-height: 42px;
    appearance: none;
    border: 1px solid rgba(255, 77, 61, 0.38);
    border-radius: 9px;
    padding: 0 34px 0 12px;
    color: #fff5f2;
    background:
        linear-gradient(45deg, transparent 50%, var(--pink) 50%) right 14px center / 6px 6px no-repeat,
        linear-gradient(135deg, var(--pink) 50%, transparent 50%) right 9px center / 6px 6px no-repeat,
        linear-gradient(180deg, rgba(31, 14, 12, 0.98), rgba(10, 7, 8, 0.98));
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
    box-shadow: inset 0 0 18px rgba(255, 77, 61, 0.04);
}

.video-display-filter select:hover,
.video-display-filter select:focus {
    border-color: var(--pink);
    box-shadow:
        0 0 22px rgba(255, 77, 61, 0.14),
        inset 0 0 18px rgba(255, 77, 61, 0.06);
}

.video-display-filter button {
    min-height: 42px;
    border: 1px solid rgba(255, 209, 102, 0.34);
    border-radius: 9px;
    color: #1a0705;
    background: linear-gradient(180deg, #ffd166, #ff8f4a);
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(255, 209, 102, 0.12);
}

.video-display-filter button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.video-filter-bar {
    display: none !important;
}

@media (max-width: 1400px) {
    .floating-filter-panel {
        position: static;
        width: auto;
        margin: 14px 22px 0 calc(var(--sidebar) + 22px);
    }

    .video-display-filter {
        grid-template-columns: 1fr 1fr auto;
        align-items: end;
    }
}

@media (max-width: 760px) {
    .floating-filter-panel {
        margin: 12px 12px 0 calc(var(--sidebar) + 12px) !important;
        padding: 12px;
    }

    .video-display-filter {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FIX FILTRES - OPTIONS LISIBLES DANS LE MENU DEROULANT
========================================================= */
.video-display-filter select,
.video-display-filter select option,
.video-display-filter select optgroup {
    color: #fff5f2 !important;
    background-color: #120807 !important;
}

.video-display-filter select option {
    padding: 10px 12px;
    font-family: "Courier New", Courier, monospace;
    font-weight: 900;
    text-transform: uppercase;
}

.video-display-filter select option:hover,
.video-display-filter select option:checked,
.video-display-filter select option:focus {
    color: #ffffff !important;
    background-color: #9d2d22 !important;
}

.video-display-filter select:disabled,
.video-display-filter select option:disabled {
    color: #6f5f5c !important;
}

/* =========================================================
   FINAL FIX - SEARCH + FILTERS SAME ROW (INDEX/CATEGORY)
   Keep search on the left, filters on the right.
========================================================= */
.hero .search-filter-row,
.search-filter-row {
    width: 100% !important;
    max-width: none !important;
    margin-top: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

.hero .search-filter-row .search,
.search-filter-row .search {
    margin: 0 !important;
    width: min(520px, 48vw) !important;
    height: 46px !important;
    flex: 0 0 min(520px, 48vw) !important;
}

.hero .inline-video-filters,
.inline-video-filters {
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    max-width: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.hero .inline-video-filters select,
.hero .inline-video-filters button,
.inline-video-filters select,
.inline-video-filters button {
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    border-radius: 7px !important;
    font-family: inherit !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    box-shadow: 0 0 20px rgba(255, 62, 165, 0.08) !important;
}

.hero .inline-video-filters select,
.inline-video-filters select {
    width: 178px !important;
    flex: 0 0 178px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background:
        linear-gradient(45deg, transparent 50%, var(--pink) 50%) right 14px center / 6px 6px no-repeat,
        linear-gradient(135deg, var(--pink) 50%, transparent 50%) right 9px center / 6px 6px no-repeat,
        #07070b !important;
    border: 1px solid #7d2557 !important;
    color: #fff5f2 !important;
    padding: 0 30px 0 12px !important;
}

.hero .inline-video-filters select option,
.inline-video-filters select option {
    background: #120707 !important;
    color: #fff5f2 !important;
}

.hero .inline-video-filters button,
.inline-video-filters button {
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0 18px !important;
    border: 1px solid #7d2557 !important;
    background: #15101a !important;
    color: var(--pink) !important;
    cursor: pointer !important;
}

.hero .inline-video-filters button:hover,
.inline-video-filters button:hover {
    background: var(--pink) !important;
    color: white !important;
}

@media (max-width: 1180px) {
    .hero .search-filter-row,
    .search-filter-row {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .hero .search-filter-row .search,
    .search-filter-row .search {
        width: 100% !important;
        flex: 0 0 auto !important;
    }

    .hero .inline-video-filters,
    .inline-video-filters {
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }

    .hero .inline-video-filters select,
    .inline-video-filters select {
        flex: 1 1 170px !important;
        width: auto !important;
    }
}

.feed-separator {
    margin: 18px 0 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.feed-separator::before,
.feed-separator::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 61, 0.65), transparent);
}

.feed-separator span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 77, 61, 0.45);
    border-radius: 999px;
    background: rgba(10, 6, 6, 0.75);
}

/* =========================================================
   POYN BRAND THEME — safe patch
   À coller tout à la fin de style.css
========================================================= */

:root {
    --bg: #08080d;
    --bg-soft: #101018;
    --panel: #12121c;
    --panel-2: #191925;
    --border: rgba(255,255,255,0.08);
    --border-hot: #ff2d75;
    --pink: #ff2d75;
    --purple: #7a3cff;
    --cyan: #42f5d4;
    --text: #f7f4fa;
    --muted: #928d9b;
    --muted-2: #c8c1d1;
    --green: #42f5a7;
}

body {
    background:
        radial-gradient(circle at 12% 12%, rgba(122, 60, 255, 0.18), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(255, 45, 117, 0.18), transparent 30%),
        radial-gradient(circle at 45% 100%, rgba(66, 245, 212, 0.07), transparent 28%),
        linear-gradient(180deg, #07070b 0%, #0a0810 48%, #050507 100%) !important;
    font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
    letter-spacing: 0.01em !important;
}

.hero h1,
.video-header h1,
.cat-overview-hero h1,
.static-page h1,
.similar-section h2,
.section-title-row h2 {
    font-family: "Sora", "Inter", "Segoe UI", Arial, sans-serif !important;
    letter-spacing: -0.025em !important;
}

/* Logo */
.poyn-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--text);
    font-family: "Sora", "Inter", sans-serif;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: lowercase;
}

.poyn-logo-mark {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    color: transparent;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff 0 8%, var(--pink) 24%, var(--purple) 78%);
    box-shadow: 0 0 18px rgba(255, 45, 117, 0.55), 0 0 34px rgba(122, 60, 255, 0.26);
    animation: poynPulse 2.8s ease-in-out infinite;
}

.poyn-logo-text {
    font-size: 28px;
}
.poyn-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.poyn-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,45,117,0.6));
}

.poyn-logo-text {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -1px;
    color: #fff;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
}

.sidebar .logo::before {
    display: none !important;
}

.sidebar .logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,45,117,0.6));
}

/* POYN logo + bounce + loader */
.poyn-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.poyn-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(255, 45, 117, .55));
}

.poyn-logo-text {
    font-family: "Sora", "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.06em;
    text-transform: lowercase;
    background: linear-gradient(90deg, #fff, #ffd8e7 48%, #ff2d75);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.poyn-bounce {
    animation: poyn-bounce 1.35s ease-in-out infinite;
    transform-origin: center;
    will-change: transform, filter;
}

@keyframes poyn-bounce {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(-2deg);
        filter: drop-shadow(0 0 12px rgba(255, 45, 117, .42));
    }
    42% {
        transform: translateY(-2px) scale(1.08) rotate(3deg);
        filter: drop-shadow(0 0 24px rgba(255, 45, 117, .76));
    }
    62% {
        transform: translateY(1px) scale(.96) rotate(-1deg);
    }
}

/* Sidebar */
.sidebar .logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.sidebar .logo::before {
    display: none !important;
}

.sidebar .logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 13px rgba(255, 45, 117, .7));
}

/* Loader plein écran ou bloc */
.poyn-loader {
    display: grid;
    place-items: center;
    min-height: 120px;
}

.poyn-loader img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.poyn-loader.is-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 8, .78);
    backdrop-filter: blur(10px);
}

/* Variante favicon/mini */
.poyn-mini-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 45, 117, .55));
}
/* POYN logo sidebar/header fix */
.poyn-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    transform: none !important;
}

.poyn-logo:hover {
    transform: none !important;
}

.poyn-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform .18s ease, filter .18s ease;
}

.poyn-logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(255, 45, 117, .75));
}

.poyn-logo-text {
    font-size: 13px !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    font-weight: 900;
    color: #f7f4fa;
    text-transform: lowercase;
    pointer-events: none;
}

/* Si le logo est dans la sidebar */
.sidebar .poyn-logo {
    width: 58px;
}

.sidebar .poyn-logo-img {
    width: 34px;
    height: 34px;
}
.footer-logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 0 0 12px;
    filter: drop-shadow(0 0 18px rgba(255, 45, 117, .22));
}

.site-footer h3 {
    margin-top: 0;
}