* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
}

.construction-img {
    width: 120px;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown .box {
    background: #3498db;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown .box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.countdown .box label {
    font-size: 0.9rem;
}

.subscribe-box p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.subscribe-box form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-box input {
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    outline: none;
    flex: 1;
    max-width: 300px;
}

.subscribe-box button {
    padding: 12px 20px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.subscribe-box button:hover {
    background-color: #27ae60;
}
