* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    color: white;
    background: linear-gradient(135deg, #01A1C3 0%, #000000 50%, #FF6201 100%);
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    filter: blur(1px);
}

.content {
    position: relative;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.rocket-icon {
    width: 4rem;
    height: 4rem;
    color: #01A1C3;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 10px rgba(1, 161, 195, 0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #01A1C3, #FF6201);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight {
    color: #FF6201;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 98, 1, 0.3);
}

.description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.email-form {
    max-width: 28rem;
    margin: 0 auto 3rem;
}

.input-container {
    display: flex;
    gap: 0.5rem;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
}

.mail-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

input[type="email"]:focus {
    border-color: #01A1C3;
    box-shadow: 0 0 0 2px rgba(1, 161, 195, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

input[type="text"]:focus {
    border-color: #01A1C3;
    box-shadow: 0 0 0 2px rgba(1, 161, 195, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-left: 22%;
    padding: 0.75rem 1.5rem;
    background-color: #01A1C3;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: large;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #FF6201;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button i {
    width: 1rem;
    height: 1rem;
}

.success-message {
    margin-top: 0.75rem;
    color: #01A1C3;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(1, 161, 195, 0.3);
}

.hidden {
    display: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.social-links a:hover {
    color: #FF6201;
    transform: translateY(-2px);
}

.social-links i {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 640px) {
    .content {
        padding: 1.5rem;
    }

    .input-container {
        flex-direction: column;
    }
    
    button {
        width: 100%;
        justify-content: center;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
