*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#09090b;
    color:#fff;
    overflow-x:hidden;
}

body,
a{
    -webkit-tap-highlight-color:transparent;
}

a{
    color:#fff;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}


/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:86px;
    z-index:1000;

    background:rgba(7,7,8,.72);
    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:64px;
    height:auto;
}


/* =========================
   BURGER
========================= */

.menu-wrapper{
    position:relative;
}

#menu-toggle{
    display:none;
}

.menu-button{
    width:52px;
    height:52px;

    border:1px solid rgba(255,255,255,.1);
    border-radius:15px;

    background:rgba(255,255,255,.04);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;

    cursor:pointer;
    transition:.3s;
}

.menu-button:hover{
    background:#ffb300;
}

.menu-button span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:10px;
    transition:.3s;
}

.menu-button:hover span{
    background:#111;
}


/* =========================
   SIDE MENU
========================= */

.side-menu{
    position:fixed;

    top:0;
    right:-390px;

    width:370px;
    max-width:90vw;
    height:100vh;

    padding:35px;

    background:#101012;

    border-left:1px solid rgba(255,255,255,.08);

    z-index:1002;

    transition:.4s cubic-bezier(.77,0,.18,1);

    display:flex;
    flex-direction:column;
}

#menu-toggle:checked ~ .side-menu{
    right:0;
}

.menu-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.7);

    opacity:0;
    visibility:hidden;

    z-index:1001;

    transition:.3s;

    cursor:pointer;
}

#menu-toggle:checked ~ .menu-overlay{
    opacity:1;
    visibility:visible;
}

.side-menu-top{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding-bottom:30px;

    border-bottom:1px solid rgba(255,255,255,.07);
}

.side-menu-top img{
    width:62px;
}

.close-menu{
    font-size:38px;
    color:#aaa;
    cursor:pointer;
    line-height:1;
}

.close-menu:hover{
    color:#ffb300;
}

.side-menu-links{
    display:flex;
    flex-direction:column;
    gap:8px;

    padding:30px 0;
}

.side-menu-links a{
    padding:17px 15px;

    border-radius:12px;

    color:#aaa;

    font-size:16px;
    font-weight:600;

    transition:.25s;
}

.side-menu-links a:first-letter{
    color:#ffb300;
}

.side-menu-links a:hover{
    color:#fff;
    background:rgba(255,179,0,.08);
    transform:translateX(5px);
}

.side-menu-links span{
    margin-left:12px;
}

.menu-social{
    border-top:1px solid rgba(255,255,255,.07);
    padding-top:25px;

    display:flex;
    flex-direction:column;
    gap:8px;
}

.menu-title{
    color:#666;
    text-transform:uppercase;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:8px;
}

.menu-social a{
    color:#aaa;
    padding:8px 0;
}

.menu-social a:hover{
    color:#ffb300;
}

.menu-download{
    margin-top:auto;

    display:flex;
    justify-content:center;

    padding:17px;

    border-radius:13px;

    background:linear-gradient(135deg,#ffd54a,#ff9800);

    color:#111;
    font-weight:800;

    transition:.3s;
}

.menu-download:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,170,0,.25);
}


/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        url("assets/bg.webp")
        center/cover no-repeat;
}

.overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.9)
        );
}

.hero-glow{
    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,179,0,.12);

    filter:blur(100px);

    border-radius:50%;
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;

    max-width:850px;
}

.hero-logo{
    width:145px;
    margin:0 auto 30px;

    animation:float 4s ease-in-out infinite;
}

.hero-label,
.section-label{
    display:inline-block;

    color:#ffb300;

    font-size:12px;
    font-weight:800;

    letter-spacing:4px;

    margin-bottom:15px;
}

.hero h1{
    font-size:82px;
    line-height:1;

    font-weight:900;

    letter-spacing:-4px;

    margin-bottom:25px;
}

.hero h1 span,
.section-head h2 span{
    color:#ffb300;
}

.hero p{
    max-width:700px;
    margin:0 auto 38px;

    color:#c5c5c5;

    font-size:18px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:58px;
    padding:0 32px;

    border-radius:14px;

    font-weight:800;

    transition:.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#ffd54a,#ff9800);
    color:#111;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(255,170,0,.3);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    color:#fff;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.09);
}

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
}

.scroll-down span{
    display:block;

    width:18px;
    height:28px;

    border:2px solid #777;
    border-radius:20px;
}

.scroll-down span:after{
    content:"";

    display:block;

    width:3px;
    height:6px;

    background:#ffb300;

    margin:5px auto;

    border-radius:5px;
}


/* =========================
   STATS
========================= */

.stats{
    background:#0f0f11;
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.stat{
    padding:32px;
    text-align:center;

    border-right:1px solid rgba(255,255,255,.05);
}

.stat:last-child{
    border:0;
}

.stat strong{
    display:block;

    color:#ffb300;

    font-size:28px;
    font-weight:900;

    margin-bottom:7px;
}

.stat span{
    color:#777;
    font-size:13px;
}


/* =========================
   SECTIONS
========================= */

.advantages,
.social-section,
.donate-section,
.rules-section{
    padding:120px 0;
}

.section-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 55px;
}

.section-head h2{
    font-size:46px;
    font-weight:900;

    margin-bottom:15px;
}

.section-head p{
    color:#888;
    line-height:1.7;
}


/* =========================
   CARDS
========================= */

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.card{
    padding:38px;

    background:#121214;

    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;

    transition:.3s;
}

.card:hover{
    transform:translateY(-7px);
    border-color:rgba(255,179,0,.5);
}

.card-icon{
    font-size:32px;
    margin-bottom:22px;
}

.card h3{
    font-size:23px;
    margin-bottom:12px;
}

.card p{
    color:#888;
    line-height:1.7;
}


/* =========================
   SOCIAL
========================= */

.social-section{
    background:#0d0d0f;
}

.social-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.social-card{
    padding:25px;

    background:#141416;

    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;

    display:flex;
    align-items:center;
    gap:17px;

    transition:.3s;
}

.social-card:hover{
    transform:translateY(-5px);
    border-color:#ffb300;
}

.social-icon{
    width:52px;
    height:52px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:#1e1e21;

    font-weight:900;
    color:#ffb300;
}

.social-card h3{
    font-size:17px;
    margin-bottom:5px;
}

.social-card p{
    color:#777;
    font-size:12px;
}

.social-card b{
    margin-left:auto;
    color:#555;
    font-size:22px;
}

.social-card:hover b{
    color:#ffb300;
}


/* =========================
   DOWNLOAD
========================= */

.download-section{
    padding:100px 0;
}

.download-box{
    position:relative;
    overflow:hidden;

    min-height:320px;

    padding:60px;

    border:1px solid rgba(255,179,0,.15);
    border-radius:28px;

    background:
        linear-gradient(
            135deg,
            #171512,
            #101011
        );

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.download-content{
    position:relative;
    z-index:2;
}

.download-content h2{
    font-size:42px;
    max-width:650px;
    margin-bottom:15px;
}

.download-content p{
    color:#888;
    margin-bottom:30px;
}

.download-logo{
    opacity:.12;
    width:250px;
}


/* =========================
   PAGE HERO
========================= */

.page-hero{
    height:480px;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        url("assets/bg.webp")
        center/cover no-repeat;
}

.page-hero-content{
    position:relative;
    z-index:2;

    text-align:center;
}

.page-hero h1{
    font-size:62px;
    font-weight:900;
    margin-bottom:15px;
}

.page-hero p{
    color:#aaa;
    font-size:17px;
}


/* =========================
   DONATE
========================= */

.donate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.donate-card{
    position:relative;

    padding:38px;

    background:#121214;

    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;

    transition:.3s;
}

.donate-card:hover{
    transform:translateY(-7px);
    border-color:#ffb300;
}

.donate-card.featured{
    border-color:#ffb300;
    box-shadow:0 20px 60px rgba(255,179,0,.08);
}

.popular{
    position:absolute;
    top:20px;
    right:20px;

    padding:6px 10px;

    border-radius:7px;

    background:#ffb300;
    color:#111;

    font-size:9px;
    font-weight:900;
}

.donate-name{
    color:#888;

    font-size:13px;
    font-weight:900;

    letter-spacing:3px;

    margin-bottom:20px;
}

.donate-price{
    font-size:42px;
    font-weight:900;

    margin-bottom:30px;
}

.donate-card ul{
    list-style:none;

    display:flex;
    flex-direction:column;
    gap:13px;

    margin-bottom:30px;
}

.donate-card li{
    color:#aaa;
    font-size:14px;
}

.donate-button{
    width:100%;

    display:flex;
    justify-content:center;

    padding:15px;

    border-radius:12px;

    background:#1d1d20;

    font-weight:800;

    transition:.3s;
}

.featured .donate-button,
.donate-button:hover{
    background:linear-gradient(135deg,#ffd54a,#ff9800);
    color:#111;
}

.donate-warning,
.rules-warning{
    margin-top:30px;

    padding:25px;

    border:1px solid rgba(255,179,0,.12);
    border-radius:16px;

    background:rgba(255,179,0,.04);
}

.donate-warning strong,
.rules-warning strong{
    display:block;
    color:#ffb300;
    margin-bottom:8px;
}

.donate-warning p,
.rules-warning p{
    color:#888;
    line-height:1.7;
}


/* =========================
   RULES
========================= */

.rules-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.rule-block{
    display:grid;
    grid-template-columns:80px 1fr;
    gap:25px;

    padding:35px;

    background:#121214;

    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
}

.rule-number{
    color:#ffb300;

    font-size:26px;
    font-weight:900;
}

.rule-block h2{
    font-size:24px;
    margin-bottom:13px;
}

.rule-block p{
    color:#888;
    line-height:1.7;
    margin-bottom:18px;
}

.rule-block ul{
    list-style:none;

    display:flex;
    flex-direction:column;
    gap:9px;
}

.rule-block li{
    color:#aaa;
    font-size:14px;
}

.rule-block li:before{
    content:"";
    display:inline-block;

    width:5px;
    height:5px;

    background:#ffb300;
    border-radius:50%;

    margin:0 10px 2px 0;
}


/* =========================
   FOOTER
========================= */

footer{
    padding:60px 0;

    background:#070708;

    border-top:1px solid rgba(255,255,255,.05);
}

.footer-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;

    text-align:center;
}

.footer-logo{
    width:70px;
}

.footer-links{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    justify-content:center;
}

.footer-links a{
    color:#777;
    font-size:14px;
    transition:.25s;
}

.footer-links a:hover{
    color:#ffb300;
}

footer p{
    color:#444;
    font-size:13px;
}


/* =========================
   ANIMATION
========================= */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-9px);
    }

    100%{
        transform:translateY(0);
    }

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .hero h1{
        font-size:60px;
    }

    .social-grid,
    .donate-grid{
        grid-template-columns:1fr;
    }

    .download-box{
        text-align:center;
        justify-content:center;
    }

    .download-logo{
        display:none;
    }

}

@media(max-width:700px){

    .header{
        height:76px;
    }

    .logo img{
        width:54px;
    }

    .menu-button{
        width:46px;
        height:46px;
    }

    .hero{
        min-height:760px;
        padding:100px 0 60px;
    }

    .hero-logo{
        width:105px;
    }

    .hero h1{
        font-size:42px;
        letter-spacing:-2px;
    }

    .hero p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.05);
    }

    .advantages,
    .social-section,
    .donate-section,
    .rules-section{
        padding:80px 0;
    }

    .section-head h2{
        font-size:34px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .card{
        padding:28px;
    }

    .download-box{
        padding:40px 25px;
    }

    .download-content h2{
        font-size:32px;
    }

    .page-hero{
        height:400px;
    }

    .page-hero h1{
        font-size:40px;
    }

    .rule-block{
        grid-template-columns:1fr;
        padding:27px;
        gap:10px;
    }

    .side-menu{
        padding:25px;
    }

}

@media(max-width:420px){

    .hero h1{
        font-size:35px;
    }

    .hero-logo{
        width:90px;
    }

    .section-head h2{
        font-size:30px;
    }

    .donate-unavailable{
    max-width:700px;
    margin:0 auto;
    padding:70px 40px;
 
    text-align:center;

    background:#121214;

    border:1px solid rgba(255,255,255,.07);
    border-radius:25px;
}

   .unavailable-icon{
    width:70px;
    height:70px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,179,0,.1);
    border:1px solid rgba(255,179,0,.25);

    color:#ffb300;

    font-size:32px;
    font-weight:900;
}

.donate-unavailable h2{
    font-size:38px;
    margin-bottom:15px;
}

.donate-unavailable p{
    color:#888;
    line-height:1.8;
    margin-bottom:30px;
}

@media(max-width:600px){

    .donate-unavailable{
        padding:50px 25px;
    }

    .donate-unavailable h2{
        font-size:29px;
    }


}