body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('images/construction_background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    animation: scaleUp 1.5s ease-in-out;
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

h1 {
    font-size: 2.5rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.countdown {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #ffcc70;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff6b6b;
    color: white;
}

.construction-image {
    max-width: 100%;
    margin-top: 20px;
}
