* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background: linear-gradient(rgba(128,0,255,0.8), rgba(255,0,255,0.8)), url('https://source.unsplash.com/1600x900/?office') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container {
    max-width: 700px;
    padding: 20px;
}
.logo {
    font-size: 2em;
    font-weight: bold;
    text-align: left;
}
.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
}
.social-links a {
    margin: 0 5px;
}
h1 {
    font-size: 1.8em;
    margin: 20px 0;
}
h1 span {
    font-weight: bold;
}
.subscribe-form {
    margin: 20px 0;
}
.subscribe-form input {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 5px 0 0 5px;
}
.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
.note {
    font-size: 0.8em;
    margin-top: 10px;
    opacity: 0.8;
}
.countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.countdown div {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2em;
}
.countdown span {
    display: block;
    font-size: 2em;
    font-weight: bold;
}