/*
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 CARD BASE DESIGN
=================================*/

.lottery-card {
    width: 100%;
    max-width: 820px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center; /* Center everything */
}

.lottery-header {
    background: linear-gradient(45deg,#e10600,#ff3c3c);
    color: #fff;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    text-align: center; /* Center header text */
}

.lottery-body {
    padding: 15px;
    text-align: center;
}

.lottery-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto; /* Center image */
    border-radius: 10px;
    object-fit: contain;
}

/* ===============================
   MOBILE FIX (IMPORTANT)
=================================*/

@media (max-width: 768px) {

    .lottery-card {
        margin: 15px auto;
        border-radius: 10px;
    }

    .lottery-header {
        font-size: 16px;
        padding: 12px;
        text-align: center;
    }

    .lottery-body {
        padding: 10px;
    }

    .lottery-img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

}

/* Extra small devices */
@media (max-width: 480px) {

    .lottery-header {
        font-size: 15px;
        padding: 10px;
    }

}
.refresh-wrapper {
    text-align: center;
    margin-top: 20px;
}

.refreshbtn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.refreshbtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.refreshbtn:active {
    transform: scale(0.95);
}