/* ==========================
   YAAR WIN LOTTERY CSS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f7f5;
    color:#333;
    line-height:1.6;
}

/* Header */

header{
    width:100%;
    background:#0b8f45;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#fff;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffe600;
}

/* Hero */

.hero{
    padding:80px 20px;
    text-align:center;
    background:linear-gradient(135deg,#00b050,#007536);
    color:#fff;
}

.hero h1{
    font-size:45px;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    margin:auto;
    font-size:18px;
}

/* Buttons */

.btn{
    display:inline-block;
    margin:12px;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.download{
    background:#ff5a00;
    color:#fff;
}

.register{
    background:#fff;
    color:#0b8f45;
}

.login{
    background:#ffd700;
    color:#000;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* Container */

.container{
    width:90%;
    max-width:1150px;
    margin:auto;
    padding:60px 0;
}

/* Card */

.card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h2{
    color:#0b8f45;
    margin-bottom:15px;
}

.card p{
    color:#555;
}

/* Features */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.feature{
    background:#fff;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature h3{
    color:#0b8f45;
    margin-bottom:10px;
}

/* FAQ */

#faq h3{
    color:#0b8f45;
    margin-top:20px;
}

/* Contact */

#contact p{
    margin-top:10px;
}

/* Footer */

footer{
    background:#0b8f45;
    color:#fff;
    text-align:center;
    padding:35px 20px;
}

footer a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
}

footer a:hover{
    color:#ffd700;
}

/* Floating Telegram Button */

.telegram{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#229ED9;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.3s;
}

.telegram:hover{
    transform:scale(1.1);
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#0b8f45;
    border-radius:20px;
}

/* Responsive */

@media(max-width:992px){

header{
    flex-direction:column;
}

nav{
    margin-top:15px;
}

.hero h1{
    font-size:36px;
}

}

@media(max-width:768px){

.hero{
    padding:60px 15px;
}

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:16px;
}

.btn{
    display:block;
    width:90%;
    margin:12px auto;
}

.features{
    grid-template-columns:1fr;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

}

@media(max-width:480px){

.logo{
    font-size:22px;
}

.hero h1{
    font-size:26px;
}

.hero p{
    font-size:15px;
}

.card{
    padding:20px;
}

}

.logo img{
    height:60px;
    width:auto;
    display:block;
}

@media(max-width:768px){
.logo img{
    height:45px;
}
}