/* =========================================================
   MAINTENANCE PAGE STYLES (SolaimanLipi & Animated Gradient)
   ========================================================= */

/* ১. ব্যাকগ্রাউন্ড অ্যানিমেটেড গ্র্যাডিয়েন্ট কন্টেইনার */
.not-found-wrapper {
    width: 100%;
    min-height: calc(100vh - 80px);
    margin-top: 80px; /* হেডার এরিয়া ফিক্স */
    background: linear-gradient(-45deg, #ffffff, #f0fdf4, #dcfce7, #ffffff);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: 'SolaimanLipi', sans-serif;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ২. ভাসমান গ্লো অ্যানিমেশন */
.white-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(34, 197, 94, 0.25);
    top: 5%;
    left: -50px;
}

.glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(14, 165, 233, 0.2);
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

/* ৩. মূল Glassmorphism কার্ড */
.not-found-content {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 32px;
    padding: 48px 36px;
    text-align: center;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* ৪. স্ট্যাটাস ব্যাজ */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: 'SolaimanLipi', sans-serif;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #dc2626;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

/* ৫. মূল হেডিং টেক্সট */
.not-found-content h2 {
    color: #14532d;
    font-size: clamp(1.4rem, 3.8vw, 1.9rem);
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.4;
    font-family: 'SolaimanLipi', sans-serif;
}

/* ৬. হাই-কনট্রাস্ট ও বড় ফ্রন্টের টাইমার বক্স */
.timer-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 22px 28px;
    border-radius: 22px;
    margin: 0 auto 24px auto;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.timer-label {
    font-size: 15px;
    color: #a7f3d0;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'SolaimanLipi', sans-serif;
}

.countdown-text {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: 'SolaimanLipi', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ৭. স্পষ্ট ও গাঢ় ইনস্ট্রাকশন টেক্সট */
.instruction-text {
    color: #1e293b !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.6;
    margin: 0 0 30px 0 !important;
    font-family: 'SolaimanLipi', sans-serif;
}

/* ৮. অপেক্ষা করুন বাটন */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e2e8f0;
    color: #475569;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    cursor: not-allowed;
    border: 1px solid #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'SolaimanLipi', sans-serif;
}

.home-btn svg {
    width: 20px;
    height: 20px;
    stroke: #475569;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ৯. মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .not-found-wrapper {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        padding: 24px 16px;
    }

    .not-found-content {
        padding: 32px 20px;
        border-radius: 26px;
    }

    .status-badge {
        font-size: 13.5px;
        padding: 5px 14px;
    }

    .timer-box {
        padding: 18px 20px;
        border-radius: 18px;
    }

    .timer-label {
        font-size: 14px;
    }

    .instruction-text {
        font-size: 16px !important;
    }

    .home-btn {
        font-size: 16px;
        padding: 12px 28px;
        width: 100%;
    }
}