:root {
    --black: #070707;
    --black-soft: #11100d;
    --gold: #d9b56f;
    --gold-light: #f2d89d;
    --ivory: #fffaf0;
    --muted: #9f9b91;
    --border: rgba(217,181,111,.22);
    --glass: rgba(255,255,255,.055);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 50% 25%, rgba(217,181,111,.10), transparent 26%),
        radial-gradient(circle at 20% 90%, rgba(217,181,111,.045), transparent 28%),
        var(--black);
    color: var(--ivory);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

.topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 34px;
    position: relative;
    z-index: 10;
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.mini-orb {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(217,181,111,.22);
}

.mini-orb::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    top: 15px;
    height: 1px;
    background: var(--gold);
    transform: rotate(-14deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: #ddd7ca;
    padding: 10px 14px;
    border-radius: 13px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: .2s ease;
}

.nav-btn:hover {
    color: var(--gold-light);
    border-color: var(--border);
    background: var(--glass);
}

.login-btn {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(217,181,111,.15), rgba(217,181,111,.05));
}

.hero {
    width: min(980px, calc(100% - 36px));
    margin: 7vh auto 0;
    text-align: center;
    position: relative;
}

.world-mark {
    width: 116px;
    height: 116px;
    margin: 0 auto 26px;
    border-radius: 50%;
    border: 1px solid rgba(242,216,157,.55);
    position: relative;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,.16), transparent 18%),
        radial-gradient(circle at 50% 58%, rgba(217,181,111,.12), rgba(8,8,8,.95) 63%);
    box-shadow:
        0 0 0 8px rgba(217,181,111,.025),
        0 0 58px rgba(217,181,111,.20);
}

.world-mark::before,
.world-mark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(217,181,111,.50);
    border-radius: 50%;
}

.world-mark::before {
    width: 150px;
    height: 43px;
    left: -18px;
    top: 35px;
    transform: rotate(-17deg);
}

.world-mark::after {
    width: 42px;
    height: 100px;
    left: 36px;
    top: 7px;
}

h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(44px, 7vw, 78px);
    letter-spacing: -2px;
    background: linear-gradient(90deg, #fff6df, #d8b46d, #fff4d6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    margin: 13px auto 34px;
    color: var(--muted);
    font-size: 15px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.search-shell {
    width: min(780px, 100%);
    margin: 0 auto;
    padding: 7px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
    border: 1px solid var(--border);
    box-shadow:
        0 20px 80px rgba(0,0,0,.45),
        0 0 40px rgba(217,181,111,.07);
    backdrop-filter: blur(20px);
}

.search-box {
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 0 10px 0 20px;
    gap: 12px;
    border-radius: 20px;
    background: rgba(0,0,0,.45);
}

.search-icon {
    font-size: 20px;
    color: var(--gold);
}

.search-box input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    color: white;
    font-size: 17px;
    min-width: 0;
}

.search-box input::placeholder {
    color: #77746e;
}

.search-submit {
    border: 0;
    min-width: 50px;
    height: 50px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 20px;
    color: #16120a;
    background: linear-gradient(135deg, var(--gold-light), #b98c42);
    box-shadow: 0 8px 26px rgba(217,181,111,.20);
}

.quick-actions {
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: min(700px, 100%);
}

.quick-card {
    border: 1px solid rgba(217,181,111,.13);
    background: rgba(255,255,255,.035);
    border-radius: 18px;
    padding: 17px 10px;
    color: #d8d2c7;
    text-decoration: none;
    cursor: pointer;
    transition: .22s ease;
}

.quick-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217,181,111,.38);
    background: rgba(217,181,111,.07);
    color: var(--gold-light);
}

.quick-icon {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.quick-label {
    font-size: 13px;
}

.international {
    margin: 34px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #77736b;
    font-size: 13px;
    flex-wrap: wrap;
}

.select-dark {
    color: #bdb7ab;
    border: 1px solid rgba(217,181,111,.12);
    background: #0c0c0b;
    border-radius: 10px;
    padding: 8px 10px;
    outline: none;
}

.ai-panel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(390px, calc(100% - 44px));
    border-radius: 22px;
    background: rgba(15,14,12,.96);
    border: 1px solid var(--border);
    box-shadow: 0 30px 90px rgba(0,0,0,.65);
    padding: 20px;
    display: none;
    z-index: 50;
}

.ai-panel.open {
    display: block;
}

.ai-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-title {
    color: var(--gold-light);
    font-weight: 700;
}

.ai-close {
    border: 0;
    background: transparent;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.ai-text {
    color: #aaa49a;
    line-height: 1.55;
    font-size: 14px;
    margin: 15px 0 0;
}

.footer {
    text-align: center;
    padding: 55px 20px 24px;
    color: #5e5a53;
    font-size: 12px;
}

@media (max-width: 720px) {
    .topbar {
        padding: 16px;
    }

    .brand-mini span:last-child {
        display: none;
    }

    .nav-actions .nav-btn:nth-child(2),
    .nav-actions .nav-btn:nth-child(3) {
        display: none;
    }

    .hero {
        margin-top: 5vh;
    }

    .world-mark {
        width: 92px;
        height: 92px;
    }

    .world-mark::before {
        width: 120px;
        height: 36px;
        left: -15px;
        top: 28px;
    }

    .world-mark::after {
        width: 33px;
        height: 78px;
        left: 29px;
    }

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

    .search-box {
        min-height: 62px;
    }
}


/* ==========================================================
   PLAISIRS WORLD - PUBLIC HEADER
   ========================================================== */

.pw-public-header {
    position: relative;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(217,181,111,.12);
    background:
        linear-gradient(
            180deg,
            rgba(10,10,9,.97),
            rgba(7,7,7,.92)
        );
    backdrop-filter: blur(20px);
}

.pw-header-inner {
    width: min(1450px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pw-header-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #f1ddb0;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .4px;
    white-space: nowrap;
}

.pw-header-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 0 16px rgba(217,181,111,.22)
        );
}

.pw-header-brand span {
    font-size: 18px;
}

.pw-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.pw-header-nav a,
.pw-header-link {
    border: 0;
    background: transparent;
    color: #bdb6aa;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 11px;
    cursor: pointer;
    font-size: 14px;
    transition: .2s ease;
}

.pw-header-nav a:hover,
.pw-header-link:hover {
    color: #f0d492;
    background: rgba(217,181,111,.07);
}

.pw-ai-button {
    color: #e1c47e;
}

.pw-header-select {
    min-width: 105px;
    max-width: 145px;
    height: 39px;
    border: 1px solid rgba(217,181,111,.17);
    border-radius: 10px;
    padding: 0 8px;
    color: #c6c0b5;
    background: #0d0d0c;
    outline: none;
}

.pw-login-button {
    height: 40px;
    padding: 0 17px;
    border-radius: 12px;
    border: 1px solid rgba(217,181,111,.30);
    color: #f1d796;
    background:
        linear-gradient(
            135deg,
            rgba(217,181,111,.15),
            rgba(217,181,111,.04)
        );
    cursor: pointer;
}

.pw-login-button:hover {
    border-color: rgba(217,181,111,.55);
    background: rgba(217,181,111,.11);
}

@media (max-width: 1000px) {

    .pw-header-inner {
        width: calc(100% - 24px);
    }

    .pw-header-brand span {
        display: none;
    }

    .pw-header-nav a:nth-child(1) {
        display: none;
    }

    .pw-header-select {
        max-width: 110px;
    }

}

@media (max-width: 760px) {

    .pw-header-inner {
        min-height: 68px;
    }

    .pw-header-logo {
        width: 44px;
        height: 44px;
    }

    .pw-header-nav a,
    .pw-header-link {
        display: none;
    }

    .pw-header-select {
        min-width: 74px;
        max-width: 95px;
        font-size: 12px;
    }

    .pw-login-button {
        padding: 0 11px;
        font-size: 12px;
    }

}

/* Logo Plaisirs World rond */
.pw-header-logo {
    width: 54px !important;
    height: 54px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 2px solid #fff !important;
    overflow: hidden !important;
    filter: drop-shadow(0 0 16px rgba(217,181,111,.22));
}



/* =========================================================
   PLAISIRS WORLD - NEWS RESULTS
   ========================================================= */

.pw-news-card {
    display: grid;
    grid-template-columns: 150px minmax(0,1fr);
    gap: 18px;

    padding: 18px 0 23px;

    border-bottom:
        1px solid rgba(217,181,111,.10);
}

.pw-news-image {
    width: 150px;
    height: 105px;

    object-fit: cover;

    border-radius: 14px;

    background: #111;
}

.pw-news-source {
    color: #817a6e;
    font-size: 11px;
    margin-bottom: 6px;
}

.pw-news-title {
    display: inline-block;

    color: #ebcb83;

    font-size: 19px;
    line-height: 1.35;

    text-decoration: none;
}

.pw-news-title:hover {
    text-decoration: underline;
}

.pw-news-description {
    color: #999289;
    font-size: 13px;
    line-height: 1.55;
    margin-top: 7px;
}

.pw-news-date {
    color: #666159;
    font-size: 10px;
    margin-top: 8px;
}


/* =========================================================
   PLAISIRS WORLD - VIDEO RESULTS
   ========================================================= */

.pw-video-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(240px,1fr)
        );

    gap: 18px;
}

.pw-video-card {
    display: block;

    overflow: hidden;

    border:
        1px solid rgba(217,181,111,.12);

    border-radius: 17px;

    background:
        rgba(255,255,255,.018);

    text-decoration: none;
}

.pw-video-card:hover {
    border-color:
        rgba(217,181,111,.38);
}

.pw-video-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #111;

    overflow: hidden;
}

.pw-video-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.pw-video-play {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(0,0,0,.72);

    color: #e9ca84;

    border:
        1px solid rgba(217,181,111,.35);
}

.pw-video-duration {
    position: absolute;

    right: 8px;
    bottom: 8px;

    padding: 4px 7px;

    border-radius: 7px;

    background:
        rgba(0,0,0,.82);

    color: #eee;

    font-size: 10px;
}

.pw-video-info {
    padding: 13px;
}

.pw-video-title {
    color: #d8c497;

    font-size: 14px;
    line-height: 1.4;
}

.pw-video-publisher {
    margin-top: 8px;

    color: #777169;

    font-size: 11px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:760px) {

    .pw-news-card {
        grid-template-columns:
            105px
            minmax(0,1fr);

        gap: 12px;
    }

    .pw-news-image {
        width: 105px;
        height: 80px;
    }

    .pw-news-title {
        font-size: 15px;
    }

    .pw-news-description {
        display: none;
    }

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

}


/* ==========================================================
   PLAISIRS WORLD - MENU GSM V1
   ========================================================== */


/* Invisible sur desktop */

.pw-mobile-menu-button,
.pw-mobile-menu,
.pw-mobile-menu-overlay {
    display: none;
}


/* ==========================================================
   GSM
   ========================================================== */

@media (max-width: 760px) {


    /*
     * Desktop nav :
     * on conserve le header,
     * mais on simplifie fortement ses actions.
     */

    .pw-header-nav > a,
    .pw-header-nav > .pw-header-link,
    .pw-header-nav > .pw-header-select,
    .pw-header-nav > .pw-login-button {
        display: none !important;
    }


    .pw-header-inner {
        min-height: 66px !important;

        width:
            calc(100% - 20px) !important;
    }


    .pw-header-brand {
        display: flex !important;
    }


    .pw-header-logo {
        width: 44px !important;
        height: 44px !important;
    }


    /*
     * Hamburger
     */

    .pw-mobile-menu-button {
        width: 44px;
        height: 44px;

        display: flex !important;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        padding: 0;

        border:
            1px solid
            rgba(217,181,111,.19);

        border-radius: 13px;

        background:
            rgba(255,255,255,.025);

        cursor: pointer;
    }


    .pw-mobile-menu-button span {
        width: 18px;
        height: 1.5px;

        display: block;

        border-radius: 2px;

        background:
            #d8bc7c;
    }


    /*
     * Overlay
     */

    .pw-mobile-menu-overlay {
        position: fixed;

        inset: 0;

        z-index: 9998;

        display: block;

        visibility: hidden;

        opacity: 0;

        background:
            rgba(0,0,0,.66);

        backdrop-filter:
            blur(4px);

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }


    .pw-mobile-menu-overlay.open {
        visibility: visible;

        opacity: 1;
    }


    /*
     * Drawer
     */

    .pw-mobile-menu {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;

        z-index: 9999;

        width:
            min(
                390px,
                calc(100vw - 24px)
            );

        display: flex;

        flex-direction: column;

        overflow: hidden;

        transform:
            translateX(105%);

        border-left:
            1px solid
            rgba(217,181,111,.18);

        background:
            radial-gradient(
                circle at 50% -5%,
                rgba(217,181,111,.10),
                transparent 30%
            ),
            #090909;

        box-shadow:
            -20px 0 60px
            rgba(0,0,0,.40);

        transition:
            transform .28s ease;
    }


    .pw-mobile-menu.open {
        transform:
            translateX(0);
    }


    body.pw-mobile-menu-open {
        overflow: hidden;
    }


    /*
     * Header drawer
     */

    .pw-mobile-menu-head {
        min-height: 78px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 15px;

        padding:
            14px 16px;

        border-bottom:
            1px solid
            rgba(217,181,111,.10);
    }


    .pw-mobile-menu-brand {
        display: flex;

        align-items: center;

        gap: 11px;
    }


    .pw-mobile-menu-logo {
        width: 45px;
        height: 45px;

        display: block;

        object-fit: cover;

        border-radius: 50%;

        border:
            1px solid
            rgba(255,255,255,.75);
    }


    .pw-mobile-menu-name {
        color: #eed69e;

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 16px;
    }


    .pw-mobile-menu-small {
        margin-top: 3px;

        color: #625d55;

        font-size: 8px;

        letter-spacing: .4px;
    }


    .pw-mobile-menu-close {
        width: 39px;
        height: 39px;

        flex:
            0 0 39px;

        border:
            1px solid
            rgba(217,181,111,.13);

        border-radius: 12px;

        background:
            rgba(255,255,255,.02);

        color: #b7aa8c;

        font-size: 25px;

        line-height: 1;

        cursor: pointer;
    }


    /*
     * Scroll
     */

    .pw-mobile-menu-scroll {
        flex: 1;

        overflow-y: auto;

        overscroll-behavior: contain;

        padding:
            18px 14px
            35px;
    }


    .pw-mobile-menu-section-title {
        margin:
            4px 8px
            8px;

        color: #655e52;

        font-size: 9px;

        font-weight: 700;

        letter-spacing: 1.3px;

        text-transform: uppercase;
    }


    /*
     * Links
     */

    .pw-mobile-menu-links {
        display: flex;

        flex-direction: column;

        gap: 4px;
    }


    .pw-mobile-menu-link {
        width: 100%;

        min-height: 48px;

        display: flex;

        align-items: center;

        gap: 11px;

        box-sizing: border-box;

        padding:
            0 12px;

        border: 0;

        border-radius: 12px;

        background:
            transparent;

        color: #aaa399;

        text-align: left;

        text-decoration: none;

        font-size: 13px;

        font-family: inherit;

        cursor: pointer;
    }


    .pw-mobile-menu-link:hover,
    .pw-mobile-menu-link:active {
        color: #e8ca87;

        background:
            rgba(217,181,111,.055);
    }


    .pw-mobile-menu-ai {
        color: #ceb374;
    }


    .pw-mobile-menu-icon {
        width: 24px;

        display: inline-flex;

        align-items: center;
        justify-content: center;

        color: #b69a62;

        font-size: 15px;
    }


    .pw-mobile-menu-arrow {
        margin-left: auto;

        color: #5d584f;

        font-size: 19px;
    }


    .pw-mobile-menu-link-button {
        appearance: none;
    }


    /*
     * Separators
     */

    .pw-mobile-menu-separator {
        height: 1px;

        margin:
            17px 4px;

        background:
            rgba(217,181,111,.08);
    }


    /*
     * Language / country
     */

    .pw-mobile-settings {
        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .pw-mobile-setting {
        display: block;

        padding:
            11px 12px;

        border:
            1px solid
            rgba(217,181,111,.10);

        border-radius: 13px;

        background:
            rgba(255,255,255,.015);
    }


    .pw-mobile-setting-label {
        display: block;

        margin-bottom: 7px;

        color: #777066;

        font-size: 9px;
    }


    .pw-mobile-select {
        width: 100%;
        height: 38px;

        box-sizing: border-box;

        border:
            1px solid
            rgba(217,181,111,.13);

        border-radius: 10px;

        padding:
            0 9px;

        outline: none;

        background: #10100f;

        color: #c3bbae;

        font-size: 12px;
    }


    /*
     * Account
     */

    .pw-mobile-account {
        width: 100%;

        min-height: 64px;

        display: flex;

        align-items: center;

        gap: 12px;

        box-sizing: border-box;

        padding:
            10px 12px;

        border:
            1px solid
            rgba(217,181,111,.16);

        border-radius: 15px;

        background:
            linear-gradient(
                135deg,
                rgba(217,181,111,.055),
                rgba(255,255,255,.015)
            );

        color: #cfc6b6;

        text-align: left;

        cursor: pointer;
    }


    .pw-mobile-account-icon {
        width: 36px;
        height: 36px;

        flex:
            0 0 36px;

        display: flex;

        align-items: center;
        justify-content: center;

        border:
            1px solid
            rgba(217,181,111,.22);

        border-radius: 50%;

        color: #d3b66f;
    }


    .pw-mobile-account-content {
        min-width: 0;

        display: flex;

        flex-direction: column;

        gap: 3px;
    }


    .pw-mobile-account-content strong {
        color: #ddc684;

        font-size: 13px;

        font-weight: 600;
    }


    .pw-mobile-account-content small {
        color: #6d675e;

        font-size: 9px;
    }

}

