body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #2e2e2e;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 700px;
    padding: 40px;
    background: #3a3a3a;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.logo img {
    max-width: 300px;
    margin-bottom: 20px;
}

.status {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 20px 0;
}

.contact {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: #ff5722;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}