/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f4f4f4;
    font-family:Arial,Helvetica,sans-serif;
    overflow-x:hidden;
}
html,body{
    width: 100%;
    overflow: hidden;
    overflow: auto;
    font-family: Arial, Helvetica, sans-serif;
}


/* ==========================
   MAIN CONTAINER
========================== */

.container{
    width:100%;
    max-width:430px;
    margin:20px auto;
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

/* ==========================
   TOP BUTTONS
========================== */

.top-buttons{
    background:#1d2235;
    padding:12px;
}

.btn{
    display:block;
    width:100%;
    padding:13px;
    margin-bottom:10px;
    text-align:center;
    text-decoration:none;
    border-radius:8px;
    font-size:16px;
    font-weight:bold;
    transition:.3s;
}

.login-btn,
.register-btn{
    background:#e8d37b;
    color:#111;
}

.telegram-btn{
    background:#1699ff;
    color:#fff;
}

.btn:hover{
    opacity:.9;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    background:#d8bc67;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.menu-btn a{
    text-decoration:none;
    font-size:28px;
}

/* ==========================
   PAGE
========================== */

.page-content{
    padding:25px;
}

.page-content h1{
    font-size:34px;
    margin-bottom:20px;
    color:#222;
}

.page-content h2{
    margin-top:30px;
    margin-bottom:15px;
    font-size:24px;
}

.page-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    text-align:justify;
    margin-bottom:15px;
}

.page-content ul{
    padding-left:22px;
    margin:15px 0;
}

.page-content li{
    line-height:1.8;
    margin-bottom:8px;
}

.page-content img{
    width:100%;
    border-radius:12px;
    margin:20px 0;
}

/* ==========================
   AGENT BOX
========================== */

.agent-box{
    background:#fff8e7;
    border-left:5px solid #f4b400;
    padding:18px;
    margin:25px 0;
    border-radius:10px;
}

.agent-box h3{
    margin-bottom:10px;
}

.agent-box p{
    margin:0;
}

/* ==========================
   JOIN BUTTON
========================== */

.join-agent{
    display:block;
    width:100%;
    text-align:center;
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    margin-top:25px;
    font-size:18px;
    font-weight:bold;
}

.join-agent:hover{
    background:#13863d;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.container{
    width:100%;
    margin:0;
    border-radius:0;
}

.top-buttons{
    padding:10px;
}

.btn{
    font-size:15px;
    padding:12px;
}

.navbar{
    padding:12px;
}

.logo img{
    width:50px;
    height:50px;
}

.menu-btn a{
    font-size:26px;
}

.page-content{
    padding:20px;
}

.page-content h1{
    font-size:28px;
}

.page-content h2{
    font-size:22px;
}

.page-content p{
    font-size:15px;
}

.join-agent{
    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:40px 20px;
    }

    .footer-section h3{
        font-size:20px;
    }

    .footer-section a{
        font-size:18px;
    }

    .footer-section p{
        font-size:17px;
    }

    .copyright{
        font-size:16px;
    }

}
