/* ----------------------------------------------
   GLOBAL RESET + FONTS
----------------------------------------------- */
*{margin:0;padding:0;box-sizing:border-box;}

/* ----------------------------------------------
   CONTAINER
----------------------------------------------- */
.container{width:95%;margin:auto;max-width:1200px;}

/* ----------------------------------------------
   HEADER
----------------------------------------------- */
.top-header{
    background:#111;
    padding:12px 0;
    border-bottom:2px solid #1dd05d;
}
.logo{
    font-size:26px;
    font-weight:700;
    color:#1dd05d;
    text-decoration:none;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-links{
    display:flex;
    gap:20px;
}
.nav-links a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}
.nav-links a:hover{color:#1dd05d;}

/* MOBILE MENU */
.menu-btn{display:none;font-size:28px;cursor:pointer;color:#1dd05d;}

@media(max-width:768px){
    .nav-links{
        display:none;
        flex-direction:column;
        background:#111;
        padding:20px;
        position:absolute;
        top:60px;right:10px;
        width:200px;border-radius:6px;
    }
    .nav-links.show{display:flex;}
    .menu-btn{display:block;}
}

/* ----------------------------------------------
   HERO SECTION
----------------------------------------------- */
.hero{
    text-align:center;
    padding:35px 0 20px 0;
}
.hero h1{
    font-size:28px;
    margin-bottom:10px;
    color:#1dd05d;
}
.hero p{
    font-size:16px;
    opacity:0.85;
}

/* ----------------------------------------------
   LIVE RESULT PANEL
----------------------------------------------- */
.result-panel{
    background:#111;
    padding:15px;
    border-radius:8px;
    margin-top:20px;
}
.result-header{
    font-size:20px;
    color:#1dd05d;
    margin-bottom:12px;
}

.result-table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}
.result-table th{
    background:#1a1a1a;
    color:#1dd05d;
    padding:10px;
    font-size:14px;
}
.result-table td{
    background:white;
    padding:10px;
    text-align:center;
    font-size:14px;
}
.waiting{color:black;}
.declared{color:#00ff62;}

/* ----------------------------------------------
   SECTION BOXES
----------------------------------------------- */
.section{
    background:#111;
    padding:15px;
    border-radius:8px;
    margin-top:25px;
}
.section h2{
    color:#1dd05d;
    margin-bottom:15px;
}
.section a{
    color:#fff;
    display:block;
    padding:6px 0;
}
.section a:hover{color:#1dd05d;}

/* ----------------------------------------------
   FOOTER CONTENT AREA
----------------------------------------------- */
.footer-sections{
    display:flex;
    gap:25px;
    padding:30px 10px;
    flex-wrap:wrap;
    background:#0c0c0c;
    margin-top:25px;
    border-top:3px solid #1dd05d;
}
.footer-box{
    width:30%;
    min-width:250px;
}
.footer-box h3{
    margin-bottom:10px;
    color:#1dd05d;
}
.footer-box ul li{
    list-style:none;
    padding:5px 0;
}
.footer-box a{
    color:white;
    text-decoration:none;
    font-size:14px;
}
.footer-box a:hover{color:#1dd05d;}

/* ----------------------------------------------
   BOTTOM FOOTER
----------------------------------------------- */
.footer-bottom{
    background:#000;
    padding:15px;
    text-align:center;
    margin-top:0;
    border-top:2px solid #1dd05d;
}
.footer-bottom p{
    color:#ddd;
    font-size:14px;
}
