.andriod-body {
    max-width: 485px;
    margin: 0 auto;
   
}
#mainNav .container {
    position: relative;
    padding: 0 10px;
    display: none;
}
body .grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    grid-gap: 10px;
    grid-auto-rows: minmax(88px, auto);
    grid-auto-flow: dense;
}
.site-footer .social-icon-box:not(:last-child) {
    border-right: 1px solid #FFFFFF4D;
    border-bottom: 1px solid #FFFFFF4D;
}
body .second-address {
    padding-left: 0px;
}
.b-action, .b-action2 {
    display: flex;
}
body .banner-ad-content{
    padding: 0px !important;
}
body .top-nav {
   
    padding: 0px;
    margin: 0;
}

/**---------------------- earn- coin position -----------------------------*/
.resp_free_coin{
    display: flex;
    justify-content: center;
}
.free_coin {
    margin: 12px 16px 0 16px;
        background-color: rgba(255, 255, 255, 0.1);
    padding: 16px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #3333331c;
    /* box-shadow: var(--div-boxShadow); */
    margin-bottom: 15px;
}
.earn-coin-btn button {
    cursor: pointer;
    background: #ffe900 !important;
    color: #fff;
    border: none;
    height: 42px;
    padding: 10px 0px;
    width: 95%;
    border-radius: 12px;
    border-color: #3333331c;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.redeem-coin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.earn-coin-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}
.ad-tag-earn {
    position: absolute;
    top: 0;
    right: -10px;
    color: #8a8e91;
    font-size: 10px;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.earn-coin-btn button img {
    width: 24px;
    height: 24px;
}
#coin {
    font-weight: 600;
}

.earn-coin-section * {
  color:#333 !important;
}
.title-entry{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.title-entry img{
  width: 15px;
} 
.title-users {
    padding-top: 5px;
    padding-bottom: 5px;
}
/*------------------------ End ---------------------------------------------*/

.watch-btn {
    background: #ffe900 !important;
    color: #333;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    height: 42px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#coinRainContainer{
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        pointer-events:none;
        overflow:hidden;
        z-index:9999;
    }

    /* Coin style */
    .rain-coin{
        position:absolute;
        width:30px;
        height:30px;
        background:url('https://cdn-icons-png.flaticon.com/512/138/138292.png') no-repeat center/contain;
        animation: coinFall linear forwards;
    }

    @keyframes coinFall{
        0%{
            transform: translateY(-60px) rotate(0deg);
            opacity:1;
        }
        100%{
            transform: translateY(110vh) rotate(720deg);
            opacity:0.9;
        }
    }

#toastBox{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
.toast{
    min-width: 250px;
    margin-bottom: 10px;
    padding: 14px 18px;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.4s ease, fadeOut 0.4s ease 3.6s forwards;
}
.toast.success{ background: #28a745; }
.toast.error{ background: #dc3545; }
.toast.info{ background: #007bff; }
.earn-coin-section * {
    color: #fff !important;
}
#earnCoinBtn #change-text{
    color:#333333 !important;
}
@keyframes slideIn{
    from{ transform: translateX(100%); opacity: 0; }
    to{ transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut{
    to{ opacity: 0; transform: translateX(100%); }
}
/*------------ End ----------------------------*/

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-data {
    background: #fff;
    padding: 20px 20px 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 370px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.popup-data .oops-img {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: auto;
}

.popup-data .main-text {

    font-size: 14px;
    color: #555;
    margin: 40px 0 10px;
}

.popup-data .sub-text {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.watch-btn-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}


.watch-btn {
    background: #ffe900 !important;
    color: #333;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    height: 42px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.popup-data .skip-btn {
    margin-top: 8px;
    background: none;
    border: none;
    color: #666;
    width: fit-content;
    margin: 8px auto 0px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}