body {
    font-family: 'Arial', sans-serif;
    background-color: #691C32; 
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: rgba(255, 2555, 255, .9);
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

img {
    max-width: 100%; 
    height: auto;    
    display: block;  
}

h1 {
    color: #004d99;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.status-message {
    border: 2px solid #ffcc00; 
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #fffacd; 
}

.status-message h2 {
    color: #cc0000; 
    margin-top: 0;
    font-size: 1.5em;
}

.working-indicator {
    font-size: 3em;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    color: #004d99;
    margin: 10px 0;
}

#dots {
    display: inline-block;
    width: 40px; 
}

.progress-info {
    font-size: 1.1em;
    color: #666;
    margin-top: 20px;
}

#progress-percent {
    font-weight: bold;
    color: #009900; 
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.contact-info a {
    color: #004d99;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}