/* =========================================================
   GASY RICHE
   PREMIUM BLACK + GOLD
   COMPLETE STYLE
========================================================= */


/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    margin:0;
    width:100%;
    min-height:100vh;

    overflow-x:hidden;

    background:#050505;
    color:#fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing:antialiased;
}

img,
video,
canvas,
iframe{
    display:block;
    max-width:100%;
}

img{
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
select,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

::selection{
    background:#d4af37;
    color:#000;
}


/* =========================================================
   COLORS
========================================================= */

:root{

    --black:#050505;
    --black2:#090909;
    --black3:#101010;
    --black4:#151515;

    --gold:#d4af37;
    --gold-light:#ffe98a;
    --gold-bright:#f7d85b;
    --gold-dark:#9d7410;

    --white:#fff;
    --text:#e9e9e9;
    --gray:#999;
    --gray-dark:#666;

    --border:
        rgba(212,175,55,.28);

    --border-strong:
        rgba(212,175,55,.55);

    --shadow:
        0 10px 30px rgba(0,0,0,.45);

    --gold-shadow:
        0 0 25px rgba(212,175,55,.18);

    --radius:20px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
    width:5px;
}

::-webkit-scrollbar-track{
    background:#050505;
}

::-webkit-scrollbar-thumb{
    background:#9d7410;
    border-radius:20px;
}


/* =========================================================
   HEADER
========================================================= */

.brandbar{
    width:100%;
    min-height:70px;

    display:flex;
    align-items:center;

    padding:10px 15px;

    position:sticky;
    top:0;
    z-index:1000;

    background:
        linear-gradient(
            180deg,
            #121212,
            #050505
        );

    border-bottom:
        1px solid rgba(212,175,55,.30);

    box-shadow:
        0 5px 25px rgba(0,0,0,.45);
}

.brand{
    display:flex;
    align-items:center;
    gap:11px;

    min-width:0;
}

.brand img{
    width:48px;
    height:48px;

    flex:0 0 48px;

    border-radius:50%;

    object-fit:cover;

    border:
        2px solid var(--gold);

    box-shadow:
        0 0 18px rgba(212,175,55,.25);
}

.brand b{
    display:block;

    color:var(--gold-light);

    font-size:18px;
    font-weight:900;

    letter-spacing:1px;
}

.brand small{
    display:block;

    margin-top:3px;

    color:#8f8f8f;

    font-size:9px;

    letter-spacing:1.5px;
}


/* =========================================================
   COVER
========================================================= */

.cover{
    width:100%;
    min-height:245px;

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

    padding:35px 18px;

    text-align:center;

    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,.12),
            transparent 60%
        ),
        #050505;

    border-bottom:
        1px solid rgba(212,175,55,.15);
}

.cover-content{
    width:100%;
    max-width:600px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.cover-logo{
    width:92px;
    height:92px;

    border-radius:50%;

    object-fit:cover;

    border:
        3px solid var(--gold);

    box-shadow:
        0 0 28px rgba(212,175,55,.28);
}

.cover h1{
    margin-top:15px;

    color:var(--gold-light);

    font-size:31px;
    font-weight:900;

    letter-spacing:2px;

    text-shadow:
        0 0 18px rgba(212,175,55,.25);
}

.cover p{
    margin-top:7px;

    color:#bcbcbc;

    font-size:12px;

    letter-spacing:1.5px;
}


/* =========================================================
   MAIN
========================================================= */

main{
    width:100%;
    max-width:1200px;

    margin:0 auto;

    padding:
        18px 15px
        105px;
}


/* =========================================================
   PAGE SYSTEM
========================================================= */

.page{
    display:none;
    width:100%;
}

.page.active{
    display:block;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title{
    margin:
        4px 0 18px;

    color:var(--gold-light);

    font-size:23px;
    font-weight:900;

    letter-spacing:.4px;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow{
    display:block;

    margin-bottom:6px;

    color:var(--gold);

    font-size:10px;
    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;
}


/* =========================================================
   GENERIC CARD
========================================================= */

.card{
    width:100%;

    margin-bottom:15px;

    padding:18px;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            #111,
            #080808
        );

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}

.card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity:.6;
}


/* =========================================================
   DASHBOARD IMAGE
========================================================= */

.dashboard-image{
    width:100%;

    margin-bottom:18px;

    overflow:hidden;

    border-radius:19px;

    background:#080808;

    border:
        1px solid var(--border);
}

.dashboard-image img{
    width:100%;
    height:auto;

    object-fit:contain;
    object-position:center;
}


/* =========================================================
   QUICK MENU
========================================================= */

.quick-menu{
    width:100%;

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:9px;

    margin-bottom:18px;
}

.quick-item{
    min-width:0;

    display:flex;
    flex-direction:column;

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

    gap:7px;

    padding:11px 5px;

    background:#0c0c0c;

    border:
        1px solid rgba(212,175,55,.23);

    border-radius:17px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.quick-item:hover{
    background:#111;

    border-color:
        rgba(212,175,55,.55);
}

.icon-frame{
    width:47px;
    height:47px;

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

    overflow:hidden;

    border-radius:14px;

    background:#050505;

    border:
        1px solid rgba(212,175,55,.25);
}

.icon-frame img{
    width:100%;
    height:100%;

    object-fit:contain;
}

.quick-name{
    max-width:100%;

    overflow:hidden;

    color:#d5d5d5;

    font-size:10px;
    font-weight:700;

    text-align:center;

    white-space:nowrap;
}


/* =========================================================
   BALANCE
========================================================= */

.balance{
    width:100%;

    padding:20px;

    margin-bottom:18px;

    text-align:center;

    border-radius:20px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #070707
        );

    border:
        1px solid var(--border);

    box-shadow:
        var(--gold-shadow);
}

.balance small{
    display:block;

    color:#888;

    font-size:10px;

    letter-spacing:1.5px;
}

.balance strong{
    display:block;

    margin-top:7px;

    color:var(--gold-light);

    font-size:29px;

    font-weight:900;
}


/* =========================================================
   ACTIONS
========================================================= */

.actions{
    width:100%;

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:11px;

    margin-bottom:18px;
}


/* =========================================================
   DEPOT BUTTON
========================================================= */

.gold-btn{
    min-height:54px;

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

    gap:8px;

    padding:11px 14px;

    border:
        1px solid #f6d968;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #fff09a,
            #ffd83d,
            #e9b900
        );

    color:#000;

    font-weight:900;

    box-shadow:
        0 8px 23px
        rgba(212,175,55,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.gold-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(212,175,55,.30);
}

.gold-btn:active{
    transform:scale(.97);
}

.gold-btn img{
    width:24px;
    height:24px;

    object-fit:contain;
}


/* =========================================================
   ACHAT VIP BUTTON
   JAUNE + ORDER.PNG
========================================================= */

.dark-btn{
    min-height:54px;

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

    gap:9px;

    padding:11px 14px;

    border:
        1px solid #f6d968;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #fff09a 0%,
            #ffd83d 45%,
            #e9b900 100%
        );

    color:#000;

    font-weight:900;

    box-shadow:
        0 8px 23px
        rgba(212,175,55,.20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.dark-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(212,175,55,.35);
}

.dark-btn:active{
    transform:scale(.97);
}

.dark-btn img{
    width:24px;
    height:24px;

    display:block;

    object-fit:contain;
}

.dark-btn span{
    color:#000;
}


/* =========================================================
   SUPPORT
========================================================= */

.support{
    width:100%;

    margin-top:18px;
}

.support-item{
    width:100%;

    display:flex;
    align-items:center;

    gap:12px;

    padding:15px;

    margin-bottom:10px;

    background:#0c0c0c;

    border:
        1px solid rgba(212,175,55,.22);

    border-radius:15px;

    color:#ddd;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.support-item:hover{
    background:#111;

    border-color:
        rgba(212,175,55,.55);
}

.support-item strong{
    color:var(--gold-light);

    font-size:13px;
}

.support-item span{
    display:block;

    margin-top:3px;

    color:#888;

    font-size:11px;
}


/* =========================================================
   DEMO
========================================================= */

.demo{
    width:100%;

    margin-top:15px;

    padding:14px;

    background:#0a0a0a;

    border:
        1px solid rgba(212,175,55,.18);

    border-radius:14px;

    color:#777;

    font-size:10px;

    line-height:1.6;

    text-align:center;
}


/* =========================================================
   HISTORY
========================================================= */

.history{
    width:100%;

    display:flex;
    flex-direction:column;

    gap:10px;
}

.history-item{
    width:100%;

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

    gap:10px;

    padding:15px;

    background:#0c0c0c;

    border:
        1px solid rgba(212,175,55,.20);

    border-radius:15px;
}

.history-item strong{
    color:#eee;

    font-size:13px;
}

.history-item small{
    display:block;

    margin-top:3px;

    color:#777;

    font-size:10px;
}

.history-item .amount{
    color:var(--gold-light);

    font-weight:900;
}


/* =========================================================
   TASK CARD
========================================================= */

.task-card{
    width:100%;

    padding:17px;

    margin-bottom:12px;

    background:
        linear-gradient(
            145deg,
            #111,
            #080808
        );

    border:
        1px solid rgba(212,175,55,.25);

    border-radius:18px;

    box-shadow:
        var(--shadow);
}

.task-card h3{
    margin-bottom:7px;

    color:var(--gold-light);

    font-size:15px;
}

.task-card p{
    margin-bottom:13px;

    color:#8d8d8d;

    font-size:12px;

    line-height:1.5;
}

.task-card button{
    width:100%;

    min-height:45px;

    border:
        1px solid var(--gold);

    border-radius:13px;

    background:
        linear-gradient(
            135deg,
            #fff09a,
            #ffd83d,
            #e9b900
        );

    color:#000;

    font-weight:900;
}


/* =========================================================
   PROFILE
========================================================= */

.profile-head{
    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center;

    padding:25px 15px;

    margin-bottom:15px;

    text-align:center;

    background:
        linear-gradient(
            145deg,
            #111,
            #080808
        );

    border:
        1px solid var(--border);

    border-radius:20px;
}

.profile-logo-frame{
    width:86px;
    height:86px;

    overflow:hidden;

    border-radius:50%;

    border:
        2px solid var(--gold);

    box-shadow:
        0 0 23px
        rgba(212,175,55,.24);
}

.profile-logo-frame img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.profile-name{
    margin-top:12px;

    color:var(--gold-light);

    font-size:19px;

    font-weight:900;
}

.profile-email{
    margin-top:4px;

    color:#777;

    font-size:11px;
}

.profile-item{
    width:100%;

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

    padding:15px;

    margin-bottom:9px;

    background:#0c0c0c;

    border:
        1px solid rgba(212,175,55,.20);

    border-radius:14px;
}

.profile-item span{
    color:#888;

    font-size:12px;
}

.profile-item strong{
    color:#eee;

    font-size:13px;
}

.logout{
    width:100%;

    min-height:48px;

    margin-top:8px;

    border:
        1px solid #6b2b2b;

    border-radius:14px;

    background:#170909;

    color:#ff9292;

    font-weight:900;
}


/* =========================================================
   VIP HERO
========================================================= */

.vip-hero{
    width:100%;

    margin-bottom:18px;

    overflow:hidden;

    background:#080808;

    border:
        1px solid var(--border);

    border-radius:20px;

    box-shadow:
        var(--shadow);
}

.vip-hero img{
    width:100%;
    height:auto;

    object-fit:contain;
    object-position:center;
}

.vip-hero video{
    width:100%;
    height:auto;

    object-fit:contain;

    background:#000;
}


/* =========================================================
   VIP LIST
========================================================= */

.vip-list{
    width:100%;

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:14px;
}


/* =========================================================
   VIP CARD
========================================================= */

.vip-card{
    width:100%;
    min-width:0;

    padding:17px;

    background:
        linear-gradient(
            145deg,
            #121212,
            #070707
        );

    border:
        1px solid rgba(212,175,55,.30);

    border-radius:20px;

    box-shadow:
        0 10px 28px
        rgba(0,0,0,.42);

    /* NO CARD ANIMATION */
    transform:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.vip-card:hover{
    border-color:
        rgba(212,175,55,.50);

    box-shadow:
        0 12px 32px
        rgba(0,0,0,.50);
}


/* =========================================================
   VIP LOGO
========================================================= */

.vip-logo{
    width:64px;
    height:64px;

    margin:
        0 auto 12px;

    overflow:hidden;

    border-radius:50%;

    background:#050505;

    border:
        2px solid var(--gold);

    box-shadow:
        0 0 18px
        rgba(212,175,55,.18);
}

.vip-logo img{
    width:100%;
    height:100%;

    object-fit:cover;
}


/* =========================================================
   VIP TITLE
========================================================= */

.vip-card h3{
    margin-bottom:13px;

    color:var(--gold-light);

    font-size:18px;
    font-weight:900;

    text-align:center;
}


/* =========================================================
   VIP INFORMATION
========================================================= */

.vip-info{
    width:100%;

    display:flex;
    flex-direction:column;

    gap:7px;

    margin-bottom:14px;
}

.vip-info-row{
    width:100%;

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

    gap:8px;

    padding:9px 10px;

    background:#090909;

    border:
        1px solid rgba(212,175,55,.12);

    border-radius:10px;
}

.vip-info-row span{
    color:#777;

    font-size:10px;
}

.vip-info-row strong{
    color:#eee;

    font-size:11px;

    text-align:right;
}


/* =========================================================
   VIP TOTAL
========================================================= */

.vip-total{
    width:100%;

    margin:
        12px 0;

    padding:12px;

    text-align:center;

    background:
        rgba(212,175,55,.07);

    border:
        1px solid rgba(212,175,55,.22);

    border-radius:12px;
}

.vip-total small{
    display:block;

    margin-bottom:4px;

    color:#888;

    font-size:9px;
}

.vip-total strong{
    color:var(--gold-light);

    font-size:16px;

    font-weight:900;
}


/* =========================================================
   ACHETER VIP
   ONLY THIS ELEMENT ANIMATES
========================================================= */

.acheter-vip,
.vip-buy,
.buy-vip{
    width:100%;

    min-height:48px;

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

    gap:7px;

    padding:10px 12px;

    border:
        1px solid #f6d968;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #fff09a,
            #ffd83d,
            #e9b900
        );

    color:#000;

    font-size:14px;

    font-weight:900;

    box-shadow:
        0 7px 20px
        rgba(212,175,55,.15);

    animation:
        achatVipPulse 2s ease-in-out infinite;

    will-change:transform;
}

.acheter-vip:hover,
.vip-buy:hover,
.buy-vip:hover{
    animation-play-state:paused;

    box-shadow:
        0 10px 28px
        rgba(212,175,55,.32);
}

.acheter-vip:active,
.vip-buy:active,
.buy-vip:active{
    transform:scale(.97);
}

@keyframes achatVipPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.035);
    }

    100%{
        transform:scale(1);
    }
}


/* =========================================================
   DEPOSIT COVER
========================================================= */

.deposit-cover{
    width:100%;

    margin-bottom:17px;

    overflow:hidden;

    background:#080808;

    border:
        1px solid var(--border);

    border-radius:20px;
}

.deposit-cover img{
    width:100%;
    height:auto;

    object-fit:contain;
}


/* =========================================================
   DEPOSIT CARD
========================================================= */

.deposit-card{
    width:100%;

    padding:18px;

    background:#0b0b0b;

    border:
        1px solid rgba(212,175,55,.28);

    border-radius:20px;

    box-shadow:
        var(--shadow);
}


/* =========================================================
   PAYMENT METHODS
========================================================= */

.payment-method{
    width:100%;

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:10px;

    margin-bottom:15px;
}

.payment-method-item{
    padding:13px;

    background:#070707;

    border:
        1px solid rgba(212,175,55,.20);

    border-radius:14px;

    color:#ddd;

    font-size:12px;
    font-weight:800;

    text-align:center;
}

.payment-method-item.active{
    color:var(--gold-light);

    border-color:var(--gold);

    box-shadow:
        0 0 16px
        rgba(212,175,55,.10);
}


/* =========================================================
   FORM
========================================================= */

.deposit-card label{
    display:block;

    margin:
        13px 0 7px;

    color:#aaa;

    font-size:11px;
    font-weight:700;
}

.deposit-card input,
.deposit-card select,
.deposit-card textarea{
    width:100%;

    min-height:46px;

    padding:12px 13px;

    outline:none;

    background:#050505;

    color:#fff;

    border:
        1px solid rgba(212,175,55,.22);

    border-radius:12px;
}

.deposit-card textarea{
    min-height:100px;

    resize:vertical;
}

.deposit-card input:focus,
.deposit-card select:focus,
.deposit-card textarea:focus{
    border-color:var(--gold);

    box-shadow:
        0 0 0 2px
        rgba(212,175,55,.07);
}


/* =========================================================
   SUBMIT
========================================================= */

.deposit-submit{
    width:100%;

    min-height:50px;

    margin-top:16px;

    border:
        1px solid var(--gold);

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #fff09a,
            #ffd83d,
            #e9b900
        );

    color:#000;

    font-weight:900;
}


/* =========================================================
   BOTTOM NAV
========================================================= */

.bottom-nav{
    position:fixed;

    left:0;
    right:0;
    bottom:0;

    width:100%;

    min-height:68px;

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    padding:
        7px 8px
        calc(
            7px +
            env(safe-area-inset-bottom)
        );

    background:
        rgba(5,5,5,.97);

    border-top:
        1px solid rgba(212,175,55,.30);

    box-shadow:
        0 -8px 28px
        rgba(0,0,0,.50);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    z-index:2000;
}

.bottom-nav a,
.bottom-nav button{
    min-width:0;

    display:flex;
    flex-direction:column;

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

    gap:4px;

    background:transparent;

    border:0;

    color:#777;

    font-size:10px;
    font-weight:700;
}

.bottom-nav svg{
    width:22px;
    height:22px;

    fill:none;

    stroke:currentColor;

    stroke-width:1.8;
}

.bottom-nav a.active,
.bottom-nav button.active{
    color:var(--gold-light);
}


/* =========================================================
   FOOTER
========================================================= */

footer{
    width:100%;

    margin-top:25px;

    padding:
        20px 10px;

    color:#666;

    font-size:10px;

    line-height:1.6;

    text-align:center;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width:600px){

    main{
        padding-left:24px;
        padding-right:24px;
    }

    .cover{
        min-height:280px;
    }

    .cover-logo{
        width:105px;
        height:105px;
    }

    .cover h1{
        font-size:37px;
    }

    .vip-list{
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width:1000px){

    main{
        padding-left:30px;
        padding-right:30px;
    }

    .quick-menu{
        gap:13px;
    }

    .vip-list{
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width:430px){

    .brandbar{
        min-height:65px;

        padding:
            9px 12px;
    }

    .brand img{
        width:44px;
        height:44px;

        flex-basis:44px;
    }

    .brand b{
        font-size:16px;
    }

    .brand small{
        font-size:8px;
    }

    .cover{
        min-height:215px;

        padding:
            28px 15px;
    }

    .cover-logo{
        width:80px;
        height:80px;
    }

    .cover h1{
        font-size:27px;
    }

    .cover p{
        font-size:10px;
    }

    main{
        padding:
            15px 10px
            100px;
    }

    .quick-menu{
        gap:7px;
    }

    .quick-item{
        padding:9px 3px;
    }

    .icon-frame{
        width:42px;
        height:42px;
    }

    .quick-name{
        font-size:8.5px;
    }

    .balance{
        padding:17px;
    }

    .balance strong{
        font-size:25px;
    }

    .actions{
        gap:8px;
    }

    .gold-btn,
    .dark-btn{
        min-height:51px;

        padding:
            9px 7px;

        font-size:11px;
    }

    .gold-btn img,
    .dark-btn img{
        width:21px;
        height:21px;
    }

    .vip-list{
        grid-template-columns:1fr;

        gap:12px;
    }

    .vip-card{
        padding:16px;
    }
}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width:350px){

    .cover h1{
        font-size:24px;
    }

    .quick-name{
        font-size:8px;
    }

    .icon-frame{
        width:38px;
        height:38px;
    }

    .bottom-nav{
        padding-left:4px;
        padding-right:4px;
    }

    .bottom-nav svg{
        width:20px;
        height:20px;
    }

    .bottom-nav a,
    .bottom-nav button{
        font-size:9px;
    }
}


/* =========================================================
   LANDSCAPE PHONE
========================================================= */

@media (
    max-height:500px
) and (
    orientation:landscape
){

    .cover{
        min-height:180px;

        padding:20px;
    }

    .cover-logo{
        width:65px;
        height:65px;
    }

    .cover h1{
        margin-top:8px;

        font-size:24px;
    }

    .cover p{
        font-size:9px;
    }
}


/* =========================================================
   SAFARI / IOS
========================================================= */

@supports (-webkit-touch-callout:none){

    body{
        min-height:
            -webkit-fill-available;
    }

    .bottom-nav{
        padding-bottom:
            calc(
                8px +
                env(safe-area-inset-bottom)
            );
    }
}


/* =========================================================
   IMAGE PROTECTION
========================================================= */

img[src=""],
img:not([src]){
    visibility:hidden;
}

img{
    image-rendering:auto;
}


/* =========================================================
   VIDEO
========================================================= */

video{
    max-width:100%;
    height:auto;

    background:#000;

    object-fit:contain;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    .acheter-vip,
    .vip-buy,
    .buy-vip{
        animation:none;
    }

    *,
    *::before,
    *::after{
        transition-duration:.01ms !important;
    }
}