*{
margin:0;
padding:0;
box-sizing:border-box;

}
html,body{
    width: 100%;
    overflow: hidden;
    overflow: auto;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    width:100%;
    max-width:430px;
    margin:0 auto;
}

body{
background:#f4f4f4;
}

/* TOP HEADER */

.top-header{

background:#23252d;
padding:15px;

}

.top-buttons{

display:flex;
justify-content:flex-end;
gap:15px;

}

.btn{

padding:10px 25px;
border-radius:5px;
text-decoration:none;
font-weight:600;

}

.login-btn,
.register-btn{

background:#dec77d;
color:#000;

}

.telegram-btn{

background:#0094db;
color:#fff;

}

/* NAVBAR */

.navbar{

position:sticky;
top:0;
z-index:9999;

background:#d3b46a;

display:flex;
align-items:center;
justify-content:space-between;

padding:15px 30px;

}

.logo img{

width:50px;

}

.nav-links{

display:flex;
list-style:none;
gap:35px;

}

.nav-links a{

text-decoration:none;
color:#333;
font-weight:600;

}

.download-btn{

background:#1dd1a1;
padding:12px 25px;
border-radius:30px;
color:white;
text-decoration:none;

}

.menu-btn{

display:none;
font-size:35px;
cursor:pointer;

}

/* MOBILE MENU */

.mobile-menu{

display:none;

}

/* HERO */

.hero{

padding:80px 20px;
.content-box{
    text-align: left;
}

}

.hero h1{

font-size:60px;
font-weight:700;

}

/* MOBILE */

@media(max-width:768px){

.top-buttons{

flex-direction:column;

}

.nav-links,
.download-btn{

display:none;

}

.menu-btn{

display:block;

}

.mobile-menu{

display:none;
background:white;

}

.mobile-menu.active{

display:block;

}

.mobile-menu a{

display:block;
padding:15px;
text-decoration:none;
color:#000;
border-bottom:1px solid #ddd;

}

.hero h1{

font-size:45px;

}

}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f4f4f4;
overflow-x:hidden;
}

/* =========================
TOP HEADER
========================= */

.top-header{
position:fixed;
top:0;
left:0;
width:100%;
background:#23252d;
padding:15px;
z-index:99999;
}

.top-buttons{
display:flex;
justify-content:flex-end;
gap:15px;
}

.btn{
text-decoration:none;
padding:12px 25px;
border-radius:5px;
font-weight:600;
}

.login-btn,
.register-btn{
background:#dec77d;
color:#000;
}

.telegram-btn{
background:#0095e8;
color:#fff;
}

/* =========================
NAVBAR
========================= */

.navbar{
position:fixed;
top:70px;
left:0;
width:100%;
height:80px;
background:#d4b46c;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 25px;

z-index:99998;
}

.logo img{
width:65px;
height:65px;
object-fit:cover;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:600;
}

.download-btn{
background:#22d3a8;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
}

.menu-btn{
display:none;
font-size:38px;
cursor:pointer;
}

/* =========================
MOBILE MENU
========================= */

.mobile-menu{

position:fixed;

top:150px;
right:-100%;

width:280px;
height:100vh;

background:white;

transition:.4s;

box-shadow:-5px 0 20px rgba(0,0,0,.2);

z-index:99999;

}

.mobile-menu.active{
right:0;
}

.mobile-menu a{

display:block;

padding:18px;

color:#111;
text-decoration:none;

border-bottom:1px solid #ddd;

}

/* =========================
CONTENT
========================= */

.hero{

padding-top:220px;
padding-bottom:80px;

text-align:center;

}

.hero h1{

font-size:72px;
font-weight:700;
color:#111;

}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

.card{

background:white;

padding:35px;

border-radius:20px;

margin-bottom:25px;

box-shadow:0 0 10px rgba(0,0,0,.08);

}

.card h2{

font-size:42px;
margin-bottom:20px;

}

.card p,
.card li{

font-size:20px;
line-height:1.8;

}

.card ul{
padding-left:25px;
}

/* =========================
TABLE OF CONTENTS
========================= */

.toc-card{

background:white;

padding:25px;

border-radius:15px;

margin:20px;

box-shadow:0 0 10px rgba(0,0,0,.08);

font-size:28px;
font-weight:600;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.top-buttons{

flex-direction:column;

}

.btn{

width:100%;
text-align:center;

}

.nav-links,
.download-btn{

display:none;

}

.menu-btn{

display:block;

}

.navbar{

top:190px;

}

.hero{

padding-top:300px;

}

.hero h1{

font-size:34px;

}

.logo img{

width:50px;
height:50px;

}

.card{

padding:25px;

}

.card h2{

font-size:28px;
line-height:1.4;

}

.card p,
.card li{

font-size:17px;

}

.toc-card{

font-size:22px;

}

.mobile-menu{

top:270px;

}

}

/* =========================
TABLET
========================= */

@media(min-width:769px) and (max-width:1024px){

.hero h1{

font-size:50px;

}

.card h2{

font-size:34px;

}

}
html{
scroll-behavior:smooth;
}

.toc-box{

background:#fff;

border-radius:15px;

box-shadow:0 2px 10px rgba(0,0,0,.08);

margin:20px;

overflow:hidden;

}

.toc-title{

display:flex;

align-items:center;

gap:15px;

padding:25px;

cursor:pointer;

font-size:22px;

font-weight:700;

}

.toc-links{

display:none;

padding:20px;

border-top:1px solid #ddd;

}

.toc-links a{

display:block;

padding:12px 0;

text-decoration:none;

color:#1976d2;

font-size:20px;

}

.toc-links a:hover{

color:#0d47a1;

}
.content-box{
    background:#fff;
    margin:25px 15px;
    padding:30px;
    border-radius:15px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.content-box h2{
    font-size:36px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.4;
}

.content-box p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:15px;
}

.content-box ul{
    padding-left:30px;
}

.content-box li{
    font-size:18px;
    line-height:1.9;
    margin-bottom:12px;
}

@media(max-width:768px){

    .content-box{
        padding:25px;
        margin:20px 10px;
    }

    .content-box h2{
        font-size:24px;
    }

    .content-box p,
    .content-box li{
        font-size:16px;
    }
}
.video-container{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

.video-container video{
    width:320px;
    height:570px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

@media(max-width:768px){

    .video-container video{
        width:100%;
        max-width:320px;
        height:570px;
    }

}
.register-guide{
    max-width:900px;
    margin:auto;
    padding:20px;
}

.register-guide h2{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
}

.register-guide p{
    font-size:20px;
    line-height:1.8;
    color:#444;
}

.step-card{
    background:#fff;
    padding:30px;
    margin:30px 0;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.step-card h3{
    font-size:32px;
    margin-bottom:15px;
    color:#222;
}

.step-card img{
    width:100%;
    border-radius:15px;
    margin:20px 0;
}

@media(max-width:768px){

    .register-guide h2{
        font-size:28px;
    }

    .step-card h3{
        font-size:22px;
    }

    .register-guide p{
        font-size:18px;
    }

}
/* Main Section */
.step-section{
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.step-section h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 25px;
}

.step-section > p{
    font-size: 22px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Cards */
.step-card{
    background: #fff;
    padding: 35px;
    margin-bottom: 35px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.step-card:hover{
    transform: translateY(-5px);
}

.step-card h3{
    font-size: 34px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

.step-card p{
    font-size: 22px;
    line-height: 1.9;
    color: #555;
}

/* Images */
.step-card img{
    width: 100%;
    border-radius: 15px;
    margin: 25px 0;
    display: block;
}

/* Mobile Responsive */
@media (max-width:768px){

    .step-section{
        padding: 15px;
    }

    .step-section h2{
        font-size: 28px;
        line-height: 1.5;
    }

    .step-section > p{
        font-size: 18px;
        line-height: 1.8;
    }

    .step-card{
        padding: 25px;
        border-radius: 20px;
    }

    .step-card h3{
        font-size: 22px;
    }

    .step-card p{
        font-size: 18px;
        line-height: 1.8;
    }
}
.guide-section{
    margin:40px 0;
}

.guide-section h2{
    font-size:40px;
    margin-bottom:20px;
    color:#222;
}

.guide-section p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.guide-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-top:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.guide-card h3{
    font-size:32px;
    margin-bottom:20px;
    color:#222;
}

.guide-card img{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
}

.guide-card p{
    font-size:18px;
    line-height:1.8;
}

@media(max-width:768px){

    .guide-section h2{
        font-size:26px;
    }

    .guide-card{
        padding:20px;
    }

    .guide-card h3{
        font-size:22px;
    }

    .guide-card p{
        font-size:16px;
    }

}
/* Need Help Section */

#help{
    padding:40px 20px;
}

#help h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
    line-height:1.3;
}

#help > p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.guide-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:0.3s ease;
}

.guide-card:hover{
    transform:translateY(-4px);
}

.guide-card h3{
    font-size:30px;
    color:#222;
    margin-bottom:15px;
    line-height:1.4;
}

.guide-card img{
    width:100%;
    display:block;
    border-radius:15px;
    margin:20px 0;
}

.guide-card p{
    font-size:18px;
    color:#555;
    line-height:1.9;
}

/* Mobile */

@media(max-width:768px){

    #help{
        padding:25px 15px;
    }

    #help h2{
        font-size:32px;
    }

    #help > p{
        font-size:16px;
    }

    .guide-card{
        padding:20px;
        border-radius:18px;
    }

    .guide-card h3{
        font-size:24px;
    }

    .guide-card p{
        font-size:16px;
        line-height:1.8;
    }
}
#message{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin:30px 0;
}

#message h2{
    font-size:32px;
    color:#222;
    margin-bottom:20px;
    line-height:1.3;
}

#message p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

@media(max-width:768px){

    #message{
        padding:20px;
    }

    #message h2{
        font-size:26px;
    }

    #message p{
        font-size:16px;
    }

}
.footer{
    background:#1c1c1c;
    color:#fff;
    padding:50px 25px;
    margin-top:50px;
}

.footer-section{
    margin-bottom:45px;
}

.footer-section h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-section a{
    display:block;
    color:#d8d8d8;
    text-decoration:none;
    font-size:22px;
    margin-bottom:12px;
}

.footer-section p{
    color:#d8d8d8;
    font-size:20px;
    line-height:1.8;
}

.copyright{
    border-top:1px solid #444;
    margin-top:30px;
    padding-top:25px;
    font-size:20px;
}

.copyright a{
    color:#8a4fff;
    text-decoration:none;
}

/* Mobile */
@media(max-width:768px){

    .footer{
        padding:10px;
        margin-top: 0 !important;
    }

    .footer-section h3{
        font-size:20px;
    }

    .footer-section a{
        font-size:18px;
    }

    .footer-section p{
        font-size:17px;
    }

    .copyright{
        font-size:16px;
    }

}
