/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at center, #2c243b 0%, #171520 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.maintenance-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

/* Brand Badge */
.brand-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.brand-logo {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 10px;
}

.brand-name {
    font-weight: 600;
    font-size: 16px;
    color: #e2e8f0;
}

/* Icons */
.icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px auto;
}

.main-gear {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 10px 30px rgba(255, 75, 43, 0.3);
    animation: spin 8s linear infinite;
}

.sub-wrench {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #ffffff;
    color: #ff416c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@keyframes spin {
    100% { transform: rotate(30deg); }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(235, 64, 121, 0.1);
    border: 1px solid rgba(235, 64, 121, 0.2);
    color: #eb4079;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #eb4079;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #eb4079;
}

/* Typography */
.heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.heading .highlight {
    color: #ff3366;
}

.description {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Progress Bar */
.progress-section {
    max-width: 500px;
    margin: 0 auto 35px auto;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.08);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 75%; /* স্ক্রিনশটের মতো ৭৫% সেট করা */
    background: linear-gradient(90deg, #ff416c, #ff9b26);
    border-radius: 10px;
}

/* Countdown */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.time-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px 10px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.time-box span {
    font-size: 28px;
    font-weight: 700;
    display: block;
    color: #ffffff;
}

.time-box p {
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #ff416c, #ff6a00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    font-size: 12px;
    color: #4a5568;
}
.footer strong {
    color: #718096;
}

/* Responsive Customization */
@media(max-width: 480px) {
    .heading { font-size: 28px; }
    .countdown-container { gap: 8px; }
    .time-box span { font-size: 20px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}

/* ১. মেইন গিয়ার আইকন ক্লাসে অ্যানিমেশন যুক্ত করুন */
.main-gear {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 10px 30px rgba(255, 75, 43, 0.3);
    
    /* এই লাইনটি পরিবর্তন করা হয়েছে: এটি এখন অনবরত ঘুরতে থাকবে */
    animation: rotateGear 10s linear infinite; 
}

/* ২. কি-ফ্রেম অ্যানিমেশনটি নিচে রিপ্লেস করুন */
@keyframes rotateGear {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
