/* Redesigned Styles for FAST KABHAR LINE SATTA KING */

body {
    background-color: #0b0c10;
    font-family: 'Roboto', sans-serif, system-ui;
    color: #e2e8f0;
}

/* GOLDEN TEXT GRADIENT */
.gold-text-gradient {
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #fef08a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gold-border {
    border: 2px solid #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* TOP NAV BUTTONS */
.top_white_strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #111827;
    border-bottom: 2px solid #d4af37;
}

.nav_btn {
    flex: 1;
    max-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    background: linear-gradient(to right, #d4af37, #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1.5px solid #d4af37;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.nav_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.nav_btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #b38728 100%);
    color: #000;
    -webkit-text-fill-color: #000;
    font-weight: 900;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.5);
}

/* MARQUEE STRIP */
.marquee_strip {
    background: #7f1d1d;
    color: #fef08a;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #dc2626;
}

/* LOGO GLOW ANIMATION */
.logo-glow {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-glow:hover {
    transform: scale(1.03) rotate(1deg);
    filter: drop-shadow(0 0 20px rgba(253, 224, 71, 0.8));
}

/* TITLE BLINK ANIMATION */
.blink_text_gold {
    font-size: 28px;
    font-weight: 900;
    color: #fef08a;
    animation: goldGlow 1.5s infinite alternate;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes goldGlow {
    0% {
        text-shadow: 0 0 8px #d4af37, 0 0 20px #dc2626;
        opacity: 1;
    }
    100% {
        text-shadow: 0 0 18px #fef08a, 0 0 35px #d4af37, 0 0 45px #991b1b;
        opacity: 0.9;
    }
}

/* RESULT CARD */
.result-card-gold {
    background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
    border: 1.5px solid #d4af37;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-card-gold:hover {
    transform: translateY(-4px);
    border-color: #fef08a;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* BUTTONS */
.btn-whatsapp {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-weight: 800;
    border-radius: 9999px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
    border: 1px solid #4ade80;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.6);
}

.btn-telegram {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-weight: 800;
    border-radius: 9999px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
    border: 1px solid #38bdf8;
    transition: all 0.3s ease;
}

.btn-telegram:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}

/* TABLE STYLING */
.market-row-dark {
    border-bottom: 1px solid #27272a;
    transition: background 0.2s ease;
}

.market-row-dark:hover {
    background-color: #18181b;
}

/* MOBILE RESPONSIVE */
@media (max-width: 640px) {
    .nav_btn {
        font-size: 12px;
        padding: 8px 0;
    }
    .blink_text_gold {
        font-size: 20px;
    }
}
