/*
Theme Name: CricHunter
Theme URI: https://rahulmourya.in/
Author: Rahul Mourya
Author URI: https://rahulmourya.in/
Description: Don't try to copy the theme, otherwise, I'll take the action against you.
Version: 2.0
*/
/* ===============================
   LOTTERY RESULT PAGE – GLOBAL
================================ */

.lottery-page{
    max-width:900px;
    margin:auto;
    padding:12px;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
    line-height:1.6;
    color:#111;
    background:#fff;
}

/* ===============================
   PAGE TITLE
================================ */

.lottery-page h1{
    font-size:22px;
    text-align:center;
    margin:10px 0 12px;
    font-weight:700;
    color:#222;
}

/* ===============================
   INTERNAL TIME LINKS
================================ */

.time-links{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:12px;
    flex-wrap:wrap;
}

.time-links a{
    padding:6px 14px;
    background:#000;
    color:#fff;
    border-radius:20px;
    font-size:14px;
    text-decoration:none;
    transition:.2s;
}

.time-links a:hover{
    background:#d32f2f;
}

/* ===============================
   RESULT CONTAINER
================================ */

.live-result{
    background:#f9f9f9;
    padding:10px;
    border-radius:8px;
    text-align:center;
    margin-bottom:15px;
}

/* ===============================
   IMAGE SIZE FIX (IMPORTANT)
================================ */

/* ALL IMAGES SAFE */
.lottery-page img,
.live-result img{
    width:100%;
    max-width:880px;   /* 👈 image limit */
    height:auto;
    display:block;
    margin:10px auto;
    object-fit:contain;
    border-radius:6px;
}

/* ===============================
   RESULT TABLE
================================ */

.lottery-page table{
    width:100%;
    border-collapse:collapse;
    margin:10px 0;
    font-size:15px;
}

.lottery-page table th,
.lottery-page table td{
    border:1px solid #ddd;
    padding:8px;
    text-align:center;
}

.lottery-page table th{
    background:#222;
    color:#fff;
    font-weight:600;
}

/* ===============================
   CONTENT TEXT
================================ */

.lottery-page p{
    font-size:15px;
    margin:10px 0;
    color:#333;
}

/* ===============================
   DISCLAIMER
================================ */

.disclaimer{
    background:#fff3cd;
    padding:10px;
    border-left:4px solid #ff9800;
    font-size:13px;
    color:#555;
    margin-top:18px;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width:768px){

    .lottery-page{
        padding:10px;
    }

    .lottery-page h1{
        font-size:18px;
    }

    .time-links a{
        font-size:13px;
        padding:5px 12px;
    }

    .lottery-page img,
    .live-result img{
        max-width:100%;   /* full width on mobile */
    }

    .lottery-page table{
        font-size:14px;
    }
}

/* ===============================
   SMALL MOBILE (VERY IMPORTANT)
================================ */

@media (max-width:480px){

    .lottery-page h1{
        font-size:17px;
    }

    .lottery-page table{
        font-size:13px;
    }

    .time-links{
        gap:6px;
    }
}
.lottery-result-box{
    max-width:620px;
    margin:5px auto;
    padding:3px 3px;
    color:#000;
    text-align:center;
    border-radius:2px;
 position:relative;
}