*{box-sizing:border-box}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f1f7;
    color:#25172f;
}

.page-center{
    max-width:1100px;
    margin:0 auto;
    padding:30px 15px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:25px;
}

.welcome-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-align:left;
}

.welcome-logo{
    width:62px;
    height:62px;
    object-fit:contain;
}

.welcome-title h1{
    margin:0;
    line-height:1.12;
}

.desktop-title,
.mobile-title{
    display:flex;
    flex-direction:column;
}

.mobile-title{
    display:none;
}

@media(max-width:850px){
    .welcome-logo{
        width:54px;
        height:54px;
    }

    .desktop-title{
        display:none;
    }

    .mobile-title{
        display:flex;
    }
}

.welcome-box,
.register-card,
.members-card,
.chat-panel{
    background:#fff;
    border-radius:15px;
    box-shadow:0 12px 35px rgba(45,20,70,.12);
    border:1px solid rgba(92,45,130,.12);
}

.welcome-box,
.register-card{
    padding:28px;
}

@media(max-width:850px){
    .page-center{
        display:block;
        padding:0;
        margin:0;
        max-width:none;
        width:100%;
    }

    .welcome-box{
        width:100%;
        border-radius:0;
        border-left:0;
        border-right:0;
        box-shadow:none;
        margin:0;
        padding:24px 18px;
    }

    .register-card{
        margin:15px;
    }
}

.welcome-box h1,
.register-card h2{
    color:#63308d;
    margin-top:0;
}

.rules-box{
    background:#f8f4fc;
    border-radius:18px;
    padding:18px;
    border:1px solid rgba(99,48,141,.14);
}

.rules-box h2{
    color:#b38635;
}

.accept-text{
    text-align: center;
    font-weight:700;
    color:#63308d;
}

input,
textarea{
    width:100%;
    padding:14px;
    margin-bottom:13px;
    border-radius:14px;
    border:1px solid #d8cde2;
    font-size:15px;
    outline:none;
}

textarea{
    min-height:110px;
    resize:vertical;
}

input:focus,
textarea:focus{
    border-color:#8b55c7;
    box-shadow:0 0 0 3px rgba(139,85,199,.12);
}

button{
    border:0;
    cursor:pointer;
}

.register-card button,
#sendMessageBtn{
    width:100%;
    padding:14px 18px;
    border-radius:14px;
    background:linear-gradient(135deg,#63308d,#8b55c7);
    color:#fff;
    font-size:16px;
    font-weight:800;
}

.alert-error{
    background:#ffe8e8;
    color:#a11f1f;
    padding:12px;
    border-radius:12px;
    margin-bottom:15px;
}

.register-helper-box{
    margin-top:12px;
    padding:14px 16px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.88);
    font-size:13px;
    line-height:1.5;
    transition:.2s;
}

.register-helper-box.warning{
    background:rgba(255,80,80,.12);
    border-color:rgba(255,80,80,.4);
    color:#ffb3b3;
}

.register-helper-box.success{
    background:rgba(90,255,140,.12);
    border-color:rgba(90,255,140,.35);
    color:#b9ffd0;
}

.input-error{
    border-color:#ff6b6b !important;
    box-shadow:0 0 0 4px rgba(255,107,107,.12);
}

.register-helper-box,
.register-helper-box *{
    color:#5c4b67 !important;
}

.register-helper-box strong{
    color:#f6a623 !important;
    font-weight:900;
}

.register-helper-box.warning,
.register-helper-box.warning *{
    color:#b72525 !important;
}

.register-helper-box.warning strong{
    color:#f6a623 !important;
}

.register-helper-box.success,
.register-helper-box.success *{
    color:#168a42 !important;
}

.g-recaptcha {margin: 10px auto}

/************************************************
**************** LISTE MEMBRES ******************
************************************************/

/* Header */
.table-head{
    display:grid;
    grid-template-columns:
        minmax(180px,1fr)
        80px
        220px
        50px;

    align-items:center;

    padding:16px 20px;

    background:#63308d;
    color:#fff;

    font-weight:900;
    font-size:15px;
}

/* Lignes */
.member-row{
    width:100%;
    display:grid;
    grid-template-columns:
        minmax(180px,1fr)
        80px
        220px
        50px;
    align-items:center;
    padding:13px 20px;
    background:#fff;
    border-bottom:1px solid #eee7f3;
    color:#25172f;
    font-size:15px;
    text-align:left;
}

.member-row:hover{
    background:#faf7ff;
}

/* Alignement colonnes */
.table-head span,
.member-row > span{
    display:flex;
    align-items:center;
    min-width:0;
}

/* Colonne pseudo */
.member-name-cell{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    min-width:0;
}

.member-name-left{
    display:flex;
    align-items:center;
    gap:4px;
    min-width:0;
    overflow:hidden;
}

.member-name-right{
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:3px;
    flex:0 0 auto;
}

.member-name-right.stack-badges{
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
    gap:1px;
    line-height:1;
    margin-right: 3px;
}

.member-name-right.stack-badges .new-age,
.member-name-right.stack-badges .vip-badge{
    margin:0;
}

.member-name-right .new-age{
    margin:0 3px 0 0;
}

.member-name-right .vip-badge{
    margin:0 3px 0 0;
}

.member-pseudo{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/* Badge sexe */
.sex-badge{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:18px;
    min-width:18px;

    font-size:18px;
    font-weight:900;

    background:none !important;
    border:0;

    line-height:1;
}

/* Badge VIP */
.vip-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:1px 5px;
    border-radius:2px;
    background:#ffe5a3;
    color:#7d5200;
    font-size:11px;
    font-style:normal;
    font-weight:900;
    flex:0 0 auto;
}

/* Région */
.member-region{
    line-height:1.15;
    white-space:normal;
}

/* Âge NEW */
.new-age{
    color:#d33577;
    font-size:11px;
    font-weight:900;
    font-style:normal;
}

.member-row.has-new-message{
    background:linear-gradient(90deg, #fff3d6, #ffffff);
    border-left:5px solid #d4a33a;
}

.member-row.has-new-message .member-name-cell{
    color:#7d5200;
    font-weight:900;
}

.member-row.has-new-message .member-pseudo{
    color:#7d5200;
}

.member-row.has-new-message .sex-badge{
    filter:brightness(1.15);
}

.member-row.has-new-message:hover{
    background:linear-gradient(90deg, #ffe9b0, #fffaf0);
}

.member-row.has-new-message .member-name-cell{
    animation:newMessageGlow .8s infinite alternate;
}

.member-row.is-active-row{
    background:#f7efff;
    box-shadow:inset 4px 0 0 #8b55c7;
}

@keyframes newMessageGlow{
    from{opacity:.75}
    to{opacity:1}
}

/************************************************
******************* MOBILE **********************
************************************************/

@media(max-width:850px){

    .table-head{
        grid-template-columns:
            minmax(120px,1fr)
            54px
            120px
            34px;

        padding:14px 10px;

        font-size:14px;
    }

    .member-row{
        grid-template-columns:
            minmax(120px,1fr)
            54px
            120px
            34px;

        padding:14px 10px;

        font-size:14px;
    }

    .member-region{
        max-width:115px;
    }

    .table-head span:nth-child(4),
    .member-row > span:nth-child(4){
        justify-content:flex-start;
    }
}

/** VIP BADGE ***/
.vip-header-badge{
    width:58px;
    height:58px;
    border-radius:16px;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    text-decoration:none;
    color:#fff !important;
    font-weight:900;
    line-height:1;
    border:1px solid rgba(255,216,92,.55);
    background:linear-gradient(145deg,#2a123f,#7b2fd1,#d4a33a);
    box-shadow:
        0 10px 28px rgba(0,0,0,.22),
        0 0 22px rgba(212,163,58,.34);
}

.vip-header-badge .vip-badge-icon{
    color:#ffd85c;
    font-size:20px;
    line-height:1;
}

.vip-header-badge .vip-badge-text{
    font-size:15px;
    letter-spacing:.5px;
}

.vip-header-badge.is-premium{
    background:linear-gradient(145deg,#3b0a5f,#9b35ff,#f1a51c);
    box-shadow:
        0 12px 32px rgba(0,0,0,.28),
        0 0 28px rgba(241,165,28,.48),
        inset 0 0 14px rgba(255,255,255,.12);
}

.vip-header-badge:hover{
    transform:translateY(-1px) scale(1.03);
    filter:brightness(1.1);
}

@media(max-width:850px){
    .vip-header-badge{
        width:48px;
        height:48px;
        min-width:48px;
        border-radius:14px;
        gap:1px;
    }

    .vip-header-badge .vip-badge-icon{
        font-size:17px;
    }

    .vip-header-badge .vip-badge-text{
        font-size:13px;
        letter-spacing:.3px;
    }
}

@media(max-width:420px){
    .vip-header-badge{
        width:44px;
        height:44px;
        min-width:44px;
        border-radius:12px;
    }

    .vip-header-badge .vip-badge-icon{
        font-size:15px;
    }

    .vip-header-badge .vip-badge-text{
        font-size:12px;
    }
}

/* MAIN */
.welcome-user{
    font-weight:800;
    color:#63308d;
}

.header-logo{
    width:52px;
    height:52px;
    object-fit:contain;
    flex:0 0 auto;
}

.header-left{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    color:inherit;
}

.header-title-text{
    text-align:left;
}

.chatt-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

@media(max-width:850px){
    .header-logo{
        width:46px;
        height:46px;
    }

    .header-left{
        width:100%;
        justify-content:center;
    }

    .header-title-text{
        text-align:left;
    }

    .header-title-text h1{
        font-size:34px !important;
        line-height:1;
    }
}

.header-separator{
    margin:0 6px;
    color:#a48ab9;
    font-weight:700;
}

.chatt-header{
    position:sticky;
    top:0;
    z-index:50;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:18px 25px;
    background:#fff;
    box-shadow:0 4px 20px rgba(45,20,70,.08);
}

.chatt-header h1{
    margin:0 0 4px;
    color:#63308d;
    font-size:1.5rem;
}

#onlineCount{
    font-weight:700;
    color:#7a618d;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-actions a{
    color:#63308d;
    font-weight:700;
    text-decoration:none;
}

.sound-toggle{
    display:flex;
    align-items:center;
    gap:7px;
    font-weight:700;
    color:#5c4b67;
    cursor:pointer;
}

.sound-toggle input{
    width:auto;
    margin:0;
}

.members-card{
    overflow:hidden;
}

.new-age{
    color:#d33577;
    font-size:11px;
    font-weight:900;
    font-style:normal;
}

.chat-panel{
    position:relative;
    padding:20px;
    min-height:430px;
}

.close-panel{
    width:100%;
    height:34px;
    margin-top: 10px;
    border-radius:14px;
    background:#f1e9f8;
    color:#63308d;
    font-size:18px;
    line-height:1;
}

.chat-empty{
    height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#806991;
    font-weight:700;
}

.chat-active h2{
    color:#63308d;
    margin:5px 40px 8px 0;
}

#chatDescription{
    background:#f8f4fc;
    padding:12px;
    border-radius:14px;
    color:#5c4b67;
    line-height:1.5;
}

.msg{
    max-width:85%;
    padding:9px 12px;
    border-radius:14px;
    margin-bottom:8px;
    line-height:1.4;
    font-size:14px;
}

.msg.me{
    margin-left:auto;
    background:#63308d;
    color:#fff;
}

.msg.them{
    background:#eee7f3;
    color:#25172f;
}

.mail-bubble{
    position:fixed;
    right:22px;
    bottom:26px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#63308d,#b38635);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    box-shadow:0 12px 35px rgba(45,20,70,.3);
    opacity:.35;
    transform:scale(.9);
    transition:.2s;
    z-index:100;
}

.mail-bubble.active{
    opacity:1;
    transform:scale(1);
    animation:mailFlash .38s infinite alternate;
}

@keyframes mailFlash{
    0%{
        transform:scale(1) rotate(-3deg);
        box-shadow:
            0 0 0 0 rgba(212,163,58,.75),
            0 0 18px rgba(139,85,199,.85),
            0 0 35px rgba(212,163,58,.65);
        filter:brightness(1);
    }

    100%{
        transform:scale(1.14) rotate(3deg);
        box-shadow:
            0 0 0 12px rgba(212,163,58,0),
            0 0 35px rgba(139,85,199,1),
            0 0 60px rgba(212,163,58,.95);
        filter:brightness(1.45);
    }
}

.mail-bubble{
    font-size:0 !important;
}

.mail-bubble::before{
    content:"✉";
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    font-size:38px;
    line-height:1;
    transform:translateY(-1px);
}

@media(max-width:850px){
    .mail-bubble{
        width:70px;
        height:70px;
        right:10px;
        bottom:10px;
    }

    .mail-bubble::before{
        font-size:66px;
        transform:translateY(-8px);
    }
}

select{
    width:100%;
    padding:14px;
    margin-bottom:13px;
    border-radius:14px;
    border:1px solid #d8cde2;
    font-size:15px;
    outline:none;
    background:#fff;
}

select:focus{
    border-color:#8b55c7;
    box-shadow:0 0 0 3px rgba(139,85,199,.12);
}

.new-message-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    margin-left:6px;
    padding:0;
    border-radius:50%;
    background:#d4a33a;
    color:#fff;
    font-size:0;
    font-style:normal;
    font-weight:900;
    animation:newMsgPulse .8s infinite alternate;
}

.new-message-badge::before{
    content:"✉";
    font-size:14px;
    line-height:1;
}

.chat-actions{
    margin-top:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    text-align:center;
}

.messages-wrap{
    position:relative;
}

.messages-box{
    height:210px;
    overflow:auto;
    padding:12px;
    background:#fbf9fd;
    border:1px solid #eee7f3;
    border-radius:16px;
    margin-bottom:12px;
}

.typing-indicator{
    position:absolute;
    left:11px;
    bottom:2px;
    z-index:10;
    display:none;
    color:#000;
    font-size:13px;
    font-style:italic;
    font-weight:700;
    pointer-events:none;
}

.chat-link-action{
    background:none;
    border:0;
    padding:0;
    color:#63308d;
    font-weight:800;
    text-decoration:underline;
    cursor:pointer;
}

.chat-link-action.danger{
    color:#b72525;
}

.chat-link-action.warning{
    color:#c27a00;
}

.blocked-badge{
    display:inline-block;
    margin-left:8px;
    padding:3px 8px;
    border-radius:999px;
    background:#f0ad4e;
    color:#3b2600;
    font-size:11px;
    font-style:normal;
    font-weight:900;
}

.chat-link-action.warning{
    color:#c27a00;
}

.blocked-badge{
    display:inline-block;
    margin-left:8px;
    padding:3px 8px;
    border-radius:999px;
    background:#f0ad4e;
    color:#3b2600;
    font-size:11px;
    font-style:normal;
    font-weight:900;
}

.subscribe-btn{
    width:100%;
    padding:16px 18px;
    border-radius:16px;
    background:linear-gradient(135deg,#d4a33a,#8b55c7);
    color:#fff;
    font-size:18px;
    font-weight:900;
    text-align:center;
    box-shadow:0 10px 25px rgba(45,20,70,.18);
    margin-bottom:12px;
}

.subscribe-btn small{
    display:block;
    margin-top:4px;
    font-size:13px;
    font-weight:700;
    opacity:.92;
}

/**** VIDEOS CALL ****/
.chat-user-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-back-btn {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.chat-back-btn img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.chat-user-info {
    min-width: 0;
    flex: 1;
}

.chat-user-info h2 {
    margin: 0;
}

.chat-user-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.video-call-btn {
    width: 42px;
    height: 38px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-call-btn.is-visible {
    display: inline-flex;
}

.video-call-btn img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.video-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(34, 197, 94, .38);
}

.video-call-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.video-call-btn.is-call-blocked {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(1);
    pointer-events: none;
}

.video-call-blocked-btn {
    width: 42px;
    height: 38px;
    border: 0;
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: .9;
}

.video-call-blocked-btn[hidden] {
    display: none !important;
}

.video-call-blocked-btn img {
    width: 53px;
    height: 53px;
    object-fit: contain;
}

.video-call-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.76);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-call-modal[hidden] {
    display: none !important;
}

.video-call-box {
    width: min(920px, 94vw);
    background: linear-gradient(145deg, #13091d, #241033);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 25px 80px rgba(0,0,0,.65);
    position: relative;
}

.video-call-end {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.video-call-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}

.video-call-header img {
    width: 28px;
    height: 28px;
}

.video-call-screen {
    position: relative;
    width: 100%;
    height: 430px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
}

#remoteVideoCall {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

#localVideoCall {
    position: absolute !important;
    right: 14px;
    bottom: 14px;
    width: 180px !important;
    height: 125px !important;
    max-width: 38%;
    display: block;
    object-fit: cover !important;
    background: #000;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,.8);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
    z-index: 5;
}

@media (max-width: 700px) {
    .video-call-box {
        width: 96vw;
        padding: 12px;
        border-radius: 18px;
    }

    #remoteVideoCall {
        height: 68vh;
        border-radius: 16px;
    }

    .video-call-screen {
        height: 68vh;
        border-radius: 16px;
    }

    #localVideoCall {
        width: 110px !important;
        height: 145px !important;
        max-width: 36%;
        right: 10px;
        bottom: 10px;
        border-radius: 12px;
    }

    .video-call-header {
        font-size: 15px;
        padding-right: 42px;
    }
}

#remoteVideoCall,
#localVideoCall {
    background: #000;
    border-radius: 16px;
    object-fit: cover;
}

#remoteVideoCall {
    min-height: 430px;
}

#localVideoCall {
    height: 140px;
}

.video-call-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.video-call-action-btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
}

.incoming-call-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}

.incoming-call-badge[hidden] {
    display: none !important;
}

.incoming-call-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    animation: callPulse 1s infinite;
}

@keyframes callPulse {
    0%, 100% { transform: scale(1); opacity: .75; }
    50% { transform: scale(1.18); opacity: 1; }
}

.incoming-call-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.incoming-call-actions[hidden] {
    display: none !important;
}

.accept-call-btn,
.decline-call-btn {
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.accept-call-btn {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.decline-call-btn {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.block-call-btn {
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    color: #1f1400;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

/**** BADGES COULEURS SEXE ******/
.sex-homme{
    color:#2f80ed;
}

.sex-femme{
    color:#ff5fa2;
}

.sex-couple{
    color:#8b55c7;
}

.sex-trans{
    color:#18c6c6;
}

.sex-travestie{
    color:#f6a623;
}

.sex-couple_hommes{
    color:#123f88;
}

.sex-couple_femmes{
    color:#c2185b;
}

.new-age{
    margin-right:2px;
}

/**** FILTRES DE RECHERCHE ****/
.chatt-layout{
    max-width:1200px;
    margin:25px auto;
    padding:0 15px;
    display:grid;
    grid-template-columns:minmax(0, 1fr) 390px;
    gap:22px;
    align-items:start;
}

.filters-desktop{
    grid-column:1 / -1;
    width:100%;
    margin:0;
    padding:0;
}

.filters-form{
    width:100%;
    display:grid;
    grid-template-columns:1.4fr 70px 70px 140px 1fr 100px 120px 120px;
    gap:8px;
    align-items:center;
    background:#fff;
    padding:14px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(45,20,70,.08);
}

.filter-row{
    display:contents;
}

.filters-form input,
.filters-form select{
    width:100%;
    min-width:0;
    height:44px;
    margin:0;
}

.filter-buttons{
    display:contents;
}

.filter-buttons button{
    height:44px;
    border-radius:12px;
    font-weight:800;
}

.mobile-filter-link{
    display:none;
}

@media(max-width:850px){
    .chatt-layout{
        display:block;
        margin:0;
        padding:0;
        max-width:none;
    }

    .filters-desktop{
        display:none;
    }

    .mobile-filter-link{
        display:block;
        width:100%;
        padding:12px;
        background:#fff;
        color:#63308d;
        font-weight:900;
        text-decoration:underline;
        text-align:center;
        border-bottom:1px solid #eee7f3;
    }
}

/* Mobile */
/**** RESPONSIVE MEDIA *******/
.filters-modal[hidden]{
    display:none !important;
}

.filters-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    background:rgba(0,0,0,.45);
    padding:18px;
}

.filters-modal-box{
    position:relative;
    max-width:420px;
    margin:40px auto;
    background:#fff;
    border-radius:22px;
    padding:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.28);
}

.filters-close{
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f1e9f8;
    color:#63308d;
    font-size:22px;
}

@keyframes newMsgPulse{
    from{opacity:.65}
    to{opacity:1}
}

@keyframes mailBlink{
    from{box-shadow:0 0 0 rgba(139,85,199,0)}
    to{box-shadow:0 0 22px rgba(139,85,199,.9)}
}

@media(max-width:850px){
    .page-center,
    .chatt-layout{
        grid-template-columns:1fr;
    }

    .chatt-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .header-actions{
        width:100%;
        justify-content:space-between;
    }

    .chat-panel{
        display:none;
    }

    .chat-panel.open{
        display:block;
    }

    .members-card.hidden-mobile{
        display:none;
    }
}

@media(max-width:850px){
    .chatt-layout{
        margin:0;
        padding:0;
        max-width:none;
    }

    .members-card{
        width:100%;
        border-radius:0;
        border:0;
        box-shadow:none;
    }
}

@media(max-width:850px){
    .new-message-badge{
        display:none !important;
    }
}

@media(max-width:850px){
    .filters-modal-box{
        width:100%;
        max-width:420px;
        max-height:calc(100vh - 40px);
        overflow-y:auto;
        margin:20px auto;
        padding:22px;
    }

    .filters-modal .filters-form{
        display:flex !important;
        flex-direction:column;
        gap:12px;
        width:100%;
        padding:0;
        box-shadow:none;
        background:transparent;
    }

    .filters-modal .filter-row{
        display:flex !important;
        flex-direction:column;
        gap:12px;
        width:100%;
    }

    .filters-modal .filters-form input,
    .filters-modal .filters-form select{
        width:100%;
        height:46px;
        margin:0;
    }

    .filters-modal .filter-buttons{
        display:flex !important;
        flex-direction:column;
        gap:10px;
        width:100%;
    }

    .filters-modal .filter-buttons button{
        width:100%;
        height:46px;
    }
}

@media(min-width:851px){
    .filters-desktop .filter-buttons button[type="submit"]{
        display:none;
    }
}

@media(min-width:851px){
    .filters-desktop .filters-form{
        grid-template-columns:1fr 110px 110px 180px 1fr 170px 110px;
    }

    .filters-desktop input[name="age_min"],
    .filters-desktop input[name="age_max"]{
        min-width:110px;
    }

    .filters-desktop select[name="sexe"]{
        min-width:180px;
    }

    .filters-desktop select[name="country_code"]{
        min-width:170px;
    }
}

.filters-form select{
    height:44px;
    line-height:44px;
    padding:0 34px 0 5px;
    display:flex;
    align-items:center;
}

.filters-form input{
    height:44px;
    line-height:44px;
    padding:0 8px;
}

.filters-form select{
    appearance:auto;
    -moz-appearance:auto;
}

.filters-form select{
    min-width:0;
    width:100%;
    height:46px;
    line-height:normal;
    padding:0 44px 0 12px;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
}

.filters-form input{
    min-width:0;
    width:100%;
    height:46px;
    padding:0 12px;
}

.mobile-filter-wrapper{
    display:none;
}

@media(max-width:850px){
    .chat-panel{
        display:none;
    }

    .chat-panel.open{
        display:block;
    }

    .members-card.hidden-mobile{
        display:none;
    }
}

/**** MODAL OPTIONS ****/
.options-link{
    background:linear-gradient(135deg,#63308d,#d4a33a);
    color:#fff;
    border:0;
    border-radius:999px;
    padding:9px 16px;
    font-weight:900;
    cursor:pointer;
}

.options-modal[hidden]{
    display:none !important;
}

.options-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(8,0,20,.72);
    backdrop-filter:blur(8px);
}

.options-modal-box{
    position:relative;
    width:100%;
    max-width:560px;
    padding:30px;
    border-radius:26px;
    background:
        radial-gradient(circle at top left, rgba(139,53,221,.25), transparent 38%),
        linear-gradient(145deg,#1b0d35,#0b061f);
    border:1px solid rgba(255,216,92,.24);
    color:#fff;
    box-shadow:0 24px 80px rgba(0,0,0,.45);
}

.options-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:38px;
    height:38px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.1);
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

.options-modal-box h2{
    margin:0;
    color:#ffd85c;
    font-size:2rem;
}

.options-intro{
    margin:8px 0 22px;
    color:rgba(255,255,255,.72);
}

.option-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.1);
}

.option-row strong{
    display:block;
    color:#fff;
    font-size:1.05rem;
}

.option-row span{
    display:block;
    margin-top:4px;
    color:rgba(255,255,255,.62);
    font-size:.92rem;
    line-height:1.4;
}

.premium-switch{
    position:relative;
    width:66px;
    height:36px;
    flex:0 0 auto;
}

.premium-switch input{
    opacity:0;
    width:0;
    height:0;
}

.premium-switch span{
    position:absolute;
    inset:0;
    cursor:pointer;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.18);
    transition:.25s;
}

.premium-switch span::before{
    content:"";
    position:absolute;
    width:28px;
    height:28px;
    left:4px;
    top:3px;
    border-radius:50%;
    background:#fff;
    transition:.25s;
    box-shadow:0 6px 18px rgba(0,0,0,.35);
}

.premium-switch input:checked + span{
    background:linear-gradient(135deg,#8b35dd,#f1a51c);
    box-shadow:0 0 20px rgba(241,165,28,.25);
}

.premium-switch input:checked + span::before{
    transform:translateX(29px);
}

.options-form{
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.1);
}

.options-form label{
    display:block;
    margin-bottom:8px;
    color:#ffd85c;
    font-weight:900;
}

.options-form textarea{
    width:100%;
    min-height:115px;
    resize:vertical;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:14px;
    outline:none;
}

.options-save-btn{
    width:100%;
    min-height:52px;
    margin-top:14px;
    border:0;
    border-radius:16px;
    color:#fff;
    font-weight:900;
    cursor:pointer;
    background:linear-gradient(135deg,#8b20d7,#c44890,#f1a51c);
}

.options-vip-link-wrap{
    margin:-6px 0 18px;
    width:100%;
}

.options-vip-link{
    width:100%;
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 16px;
    border-radius:999px;
    text-decoration:none;
    font-size:.95rem;
    font-weight:900;
    color:#fff;
    background:linear-gradient(135deg,#7b2fd1,#d4a33a);
    border:1px solid rgba(255,216,92,.34);
    box-shadow:
        0 10px 24px rgba(0,0,0,.24),
        0 0 18px rgba(212,163,58,.18);
}

.options-vip-link:hover{
    transform:translateY(-1px);
    filter:brightness(1.08);
    color:#fff;
}

/**** MODAL QUITTER ****/
.quit-link{
    background:transparent;
    border:0;
    color:#63308d;
    font-weight:800;
    cursor:pointer;
    padding:0;
    font-size:17px;
}

.quit-modal[hidden]{
    display:none !important;
}

.quit-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(20,10,32,.62);
    backdrop-filter:blur(6px);
}

.quit-modal-box{
    position:relative;
    width:100%;
    max-width:460px;
    padding:30px;
    border-radius:26px;
    background:
        linear-gradient(145deg, #ffffff, #faf7ff);
    box-shadow:
        0 24px 70px rgba(0,0,0,.32),
        0 0 0 1px rgba(99,48,141,.12);
    text-align:center;
    animation:quitModalIn .22s ease-out;
}

@keyframes quitModalIn{
    from{
        opacity:0;
        transform:translateY(12px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.quit-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border-radius:50%;
    background:#f1e9f8;
    color:#63308d;
    font-size:24px;
    line-height:1;
}

.quit-modal-icon{
    width:62px;
    height:62px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#63308d,#d4a33a);
    color:#fff;
    font-size:30px;
    box-shadow:0 12px 30px rgba(99,48,141,.25);
}

.quit-modal-box h2{
    margin:0 0 12px;
    color:#63308d;
    font-size:1.55rem;
}

.quit-modal-box p{
    margin:0 0 14px;
    color:#5c4b67;
    line-height:1.6;
    font-size:15px;
}

.quit-thanks{
    font-weight:800;
    color:#8b55c7 !important;
}

.quit-modal-actions{
    display:flex;
    gap:12px;
    margin-top:22px;
}

.quit-cancel,
.quit-confirm{
    flex:1;
    min-height:46px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    text-decoration:none;
}

.quit-cancel{
    background:#f1e9f8;
    color:#63308d;
}

.quit-confirm{
    background:linear-gradient(135deg,#b72525,#d4a33a);
    color:#fff;
}

@media(max-width:850px){
    .quit-modal{
        align-items:flex-end;
        padding:12px;
    }

    .quit-modal-box{
        max-width:none;
        border-radius:24px 24px 18px 18px;
        padding:28px 20px 22px;
    }

    .quit-modal-actions{
        flex-direction:column;
    }

    .quit-cancel,
    .quit-confirm{
        width:100%;
    }
}

.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
}

.sound-toggle{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin:0;
    line-height:1;
}

.sound-toggle input{
    width:auto;
    margin:0;
    transform:translateY(0);
}

.quit-link{
    display:inline-flex;
    align-items:center;
    line-height:1;
    height:auto;
    margin:0;
    padding:0;
}

@media(max-width:850px){
    .header-actions{
        width:100%;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
    }
}

/**** PAGE VIP/PREMIUM ******/
*{box-sizing:border-box}

:root{
    --bg:#090018;
    --panel:rgba(24,13,48,.74);
    --panel2:rgba(39,20,70,.68);
    --border:rgba(190,105,255,.35);
    --gold:#ffd85c;
    --gold2:#f1a51c;
    --purple:#8b35dd;
    --pink:#df4fb8;
    --text:#fff;
    --muted:rgba(255,255,255,.74);
}

body.vip-premium-page{
    margin:0;
    min-height:100vh;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top left, rgba(130,38,214,.34), transparent 32%),
        radial-gradient(circle at top right, rgba(241,165,28,.12), transparent 30%),
        linear-gradient(145deg,#070014,#15052a 48%,#080015);
}

body.vip-premium-page .vip-page{
    color:#fff;
}

body.vip-premium-page .chatt-header{
    color:#25172f;
}

.vip-page{
    width:100%;
    max-width:1380px;
    margin:26px auto 48px;
    padding:0 24px;
}

.vip-card{
    background:transparent;
    border:0;
    box-shadow:none;
    padding:0;
}

.vip-header{
    text-align:center;
    margin:12px 0 34px;
}

.vip-kicker{
    display:none;
}

.vip-header h1{
    margin:0;
    font-size:clamp(2.4rem,4vw,4.2rem);
    font-weight:900;
    letter-spacing:-1px;
    line-height:1;
}

.vip-header h1::before{
    content:"♛";
    display:inline-block;
    margin-right:16px;
    color:var(--gold);
    filter:drop-shadow(0 0 14px rgba(255,216,92,.45));
}

.vip-header h1 strong,
.vip-header h1 span{
    color:var(--gold);
}

.vip-subtitle{
    margin:18px auto 0;
    max-width:900px;
    color:rgba(255,255,255,.82);
    font-size:1.12rem;
    line-height:1.6;
}

.vip-layout{
    display:grid;
    gap:22px;
}

.vip-box{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:
        radial-gradient(circle at top left, rgba(139,53,221,.22), transparent 34%),
        linear-gradient(145deg,rgba(36,18,70,.82),rgba(12,6,35,.86));
    border:1px solid var(--border);
    box-shadow:
        0 18px 60px rgba(0,0,0,.38),
        inset 0 0 0 1px rgba(255,255,255,.04);
}

.vip-box h2{
    margin:0 0 14px;
    color:var(--gold);
    font-size:1.75rem;
    font-weight:900;
}

/* POINTS */
.points-wide{
    min-height:172px;
    padding:34px 44px;
    display:grid;
    grid-template-columns:160px 1fr 1.1fr 320px;
    gap:34px;
    align-items:center;
}

.points-icon{
    width:112px;
    height:112px;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:58px;
    color:var(--gold);
    background:radial-gradient(circle,rgba(255,216,92,.30),rgba(139,53,221,.45));
    border:4px solid rgba(189,83,255,.75);
    box-shadow:
        0 0 35px rgba(177,73,255,.42),
        inset 0 0 24px rgba(255,216,92,.20);
}

.points-number{
    display:flex;
    align-items:flex-end;
    gap:10px;
    margin:0;
    font-size:4rem;
    line-height:.9;
    font-weight:900;
}

.points-number small{
    font-size:1.15rem;
    color:rgba(255,255,255,.75);
    margin-bottom:8px;
}

.points-info{
    padding-left:34px;
    border-left:1px solid rgba(255,255,255,.16);
    color:rgba(255,255,255,.86);
    font-size:1.08rem;
    line-height:1.55;
}

.claim-area{
    width:100%;
    text-align:center;
}

#claimPointsBtn{
    width:100%;
    min-width:320px;
    white-space:nowrap;
}

.timer{
    margin-top:14px;
    color:rgba(255,255,255,.78);
    font-size:1rem;
}

.timer strong{
    color:var(--gold);
}

/* PLANS */
.vip-plans{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    align-items:stretch;
}

.plan-box{
    position:relative;
    min-height:auto;
    padding:34px;
    display:flex;
    flex-direction:column;
}

.plan-box h2{
    max-width:82%;
    min-height:42px;
    margin:0 0 14px;
    padding-right:95px;
}

.plan-box .box-desc{
    max-width:97%;
    min-height:0;
    margin:0 0 28px;
    padding-right:95px;
    color:rgba(255,255,255,.78);
    font-size:1.08rem;
    line-height:1.55;
}

.plan-price{
    height:auto;
    margin:0 0 18px;
    display:flex;
    align-items:flex-end;
    color:var(--gold);
    font-size:3.2rem;
    line-height:1;
    font-weight:900;
}

.plan-box::after{
    position:absolute;
    right:34px;
    top:26px;
    width:88px;
    height:88px;
    border-radius:24px;
    display:grid;
    place-items:center;
    font-size:48px;
    opacity:.92;
    filter:drop-shadow(0 0 18px rgba(200,78,255,.38));
}

.plan-box.vip-plan::after{
    content:"💬";
}

.plan-box.premium-box::after{
    content:"📹";
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,95,190,.5);
    box-shadow:0 0 28px rgba(255,95,190,.28);
}

.plan-badge{
    width:max-content;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 18px;
    border-radius:999px;
    background:linear-gradient(135deg,#5d2db2,#8b35dd);
    color:#fff;
    font-size:1.3rem;
    font-weight:900;
    border:1px solid rgba(255,255,255,.22);
    box-shadow:0 8px 24px rgba(0,0,0,.25);
    margin-bottom:26px;
}

.plan-badge.premium{
    background:linear-gradient(135deg,#8b35dd,#f1a51c);
}

.plan-price span{
    font-size:1.1rem;
    color:rgba(255,255,255,.78);
    margin-left:10px;
    margin-bottom:6px;
}

.plan-progress-row{
    display:grid;
    grid-template-columns:1fr 58px;
    gap:18px;
    align-items:center;
    margin:0 0 22px;
}

.progress-wrap{
    width:100%;
    height:20px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    overflow:hidden;
}

.progress-percent{
    color:#fff;
    font-size:1.3rem;
    font-weight:900;
    text-align:right;
}

.plan-box .vip-btn{
    margin-top:0;
}

.plan-box .vip-btn{
    margin-top:0;
}

.plan-progress-row{
    margin:0 0 18px;
}

.vip-plans{
    align-items:start;
}

/* CODE */
.code-wide{
    padding:32px 38px;
    display:grid;
    grid-template-columns:120px 1fr 1.65fr;
    gap:28px;
    align-items:center;
}

.code-icon{
    width:94px;
    height:106px;
    display:grid;
    place-items:center;
    font-size:46px;
    color:var(--gold);
    border-radius:28px;
    background:linear-gradient(145deg,rgba(139,53,221,.36),rgba(241,165,28,.16));
    border:2px solid rgba(202,83,255,.55);
    clip-path:polygon(50% 0,100% 18%,100% 72%,50% 100%,0 72%,0 18%);
    filter:drop-shadow(0 0 22px rgba(197,78,255,.34));
}

.code-wide .box-desc{
    max-width:100%;
}

.code-row{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:18px;
    align-items:center;
}

.vip-input{
    width:100%;
    min-height:70px;
    border-radius:16px;
    padding:0 22px;
    background:rgba(10,5,32,.72);
    border:1px solid rgba(255,255,255,.16);
    color:#fff;
    font-size:1.2rem;
    outline:none;
    text-transform:uppercase;
}

.vip-input:focus{
    border-color:rgba(255,216,92,.55);
    box-shadow:0 0 0 4px rgba(255,216,92,.12);
}

.vip-input.is-error{
    border:2px solid #ff6b6b;
    box-shadow:0 0 0 4px rgba(255,107,107,.15);
}

/* BOUTONS */
.vip-btn{
    width:100%;
    min-height:66px;
    border:0;
    border-radius:16px;
    cursor:pointer;
    color:#fff;
    font-size:1.12rem;
    font-weight:900;
    background:linear-gradient(135deg,#8b20d7,#c44890,#f1a51c);
    border:1px solid rgba(255,216,92,.45);
    box-shadow:
        0 14px 32px rgba(0,0,0,.28),
        0 0 18px rgba(188,68,255,.18);
}

.vip-btn:hover:not(:disabled){
    filter:brightness(1.08);
    transform:translateY(-1px);
}

.vip-btn:disabled{
    opacity:.56;
    cursor:not-allowed;
    filter:saturate(.65);
}

.vip-btn .lock,
.vip-btn .bolt{
    margin-right:10px;
}

.back-link{
    min-height:76px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:#fff;
    text-decoration:none;
    font-size:1.35rem;
    font-weight:900;
    background:linear-gradient(145deg,rgba(24,13,48,.72),rgba(11,6,32,.78));
    border:1px solid rgba(255,255,255,.15);
}

.back-link::before{
    content:"\21A9";
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.vip-active{
    padding:14px;
    border-radius:16px;
    background:rgba(38,194,106,.16);
    color:#9dffbf;
    font-weight:900;
    margin:12px 0 18px;
    text-align:center;
}

.vip-message{
    display:none;
    min-height:0;
    margin-top:0;
    color:var(--gold);
    font-weight:800;
}

.vip-message:not(:empty){
    display:block;
    margin-top:12px;
    min-height:22px;
}

.vip-message.error{color:#ff8f8f}
.vip-message.success{color:#9dffbf}

.vip-secure{
    margin:28px 0 0;
    text-align:center;
    color:rgba(255,255,255,.45);
}

.vip-toast{
    position:fixed;
    top:110px;
    left:50%;
    z-index:999999;
    transform:translate(-50%, -18px) scale(.92);
    padding:16px 28px;
    border-radius:999px;
    background:linear-gradient(135deg,#8b20d7,#d94fa3,#f1a51c);
    color:#fff;
    font-size:1.15rem;
    font-weight:900;
    box-shadow:
        0 18px 55px rgba(0,0,0,.42),
        0 0 30px rgba(212,163,58,.35);
    opacity:0;
    pointer-events:none;
    transition:.35s ease;
}

.vip-toast.show{
    opacity:1;
    transform:translate(-50%, 0) scale(1);
}

.vip-toast::before{
    content:"+";
    margin-right:8px;
    color:#ffd85c;
}

.vip-toast.success{
    background:linear-gradient(135deg,#8b20d7,#d94fa3,#f1a51c);
}

.vip-toast.error{
    background:linear-gradient(135deg,#b72525,#ff6b6b,#f1a51c);
}

.vip-toast.error::before{
    content:"⚠";
}

.vip-toast.success::before{
    content:"+";
}

.chatt-toast{
    position:fixed;
    top:105px;
    left:50%;
    z-index:9999999;
    transform:translate(-50%, -18px) scale(.94);
    padding:15px 26px;
    border-radius:999px;
    color:#fff;
    font-size:1.05rem;
    font-weight:900;
    opacity:0;
    pointer-events:none;
    transition:.28s ease;
    box-shadow:0 18px 55px rgba(0,0,0,.38);
}

.chatt-toast.show{
    opacity:1;
    transform:translate(-50%, 0) scale(1);
}

.chatt-toast.success{
    background:linear-gradient(135deg,#8b20d7,#d94fa3,#f1a51c);
}

.chatt-toast.error{
    background:linear-gradient(135deg,#b72525,#ff6b6b,#f1a51c);
}

@media(max-width:620px){
    .vip-toast,
    .chatt-toast{
        top:86px;
        left:12px;
        right:12px;
        width:auto;
        max-width:none;
        transform:translateY(-18px) scale(.96);
        padding:15px 18px;
        border-radius:18px;
        font-size:.98rem;
        text-align:center;
        line-height:1.35;
        white-space:normal;
    }

    .vip-toast.show,
    .chatt-toast.show{
        transform:translateY(0) scale(1);
    }
}

.code-row{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:18px;
    align-items:stretch;
}

.code-row .vip-input,
.code-row .vip-btn{
    height:70px;
    min-height:70px;
    margin:0;
}

#codeMessage{
    display:none !important;
}

/* RESPONSIVE */
@media(max-width:980px){
    .points-wide{
        grid-template-columns:1fr;
        text-align:center;
        justify-items:center;
    }

    .points-info{
        padding-left:0;
        border-left:0;
    }

    .vip-plans,
    .code-wide,
    .code-row{
        grid-template-columns:1fr;
    }

    .plan-box h2,
    .box-desc{
        max-width:100%;
    }

    .plan-box::after{
        opacity:.22;
    }
}

@media(max-width:620px){
    .vip-page{
        padding:0 14px;
    }

    .points-wide,
    .plan-box,
    .code-wide{
        padding:24px;
    }

    .vip-header h1{
        font-size:2.15rem;
    }

    .points-number{
        font-size:3.2rem;
    }

    .plan-price{
        font-size:2.8rem;
    }

    #claimPointsBtn{
        min-width:0;
        width:100%;
    }

    .plan-box .box-desc{
        max-width:100% !important;
        width:100%;
        padding-right:0 !important;
        margin-bottom:22px;
    }

    .plan-box h2{
        max-width:100% !important;
        padding-right:0 !important;
    }
}