.satta-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    padding: 0 1rem;
    max-width: 100%;
}

.satta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    color: #000;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 50px;
    border: 2px solid #d4af3780;
    box-shadow: 0 8px 25px #d4af3766 inset 0 1px 0 #fff3;
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    z-index: 1;
    margin-bottom: 1rem;
}
.satta-tooltip {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-size: .9rem;
    line-height: 1.4;
    text-align: center;
    padding: .5rem;
    background: #0003;
    border-radius: 10px;
    border: 1px solid #d4af3733;
    margin-top: .5rem;
    animation: tooltipFadeIn .8s ease-out .3s both;
}

.satta-btn .icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px #0003);
    animation: iconFloat 3s ease-in-out infinite;
}


.satta-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc143ccc 0%, #8b0000cc 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1;
}
.satta-btn-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #1a0000f2 0%, #330000f2 100%);
    border: 2px solid #d4af374d;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px #0006 inset 0 1px 0 #d4af3733;
    position: relative;
    overflow: hidden;
    animation: boxFadeIn .8s ease-out;
    transition: all .3s ease;
}

tr.board-title {
    width: 100%;
    height: 60px;
    border: 1px solid #a80000;
    background-color: #330000;
    line-height: 1.4;
}

.gr-marquee {
    border: 1px solid #ff0;
    background-color: #330000;
    padding: 3px;
    color: #fff;
}

@keyframes iconSpin {
    0% {
    transform:rotate(0deg)
    }
    
    100% {
    transform:rotate(360deg)
    }
}

@keyframes tooltipFadeIn {
    from {
    opacity:0;
    transform:translateY(10px)
    }
    
    to {
    opacity:1;
    transform:translateY(0)
    }
}

@media (max-width: 768px) {
    .satta-btn-container {
        margin: 1.5rem auto;
    }
        .satta-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        margin-bottom: .8rem;
    }
        .satta-tooltip {
        font-size: .85rem;
        padding: .4rem;
    }
        .satta-btn .icon {
        font-size: 1.3rem;
    }
        .satta-btn-box {
        padding: 1.2rem;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .satta-btn-container {
        margin: 1rem auto;
        padding: 0 .5rem;
    }
        .satta-btn {
        padding: .9rem 1.2rem;
        font-size: 1rem;
        border-radius: 40px;
        margin-bottom: .6rem;
    }
        .satta-tooltip {
        font-size: .8rem;
        flex-direction: column;
        text-align: center;
        gap: .5rem;
        padding: .3rem;
    }
        .satta-btn .icon {
        font-size: 1.2rem;
    }
        .satta-btn-box {
        padding: 1rem;
        max-width: 300px;
        border-radius: 15px;
    }
}