/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0A0A0A;
    color: #EAEAEA;
    text-align: center;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Logo */
.logo {
    width: 180px;
    margin-bottom: 20px;
}

/* Heading */
h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #00AEEF;
}

/* Email Signup */
.email-signup {
    margin: 20px 0;
}

.email-signup p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

input {
    width: 250px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;
}

button {
    padding: 10px 20px;
    background: #FF7B00;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background: #E06C00;
}

/* Socials */
.socials {
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
    transition: 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    margin-top: 30px;
    font-size: 0.9rem;
}

footer a {
    color: #00AEEF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
