* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 40px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff4d6d;
}

.status-message {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #cccccc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #aaa;
}

.contact-info p {
    margin-top: 30px;
    font-size: 1rem;
}

.social-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff4d6d;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #e63c61;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .status-message {
        font-size: 1.2rem;
    }
}
