body {
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

.card {
    background: #ffffff;
    max-width: 560px;
    width: 90%;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid #007bff;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    margin-bottom: 32px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: #e7f1ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.settings-icon {
    width: 40px;
    height: 40px;
    color: #007bff;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 32px;
}

.status-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
    border: 1px solid #dee2e6;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #495057;
}

.progress-bg {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #007bff;
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

.contact-info {
    font-size: 14px;
    color: #adb5bd;
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}
