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

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
}

.container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd23f);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    background: rgba(0,0,0,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

.burger-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.time-unit {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    min-width: 80px;
    backdrop-filter: blur(5px);
}

.time-unit .number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.time-unit .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.email-signup {
    margin-bottom: 30px;
}

.email-signup h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 400;
}

.signup-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

#email-input {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    outline: none;
    background: rgba(255,255,255,0.9);
}

button {
    padding: 12px 25px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #ff3742;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,71,87,0.4);
}

.signup-message {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.9;
}

.social-links p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: 15px;
    text-align: center;
    z-index: 3;
}

.copyright p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px 60px 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-unit {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .time-unit .number {
        font-size: 1.5rem;
    }
    
    .signup-form {
        flex-direction: column;
        align-items: center;
    }
    
    #email-input {
        max-width: 100%;
        margin-bottom: 10px;
    }
}
