body {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat fixed,
                #0a001f;
    color: #fff;
    font-family: 'Hind Siliguri', Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Subtle sparkling particle overlay effect */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(1); }
}

.navbar-bg {
    background: linear-gradient(to right, #2c003e, #12005e) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.logo {
    height: 100px;
    filter: drop-shadow(0 0 8px gold);
}

.header-time {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffeb3b;
    text-shadow: 0 0 20px #ffeb3b, 0 0 40px #ff4081;
}

.countdown-timer {
    font-size: 2.4rem;
    color: #00ff88;
    text-shadow: 0 0 15px #00ff88;
}

.timer-box {
    background: rgba(0, 50, 0, 0.6);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 20px;
    max-width: 420px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.result-box {
    background: linear-gradient(135deg, rgba(30, 0, 60, 0.8), rgba(10, 0, 30, 0.9));
    border: 1px solid #ffeb3b;
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.wait-text {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #ffeb3b, #ff4081, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bounce 2s infinite, glowText 3s infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 20px #ffeb3b; }
    to { text-shadow: 0 0 40px #ff4081, 0 0 60px #00ffff; }
}

.refresh-btn {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    border: none;
    padding: 14px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
}

.disclaimer {
    background: rgba(100, 0, 0, 0.5);
    border: 1px solid #ff1744;
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.content-section {
    background: rgba(17, 17, 17, 0.7);
    padding: 35px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1000px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.section-title {
    color: #ffeb3b;
    font-size: 2rem;
    margin: 35px 0 20px;
    text-align: center;
    text-shadow: 0 0 15px #ffeb3b;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
    color: #e0e0e0;
}
.site-footer {
    background: linear-gradient(to top, #000, #0a001f);
    padding: 60px 0 30px;
    border-top: 2px solid #333;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top center, rgba(255, 215, 0, 0.05), transparent 70%);
    pointer-events: none;
}

.footer-logo {
    height: 60px;
    filter: drop-shadow(0 0 10px gold);
}

.footer-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

.footer-title {
    color: #ffeb3b;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ffeb3b;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #ffeb3b;
    display: block;
    margin: 10px auto 0 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #ffeb3b;
    text-shadow: 0 0 8px #ffeb3b;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: all 0.4s;
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: #ffeb3b;
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.6);
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 20px;
}

.footer-bottom p {
    margin: 8px 0;
    color: #aaa;
    font-size: 0.9rem;
}

.disclaimer-note {
    color: #ff6b6b !important;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    .footer-title {
        font-size: 1.2rem;
        text-align: center;
    }
    .footer-title::after {
        margin: 10px auto;
    }
    .social-links {
        justify-content: center;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .header-time { font-size: 2.2rem; }
    .countdown-timer { font-size: 1.9rem; }
    .wait-text { font-size: 2.8rem; }
    .section-title { font-size: 1.7rem; }
    .section-text { font-size: 1rem; }
    .timer-box, .content-section { padding: 20px; }
}

@media (max-width: 480px) {
    .header-time { font-size: 1.9rem; }
    .wait-text { font-size: 2.4rem; }
    .refresh-btn { padding: 12px 30px; font-size: 1.1rem; }
}
