/* ==============================
   GLOBAL
============================== */

:root{
    --primary:#6b00f5;
    --secondary:#19d8d2;
    --blue:#1769e8;
    --green:#20c997;
    --yellow:#ffd51a;
    --orange:#ff9b18;
    --pink:#f51b68;

    --purple:#3b087d;
    --dark:#211047;
    --text:#625b78;
    --light:#f8f6ff;
    --white:#ffffff;
    --border:#e9e3f5;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:85px;
}

body{
    margin:0;
    font-family:"Poppins",Arial,Helvetica,sans-serif;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(107,0,245,.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(25,216,210,.06),
            transparent 25%
        ),
        #f7f5fc;

    color:var(--dark);
    line-height:1.75;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

button{
    font-family:inherit;
}


/* ==============================
   MAIN WEBSITE
============================== */

.site-wrapper{
    width:100%;
    max-width:760px;
    min-height:100vh;
    margin:0 auto;

    background:var(--white);

    box-shadow:
        0 0 50px rgba(49,20,100,.08);
}


/* ==============================
   HEADER
============================== */

.header{
    position:sticky;
    top:0;
    z-index:9999;

    height:78px;

    background:
        rgba(255,255,255,.95);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:
        1px solid rgba(107,0,245,.10);
}

.header-inner{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 22px;
}


/* ==============================
   BRAND
============================== */

.brand{
    display:flex;
    align-items:center;
    gap:11px;
}

.brand-logo{
    width:48px;
    height:48px;

    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:13px;

    overflow:hidden;

    background:#351078;

    box-shadow:
        0 6px 18px rgba(79,0,180,.22);
}

.brand-logo img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:13px;
}

.brand-name{
    font-size:21px;
    font-weight:700;

    letter-spacing:-.4px;

    background:
        linear-gradient(
            90deg,
            #6500e8,
            #9b18df,
            #1769e8,
            #00bfc9
        );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;
}


/* ==============================
   MENU BUTTON
============================== */

.menu-button{
    width:44px;
    height:44px;

    border:0;
    border-radius:13px;

    background:
        linear-gradient(
            135deg,
            #f4edff,
            #ecfbff
        );

    cursor:pointer;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:5px;

    transition:.25s ease;
}

.menu-button:hover{
    transform:translateY(-1px);

    box-shadow:
        0 6px 16px rgba(85,20,180,.14);
}

.menu-button span{
    display:block;

    width:23px;
    height:3px;

    border-radius:20px;

    background:
        linear-gradient(
            90deg,
            #6900e8,
            #1769e8
        );

    transition:.3s ease;
}

.menu-button.active span:nth-child(1){
    transform:
        translateY(8px)
        rotate(45deg);
}

.menu-button.active span:nth-child(2){
    opacity:0;
}

.menu-button.active span:nth-child(3){
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* ==============================
   DROPDOWN MENU
============================== */

.menu{
    position:absolute;

    top:70px;
    right:14px;

    width:235px;

    padding:6px;

    background:
        rgba(255,255,255,.98);

    border:
        1px solid rgba(107,0,245,.12);

    border-radius:18px;

    box-shadow:
        0 18px 45px rgba(44,20,90,.18);

    overflow:hidden;

    opacity:0;
    visibility:hidden;

    transform:
        translateY(-12px)
        scale(.98);

    transform-origin:
        top right;

    pointer-events:none;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}

.menu.show{
    opacity:1;
    visibility:visible;

    transform:
        translateY(0)
        scale(1);

    pointer-events:auto;
}

.menu a{
    display:block;

    padding:12px 15px;

    margin:2px 0;

    border-radius:11px;

    font-size:15px;
    font-weight:500;

    color:#34254e;

    transition:.2s ease;
}

.menu a:hover{
    background:
        linear-gradient(
            90deg,
            rgba(107,0,245,.10),
            rgba(25,216,210,.09)
        );

    color:#6500df;

    transform:
        translateX(3px);
}


/* ==============================
   HERO
============================== */

.hero{
    position:relative;

    overflow:hidden;

    text-align:center;

    padding:46px 24px 42px;

    background:

        radial-gradient(
            circle at 12% 20%,
            rgba(107,0,245,.15),
            transparent 28%
        ),

        radial-gradient(
            circle at 88% 18%,
            rgba(25,216,210,.12),
            transparent 28%
        ),

        radial-gradient(
            circle at 50% 100%,
            rgba(255,213,26,.11),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #ffffff,
            #faf7ff
        );

    border-bottom:
        1px solid #ebe5f4;
}

.hero:before,
.hero:after{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    pointer-events:none;
}

.hero:before{
    left:-145px;
    bottom:-125px;

    border:
        35px solid rgba(107,0,245,.07);
}

.hero:after{
    right:-150px;
    top:120px;

    border:
        35px solid rgba(25,216,210,.07);
}


/* ==============================
   HERO LOGO
============================== */

.hero-logo{
    position:relative;
    z-index:2;

    width:115px;
    height:115px;

    margin:
        0 auto 22px;

    padding:0;

    border-radius:28px;

    background:#351078;

    box-shadow:
        0 15px 35px rgba(73,15,150,.25),
        0 0 0 9px rgba(107,0,245,.06);

    overflow:hidden;
}

.hero-logo img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:28px;

    background:transparent;
}


/* ==============================
   HERO TEXT
============================== */

.hero h1{
    position:relative;
    z-index:2;

    margin:
        0 0 12px;

    color:var(--dark);

    font-size:34px;
    font-weight:700;

    line-height:1.25;

    letter-spacing:-.8px;
}

.hero p{
    position:relative;
    z-index:2;

    max-width:540px;

    margin:
        0 auto 28px;

    color:#655d79;

    font-size:15.5px;
}
/* ==============================
   BUTTONS
============================== */

.hero-buttons{
    position:relative;
    z-index:3;

    max-width:540px;

    margin:0 auto;

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:11px;
}

.btn{
    min-height:53px;

    padding:
        10px 15px;

    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    font-weight:600;
    font-size:15px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;

    border:
        1px solid transparent;
}

.btn:hover{
    transform:
        translateY(-2px);
}

.btn:active{
    transform:
        translateY(0);
}


/* ==============================
   LOGIN
============================== */

.btn-primary{
    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            #5b00d9,
            #8b16e8,
            #b318c9
        );

    box-shadow:
        0 8px 20px rgba(91,0,217,.25);
}

.btn-primary:hover{
    box-shadow:
        0 11px 25px rgba(91,0,217,.32);
}


/* ==============================
   REGISTER
============================== */

.btn-outline{
    color:#6200d9;

    background:#ffffff;

    border-color:
        rgba(98,0,217,.20);

    box-shadow:
        0 5px 15px rgba(70,20,130,.04);
}

.btn-outline:hover{
    background:
        linear-gradient(
            135deg,
            #fbf8ff,
            #f4faff
        );

    border-color:
        rgba(98,0,217,.35);

    box-shadow:
        0 7px 18px rgba(80,20,150,.10);
}


/* ==============================
   DOWNLOAD
============================== */

.btn-download{
    grid-column:1 / -1;

    color:#ffffff;

    background:
        linear-gradient(
            90deg,
            #1769e8,
            #008fe8,
            #12cfd0
        );

    box-shadow:
        0 8px 20px rgba(0,135,220,.20);
}

.btn-download:hover{
    box-shadow:
        0 11px 25px rgba(0,135,220,.28);
}


/* ==============================
   TELEGRAM
============================== */

.btn-telegram{
    grid-column:1 / -1;

    color:#ffffff;

    background:
        linear-gradient(
            90deg,
            #1769e8,
            #087fe7,
            #00b9d8
        );

    box-shadow:
        0 8px 20px rgba(0,130,220,.20);
}

.btn-telegram:hover{
    box-shadow:
        0 11px 25px rgba(0,130,220,.28);
}


/* ==============================
   CONTENT
============================== */

.content{
    padding:
        18px 18px 100px;

    background:
        linear-gradient(
            180deg,
            #faf8ff,
            #ffffff 18%
        );
}


/* ==============================
   CARD
============================== */

.card{
    position:relative;

    margin:
        0 0 17px;

    padding:
        25px 22px;

    background:#ffffff;

    border:
        1px solid #ebe6f4;

    border-radius:23px;

    box-shadow:
        0 8px 28px rgba(46,20,90,.045);
}

.card h2{
    position:relative;

    margin:
        0 0 18px;

    padding-bottom:11px;

    color:#241143;

    font-size:22px;

    line-height:1.4;
}

.card h2:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:70px;
    height:3px;

    border-radius:20px;

    background:
        linear-gradient(
            90deg,
            #6500e8,
            #9c18df,
            #1769e8,
            #00c7c9
        );
}

.card h3{
    margin:
        23px 0 9px;

    color:#2b1948;

    font-size:17px;

    line-height:1.5;
}

.card p{
    margin:
        0 0 14px;

    color:#625a76;

    font-size:15px;
}

.card strong{
    color:#49366a;

    font-weight:600;
}

.card ul,
.card ol{
    margin:
        10px 0 16px;

    padding-left:23px;

    color:#625a76;
}

.card li{
    margin-bottom:8px;
}


/* ==============================
   TABLE OF CONTENTS
============================== */

.toc{
    list-style:none !important;

    margin:0 !important;

    padding:0 !important;
}

.toc li{
    display:flex;

    align-items:center;

    gap:13px;

    margin:0;

    padding:12px 0;

    border-bottom:
        1px solid #eeeaf4;
}

.toc li:last-child{
    border-bottom:0;
}

.toc-number{
    flex:
        0 0 31px;

    width:31px;
    height:31px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #f0e4ff,
            #e4faff
        );

    color:#6500d9;

    font-size:13px;

    font-weight:700;
}

.toc a{
    color:#33224f;

    font-size:15px;

    font-weight:500;

    transition:.2s ease;
}

.toc a:hover{
    color:#6500d9;
}


/* ==============================
   TAGS
============================== */

.tags{
    display:flex;

    flex-wrap:wrap;

    gap:8px;
}

.tag{
    display:inline-block;

    padding:
        6px 13px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #f3ebff,
            #eafcff
        );

    border:
        1px solid rgba(101,0,217,.08);

    color:#6043a2;

    font-size:13px;

    font-weight:500;
}


/* ==============================
   TABLE
============================== */

.table-wrap{
    width:100%;

    overflow-x:auto;

    border:
        1px solid #e8e3f0;

    border-radius:14px;
}

table{
    width:100%;

    min-width:420px;

    border-collapse:collapse;

    font-size:14px;
}

th{
    background:
        linear-gradient(
            90deg,
            #5b00d9,
            #7d12df,
            #1769e8
        );

    color:#ffffff;

    text-align:left;

    padding:
        12px 14px;

    font-weight:600;
}

td{
    padding:
        11px 14px;

    color:#625a76;

    border-bottom:
        1px solid #eeeaf3;
}

tr:nth-child(even) td{
    background:#fbfaff;
}


/* ==============================
   APP IMAGE
============================== */

.app-image{
    width:100%;

    max-height:390px;

    object-fit:contain;

    margin:
        22px auto;

    padding:5px;

    background:#ffffff;

    border:
        1px solid #e8e3f0;

    border-radius:18px;

    box-shadow:
        0 10px 28px rgba(45,20,90,.09);
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width:600px){

    .site-wrapper{
        max-width:100%;
    }

    .header-inner{
        padding:
            0 16px;
    }

    .hero{
        padding:
            38px 18px 36px;
    }

    .hero-logo{
        width:100px;
        height:100px;
    }

    .hero h1{
        font-size:29px;
    }

    .hero p{
        font-size:14.5px;
    }

    .content{
        padding:
            14px 13px 80px;
    }

    .card{
        padding:
            22px 17px;

        border-radius:19px;
    }

    .card h2{
        font-size:20px;
    }

    .hero-buttons{
        gap:9px;
    }

    .btn{
        min-height:50px;

        font-size:14px;
    }

}


/* ==============================
   SMALL MOBILE
============================== */

@media (max-width:380px){

    .brand-name{
        font-size:18px;
    }

    .brand-logo{
        width:43px;
        height:43px;
    }

    .hero-buttons{
        grid-template-columns:1fr;
    }

    .btn-primary,
    .btn-outline,
    .btn-download,
    .btn-telegram{
        grid-column:1 / -1;
    }

}
/* ==============================
   REFER CODE
============================== */

.refer-box{
    margin:20px 0;

    padding:20px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            rgba(107,0,245,.08),
            rgba(25,216,210,.07)
        );

    border:
        1px solid rgba(107,0,245,.13);

    text-align:center;

    box-shadow:
        0 8px 22px rgba(50,25,100,.05);
}

.refer-label{
    display:block;

    margin-bottom:10px;

    color:#625a76;

    font-size:13px;
    font-weight:500;
}

.refer-code{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    flex-wrap:wrap;

    gap:10px;

    font-size:22px;
    font-weight:700;

    letter-spacing:1px;

    color:#6500d9;
}

.copy-btn{
    border:0;

    padding:8px 13px;

    border-radius:10px;

    background:
        linear-gradient(
            135deg,
            #5b00d9,
            #8c16e8,
            #1769e8
        );

    color:#ffffff;

    cursor:pointer;

    font-size:12px;
    font-weight:600;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.copy-btn:hover{
    transform:translateY(-1px);

    box-shadow:
        0 6px 15px rgba(91,0,217,.25);
}

.copy-btn:active{
    transform:translateY(0);
}


/* ==============================
   INFO BOX
============================== */

.info-box{
    margin:19px 0;

    padding:15px 17px;

    border-left:
        4px solid #1769e8;

    background:
        linear-gradient(
            90deg,
            rgba(23,105,232,.07),
            rgba(25,216,210,.04)
        );

    border-radius:
        0 14px 14px 0;

    color:#625a76;

    font-size:14px;

    line-height:1.7;
}


/* ==============================
   PROS CONS
============================== */

.pros li::marker{
    color:#13b987;
}

.cons li::marker{
    color:#e85272;
}

.pros li,
.cons li{
    padding-left:3px;
}


/* ==============================
   FAQ
============================== */

.faq-item{
    padding:16px 0;

    border-bottom:
        1px solid #ebe7f2;
}

.faq-item:last-child{
    border-bottom:0;
}

.faq-question{
    margin:0 0 7px;

    color:#2b1948;

    font-size:16px;
    font-weight:600;

    line-height:1.55;
}

.faq-answer{
    margin:0;

    color:#625a76;

    font-size:14.5px;

    line-height:1.75;
}


/* ==============================
   FOOTER
============================== */

.footer{
    position:fixed;

    z-index:999;

    left:0;
    right:0;
    bottom:0;

    height:52px;

    padding:
        0 15px;

    background:
        rgba(255,255,255,.96);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-top:
        1px solid #e8e3f0;

    box-shadow:
        0 -5px 20px rgba(40,20,80,.05);

    display:flex;

    align-items:center;
    justify-content:center;

    text-align:center;

    font-size:12.5px;

    color:#7a708c;
}

.footer strong{
    margin:0 3px;

    background:
        linear-gradient(
            90deg,
            #6500d9,
            #9417df,
            #1769e8,
            #00bfc5
        );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;

    font-weight:700;
}


/* ==============================
   ACCESSIBILITY
============================== */

a:focus-visible,
button:focus-visible{
    outline:
        3px solid rgba(23,105,232,.28);

    outline-offset:3px;
}

.copy-btn{
    -webkit-tap-highlight-color:transparent;
}

.menu-button{
    -webkit-tap-highlight-color:transparent;
}


/* ==============================
   MOBILE
============================== */

@media(max-width:520px){

    .site-wrapper{
        box-shadow:none;
    }

    .header-inner{
        padding:0 16px;
    }

    .hero{
        padding:38px 20px 36px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:14.5px;
    }

    .content{
        padding-left:13px;
        padding-right:13px;

        padding-bottom:85px;
    }

    .card{
        padding:21px 17px;

        border-radius:20px;
    }

    .card h2{
        font-size:20px;
    }

    .refer-box{
        padding:17px 13px;
    }

    .refer-code{
        font-size:19px;
    }

    .info-box{
        padding:14px 15px;

        font-size:13.5px;
    }

    .faq-question{
        font-size:15.5px;
    }

    .faq-answer{
        font-size:14px;
    }

    .footer{
        height:auto;

        min-height:50px;

        padding:
            10px 14px;

        font-size:11.5px;
    }

}


/* ==============================
   SMALL MOBILE
============================== */

@media(max-width:380px){

    .refer-code{
        width:100%;

        flex-direction:column;

        font-size:18px;
    }

    .copy-btn{
        width:100%;
    }

    .card{
        padding:
            19px 15px;
    }

}


/* ==============================
   TABLET / DESKTOP
============================== */

@media(min-width:521px){

    body{
        background:
            radial-gradient(
                circle at 10% 10%,
                rgba(107,0,245,.06),
                transparent 25%
            ),

            radial-gradient(
                circle at 90% 30%,
                rgba(25,216,210,.05),
                transparent 25%
            ),

            #f5f2fa;
    }

    .site-wrapper{
        min-height:100vh;
    }

}


/* =========================================
   PREMIUM RELATED PLATFORMS
========================================= */

.related-platforms{
    padding:35px 20px;

    margin-top:40px;

    background:
        linear-gradient(
            180deg,
            #faf8ff,
            #f6f9ff
        );

    border-top:
        1px solid #e8e3f0;
}

.related-container{
    max-width:1100px;

    margin:0 auto;
}


/* ==============================
   HEADING
============================== */

.related-platforms h2{
    text-align:center;

    margin:
        0 0 8px;

    font-size:26px;

    font-weight:700;

    color:#281544;
}

.related-description{
    text-align:center;

    margin:
        0 auto 25px;

    font-size:14px;

    color:#706781;
}


/* ==============================
   PLATFORM GRID
============================== */

.platform-grid{
    display:grid !important;

    grid-template-columns:
        repeat(4, 1fr) !important;

    gap:12px !important;

    width:100%;
}


/* ==============================
   PLATFORM CARD
============================== */

.platform-card{
    display:flex !important;

    align-items:center !important;

    width:100%;

    min-height:58px;

    padding:
        9px 12px !important;

    box-sizing:border-box;

    background:#ffffff;

    border:
        1px solid #e7e2ef;

    border-radius:11px;

    text-decoration:none !important;

    color:#281544 !important;

    gap:10px;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


/* ==============================
   HOVER
============================== */

.platform-card:hover{
    transform:
        translateY(-2px);

    border-color:
        rgba(101,0,217,.22);

    box-shadow:
        0 7px 18px rgba(55,20,100,.09);
}


/* ==============================
   PLATFORM LOGO
============================== */

.platform-card img{
    width:34px !important;
    height:34px !important;

    min-width:34px !important;
    min-height:34px !important;

    padding:3px;

    box-sizing:border-box;

    object-fit:contain;

    background:#ffffff;

    border:
        1px solid #ebe7f1;

    border-radius:8px;

    display:block;
}


/* ==============================
   PLATFORM NAME
============================== */

.platform-card span{
    font-size:14px !important;

    font-weight:600;

    line-height:1.2;

    color:#33204f;

    overflow:hidden;

    text-overflow:ellipsis;

    white-space:nowrap;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:900px){

    .platform-grid{
        grid-template-columns:
            repeat(3, 1fr) !important;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px){

    .related-platforms{
        padding:
            30px 12px;
    }

    .related-platforms h2{
        font-size:23px;
    }

    .related-description{
        font-size:13px;

        margin-bottom:20px;
    }

    .platform-grid{
        grid-template-columns:
            repeat(2, 1fr) !important;

        gap:10px !important;
    }

    .platform-card{
        min-height:54px;

        padding:
            8px 9px !important;

        gap:8px;
    }

    .platform-card img{
        width:30px !important;
        height:30px !important;

        min-width:30px !important;
        min-height:30px !important;
    }

    .platform-card span{
        font-size:12px !important;
    }

}


/* =========================================
   VERY SMALL SCREEN
========================================= */

@media(max-width:360px){

    .platform-grid{
        grid-template-columns:
            1fr !important;
    }

}