:root {
    --bg-color: #f3d1a8;
    --container-bg: #fffcf7;
    --text-color: #5D4037;
    --accent-color: #FFC107;
    --border-color: #e6b88a;
}

body {
    font-family: 'Baloo 2', cursive;
    background: linear-gradient(135deg, var(--bg-color), #e6b88a);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    background: var(--container-bg);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 650px;
    width: 100%;
    border: 5px solid #fff;
}

/* --- YAHAN BADLAV KIYA GAYA HAI --- */
.mouse-img {
    max-width: 400px; /* Bada size (pehle 300px tha) */
    width: 90%;       /* Thodi width badhai */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    
    /* Center me laane ke liye ye lines jodi hain */
    display: block;
    margin: 0 auto 25px auto; /* Upar-neeche 0, dayen-bayen auto, neeche 25px ka gap */
}
/* -------------------------------- */

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #795548;
    margin-top: 0;
    margin-bottom: 30px;
}

.status-updates {
    background: #FFF8E1;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    margin: 0 auto 30px auto;
}

.status-updates h2 {
    text-align: center;
    margin-top: 0;
    font-size: 1.4em;
}

.status-updates ul {
    list-style: '🔧';
    padding-left: 30px;
}

.status-updates li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.progress-container {
    width: 100%;
    background-color: #eee;
    border-radius: 25px;
    margin: 30px 0;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-bar {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        45deg,
        var(--accent-color),
        var(--accent-color) 10px,
        #FFD54F 10px,
        #FFD54F 20px
    );
    border-radius: 25px;
    animation: fill-progress 20s linear infinite;
}

@keyframes fill-progress {
    from { background-position: 0 0; }
    to { background-position: -80px 0; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px #fff;
    transition: opacity 0.5s ease;
}

.progress-text.hidden {
    opacity: 0;
}

.come-back {
    font-size: 1.2em;
    font-weight: 700;
}

@media (max-width: 600px) {
    .container { padding: 20px; }
    h1 { font-size: 2em; }
    .subtitle { font-size: 1em; }
    
    /* --- MOBILE KE LIYE BHI BADLAV KIYA GAYA HAI --- */
    .mouse-img { 
        max-width: 280px; /* Mobile par bada size (pehle 200px tha) */
    }
    /* ------------------------------------------- */
}