:root{
    --primary:#4f46e5;
    --secondary:#7c3aed;
    --dark:#0f172a;
    --light:#ffffff;
}

body{
    font-family:'Poppins',sans-serif;
    padding-top:85px;
}

/* Navbar */

.custom-navbar{
    background:#fff;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
    padding:15px 0;
    transition:.3s;
}

.custom-navbar.scrolled{
    padding:10px 0;
    box-shadow:0 5px 25px rgba(0,0,0,.12);
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:18px;
}

.logo-text{
    font-size:22px;
    font-weight:700;
    color:var(--dark);
}

.navbar-nav{
    gap:10px;
}

.nav-link{
    color:#334155;
    font-weight:500;
    padding:10px 16px !important;
    border-radius:8px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    background:#eef2ff;
    color:var(--primary);
}

.btn-check{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
}

.btn-check:hover{
    color:#fff;
    transform:translateY(-2px);
}

/* Mobile */

@media(max-width:991px){

    .navbar-collapse{
        margin-top:15px;
        background:#fff;
        border-radius:15px;
        padding:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar-nav{
        gap:5px;
    }

    .btn-check{
        width:100%;
        margin-top:15px;
    }

}
.hero-section{
    padding:120px 0 80px;
    background:linear-gradient(
        135deg,
        #f8fafc,
        #eef2ff
    );
    overflow:hidden;
}

.hero-tag{
    display:inline-block;
    padding:10px 20px;
    background:#e0e7ff;
    color:#4f46e5;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.15;
    color:#0f172a;
}

.hero-content h1 span{
    color:#4f46e5;
}

.hero-content p{
    font-size:18px;
    color:#64748b;
    margin:25px 0;
    line-height:1.8;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:35px;
}

.feature{
    background:#fff;
    padding:12px 18px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    font-weight:500;
}

.feature i{
    color:#4f46e5;
    margin-right:8px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.hero-btn:hover{
    color:#fff;
}

.hero-visual{
    position:relative;
    height:500px;
}

.hero-circle{
    width:350px;
    height:350px;
    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:120px;
    z-index:2;
}

.winner-card{
    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    font-weight:600;
    z-index:3;
}

.card-1{
    top:60px;
    left:20px;
}

.card-2{
    right:10px;
    top:180px;
}

.card-3{
    left:80px;
    bottom:80px;
}

@media(max-width:991px){

    .hero-section{
        padding:100px 0 60px;
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-visual{
        margin-top:50px;
        height:350px;
    }

    .hero-circle{
        width:220px;
        height:220px;
    }

    .hero-icon{
        font-size:80px;
    }
}
/* ===========================
   CHECK STATUS SECTION
=========================== */

.status-section{
    padding:100px 0;
    background:linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );
}

.status-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
    border:1px solid #eef2f7;
}

.badge-title{
    display:inline-block;
    padding:10px 18px;
    background:#eef2ff;
    color:#4f46e5;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.status-card h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.status-card p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Input Group */

.custom-input{
    overflow:hidden;
    border-radius:16px;
    border:2px solid #e2e8f0;
    transition:.3s;
}

.custom-input:focus-within{
    border-color:#4f46e5;
    box-shadow:
    0 0 0 5px rgba(79,70,229,.1);
}

.custom-input .input-group-text{
    background:#f8fafc;
    border:none;
    padding:18px 20px;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

.custom-input .form-control{
    border:none;
    height:65px;
    font-size:17px;
    padding-left:15px;
}

.custom-input .form-control:focus{
    box-shadow:none;
}

/* Button */

.check-btn{
    width:100%;
    margin-top:20px;
    height:65px;
    border:none;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.check-btn:hover{
    transform:translateY(-2px);
    box-shadow:
    0 15px 35px rgba(79,70,229,.25);
}

/* Trust Box */

.trust-box{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.trust-box span{
    background:#f8fafc;
    padding:12px 18px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}

/* Mobile */

@media(max-width:768px){

    .status-section{
        padding:70px 0;
    }

    .status-card{
        padding:25px;
        border-radius:20px;
    }

    .status-card h2{
        font-size:30px;
    }

    .status-card p{
        font-size:15px;
    }

    .custom-input .form-control{
        height:58px;
        font-size:15px;
    }

    .check-btn{
        height:58px;
        font-size:16px;
    }

}

/* ==========================
   HOW IT WORKS SECTION
========================== */

.how-it-works{
    padding:100px 0;
    background:#ffffff;
}

.how-it-works h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.how-it-works p{
    color:#64748b;
}

/* Card */

.step-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.35s ease;
    position:relative;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.step-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(79,70,229,.12);
}

/* Step Number */

.step-number{
    width:70px;
    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:800;

    color:#fff;

    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );
}

/* Title */

.step-card h4{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

/* Description */

.step-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:0;
}

/* Decorative Top Border */

.step-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #4f46e5,
        #7c3aed
    );
}

/* Mobile */

@media(max-width:768px){

    .how-it-works{
        padding:70px 0;
    }

    .how-it-works h2{
        font-size:30px;
    }

    .step-card{
        padding:30px 20px;
    }

    .step-number{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .step-card h4{
        font-size:20px;
    }

}
/* ==========================
   FOOTER
========================== */

.footer-section{

    background:#0f172a;
    color:#cbd5e1;

    padding-top:70px;
    padding-bottom:25px;
}

.footer-brand h3{

    color:#fff;
    font-weight:800;
    margin-bottom:15px;
}

.footer-brand p{

    line-height:1.8;
    margin-bottom:0;
}

.footer-section h5{

    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    text-decoration:none;
    color:#cbd5e1;
    transition:.3s;
}

.footer-links a:hover{

    color:#ffffff;
    padding-left:5px;
}

.footer-contact{

    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{

    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-contact i{

    color:#4f46e5;
}

.footer-section hr{

    border-color:rgba(255,255,255,.08);
    margin:30px 0 20px;
}

.footer-bottom{

    text-align:center;
}

.footer-bottom p{

    margin:0;
    color:#94a3b8;
}

/* Mobile */

@media(max-width:768px){

    .footer-section{

        text-align:center;
    }

    .footer-contact li{

        justify-content:center;
    }

}
/* ==========================
   FAQ SECTION
========================== */

.faq-section{
    padding:100px 0;
    background:#f8fafc;
}

.faq-badge{

    display:inline-block;
    padding:10px 18px;

    background:#eef2ff;
    color:#4f46e5;

    border-radius:50px;
    font-size:14px;
    font-weight:600;

    margin-bottom:15px;
}

.faq-section h2{

    font-size:42px;
    font-weight:800;
    color:#0f172a;

    margin-bottom:15px;
}

.faq-section p{

    color:#64748b;
}

/* Accordion */

.custom-faq .accordion-item{

    border:none;
    margin-bottom:15px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.custom-faq .accordion-button{

    padding:22px 25px;

    font-size:17px;
    font-weight:600;

    color:#0f172a;
    background:#fff;
}

.custom-faq .accordion-button:not(.collapsed){

    background:#eef2ff;
    color:#4f46e5;
    box-shadow:none;
}

.custom-faq .accordion-button:focus{

    box-shadow:none;
}

.custom-faq .accordion-body{

    padding:20px 25px;

    color:#64748b;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .faq-section h2{
        font-size:30px;
    }

    .custom-faq .accordion-button{
        font-size:15px;
        padding:18px;
    }

    .custom-faq .accordion-body{
        padding:18px;
    }

}
.latest-results{
    padding:100px 0;
    background:#f8fafc;
}

.section-title span{
    display:inline-block;
    background:#eef2ff;
    color:#4f46e5;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin:15px 0;
    color:#0f172a;
}

.result-card{

    background:#fff;

    border-radius:25px;

    padding:30px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.3s;
}

.result-card:hover{

    transform:translateY(-8px);
}

.result-top{

    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
}

.lottery-name{

    background:#4f46e5;
    color:#fff;

    padding:6px 15px;
    border-radius:50px;
    font-size:14px;
}

.draw-date{

    color:#64748b;
    font-size:14px;
}

.ticket-number{

    font-size:30px;
    font-weight:800;
    color:#0f172a;

    text-align:center;

    padding:20px;

    border:2px dashed #dbe4f0;

    border-radius:15px;

    margin-bottom:20px;
}

.prize{

    text-align:center;

    font-size:24px;
    font-weight:700;

    color:#16a34a;

    margin-bottom:20px;
}

.winner-status{

    text-align:center;

    background:#dcfce7;
    color:#15803d;

    padding:12px;

    border-radius:12px;

    font-weight:700;
}

@media(max-width:768px){

    .section-title h2{
        font-size:30px;
    }

    .ticket-number{
        font-size:22px;
    }

}
.prize-section{
padding:100px 0;
background:#f8fafc;
}

.section-title{
text-align:center;
font-size:42px;
font-weight:800;
margin-bottom:50px;
}

.prize-card{
background:#fff;
padding:35px;
border-radius:25px;
margin-bottom:35px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.first-prize{
border-left:8px solid #f59e0b;
}

.second-prize{
border-left:8px solid #94a3b8;
}

.third-prize{
border-left:8px solid #cd7f32;
}

.prize-header{
text-align:center;
margin-bottom:30px;
}

.prize-header h1{
font-size:48px;
font-weight:800;
}

.ticket-wrapper{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
gap:15px;
}

.ticket-box{
border:2px solid #4f46e5;
border-radius:12px;
padding:12px;
text-align:center;
font-weight:700;
background:#fff;
transition:.3s;
}

.ticket-box:hover

@media(max-width:768px){

```
.prize-header h1{
    font-size:34px;
}

.section-title{
    font-size:30px;
}
```

}
.whatsapp-float{

    position:fixed;

    width:65px;
    height:65px;

    bottom:25px;
    right:25px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(37,211,102,.4);

    z-index:9999;

    animation:pulse 2s infinite;
}

.whatsapp-float:hover{

    color:#fff;

    transform:scale(1.08);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

.support-btn{

    background:#25D366;

    color:#fff !important;

    padding:10px 20px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    display:inline-flex;

    align-items:center;

    gap:8px;
}

.support-btn:hover{

    background:#1ebe5d;

    transform:translateY(-2px);

    color:#fff !important;
}
/*=========================
  OUR PARTNERS SECTION
=========================*/

.partners-section{
    background:#f8f9fd;
    padding:80px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.badge{
    display:inline-block;
    background:#ecebff;
    color:#5c48f5;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:40px;
    color:#222;
    margin-bottom:15px;
}

.section-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;
}

/*=========================
        GRID
=========================*/

.partners-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/*=========================
        CARD
=========================*/

.partner-card{

    background:#fff;
    border-radius:18px;
    padding:30px;
    border:1px solid #e8e8e8;
    text-decoration:none;
    transition:.35s;
    display:block;
}

.partner-card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#5c48f5;
}

.partner-icon{

    font-size:50px;
    margin-bottom:20px;
}

.partner-card h3{

    color:#222;
    font-size:22px;
    margin-bottom:10px;
}

.partner-card p{

    color:#666;
    font-size:15px;
    line-height:24px;
    margin-bottom:25px;
}

.partner-footer{

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.verified{

    background:#e7fff0;
    color:#0f9d58;
    font-size:13px;
    font-weight:600;
    padding:7px 15px;
    border-radius:25px;
}

.view-btn{

    color:#5c48f5;
    font-weight:600;
    transition:.3s;
}

.partner-card:hover .view-btn{

    transform:translateX(5px);
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.partners-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.partners-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:30px;

}

.partner-card{

padding:25px;

}

.partner-icon{

font-size:42px;

}

}