* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.banner {
    margin-bottom: 40px;
}

.banner img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 20px;
}

.description {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
    font-size: 1.15rem;
    opacity: .9;
}

form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

input[type="email"] {
    flex: 1;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

button {
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    opacity: .9;
}

.socials {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.socials a {
    color: white;
    text-decoration: none;
    opacity: .8;
}

.socials a:hover {
    opacity: 1;
}

.message {
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 16px;
    text-align: center;
    border-radius: 10px;
}

.success {
    background: #1c6a3a;
}

.error {
    background: #8b2c2c;
}

.honeypot {
    display: none;
}

@media (max-width: 768px) {

    h1 {
        font-size: 2.5rem;
    }

    form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}