* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background color */
    color: #e0e0e0; /* Light text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.maintenance-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.maintenance-content {
    padding: 20px;
    background: #1e1e1e; /* Dark content background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    border-radius: 10px;
    position: relative;
}

.maintenance-animation {
    margin-bottom: 20px;
}

.loader {
    border: 8px solid #2c2c2c; /* Darker border */
    border-top: 8px solid #3498db; /* Blue for loader */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

h1 {
    font-size: 2rem;
    color: #fff; /* White text for main heading */
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.countdown {
    font-size: 1rem;
    margin-bottom: 20px;
}

#timer {
    font-size: 1.5rem;
    color: #e74c3c; /* Red for countdown */
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    color: #3498db; /* Blue for links */
    text-decoration: none;
    font-size: 1rem;
}

.social-links a:hover {
    text-decoration: underline;
}
