* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* মেইন কন্টেইনার */
.construction-container {
    text-align: center;
    padding: 20px;
}

/* গিয়ার অ্যানিমেশন এরিয়া */
.gear-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px auto;
}

.gear {
    background: transparent;
    border-radius: 50%;
    position: absolute;
}

/* বড় গিয়ার */
.gear.big {
    width: 100px;
    height: 100px;
    border: 10px dashed #ffcc00;
    top: 10px;
    left: 10px;
    animation: rotate-clockwise 4s linear infinite;
}

/* ছোট গিয়ার */
.gear.small {
    width: 60px;
    height: 60px;
    border: 8px dashed #ff6600;
    bottom: 15px;
    right: 10px;
    animation: rotate-counter-clockwise 3s linear infinite;
}

/* টেক্সট স্টাইল ও অ্যানিমেশন */
h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* লোডিং বার অ্যানিমেশন */
.loading-bar {
    width: 250px;
    height: 6px;
    background-color: #333;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 50%;
    height: 100%;
    background-color: #ffcc00;
    border-radius: 3px;
    position: absolute;
    animation: slide 2s ease-in-out infinite;
}

/* --- কি-ফ্রেম অ্যানিমেশন সমূহ --- */

/* ঘড়ির কাঁটার দিকে ঘোরা */
@keyframes rotate-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ঘড়ির কাঁটার বিপরীত দিকে ঘোরা */
@keyframes rotate-counter-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* লেখার আলো কমা-বাড়া করা */
@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 204, 0, 0.6); }
    50% { opacity: 0.6; text-shadow: 0 0 2px rgba(255, 204, 0, 0.2); }
}

/* লোডিং বারের স্লাইডিং ইফেক্ট */
@keyframes slide {
    0% { left: -50%; }
    50% { left: 100%; }
    100% { left: -50%; }
}