@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: url('https://images.unsplash.com/photo-1554147090-e1221a04a025?q=80&w=2070') no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.container {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 5px;
}

.countdown span {
    font-size: 2.5rem;
    font-weight: 600;
}

.countdown p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.subscription-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.subscription-form input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 300px;
    font-size: 1rem;
}

.subscription-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background-color: #ff6347;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-form button:hover {
    background-color: #ff4500;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.1rem;
}