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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6EFCF;
    background-image: url('../assets/ll.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    gap: 2rem;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/ll.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1;
    max-width: 90%;
    padding: 2rem;
}

.logo img {
    display: none;
}

.email-form {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3E4735;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.email-form h2 {
    font-size: 2rem;
    margin-bottom: 0;
    color: #f5a53a;
    font-weight: bold;
    white-space: nowrap;
}

.email-form form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    flex: 1;
}

.email-form input {
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    color: #3E4735;
    flex: 1;
}

.email-form input::placeholder {
    color: #3E4735;
    opacity: 0.7;
}

.email-form input:focus {
    border-color: #007acc;
}

.email-form button {
    padding: 1rem;
    font-size: 1.1rem;
    background: #F58032;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.email-form button:hover {
    background: #F3512c;
}

.success-message {
    background: #F6EFCF;
    padding: 2rem;
    border-radius: 10px;
    border: 4px solid #3E4735;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.liberty-emojis {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

.success-message p {
    font-size: 1.5rem;
    color: #f5a53a;
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-section {
        flex-direction: column;
        padding-top: 30%;
    }
    
    .email-form {
        padding: 0.3rem;
        max-width: 50%;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .email-form h2 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        white-space: normal;
    }
    
    .email-form form {
        flex-direction: column;
        width: 100%;
        gap: 0.3rem;
    }
    
    .email-form input {
        width: 100%;
        padding: 0.3rem;
        font-size: 0.7rem;
    }
    
    .email-form button {
        width: 100%;
        padding: 0.3rem;
        font-size: 0.7rem;
    }
    
    .liberty-emojis {
        font-size: 2rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .email-form {
        padding: 1rem;
        max-width: 80%;
        gap: 0.8rem;
    }
    
    .email-form h2 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .email-form input {
        padding: 0.6rem;
        font-size: 0.9rem;
        min-width: 0;
        flex: 1;
    }
    
    .email-form button {
        padding: 0.6rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}
