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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-box {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-e {
    font-size: 45px;
    font-weight: 700;
    color: #FF6B6B;
}

.logo-text {
    font-size: 42px;
    font-weight: 700;
    color: white;
}

.icon-section {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.construction-icon {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.content {
    animation: fadeInUp 1s ease-out;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.email-input {
    padding: 16px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.email-input:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.notify-button {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    color: #FF6B6B;
    background: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.notify-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.notify-button:active {
    transform: translateY(-1px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-box {
        width: 60px;
        height: 60px;
    }

    .logo-e {
        font-size: 38px;
    }

    .logo-text {
        font-size: 36px;
    }

    .construction-icon {
        width: 150px;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-box {
        width: 50px;
        height: 50px;
    }

    .logo-e {
        font-size: 32px;
    }

    .logo-text {
        font-size: 28px;
    }

    .construction-icon {
        width: 120px;
    }

    .title {
        font-size: 1.8rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .email-input,
    .notify-button {
        font-size: 0.9rem;
        padding: 14px 18px;
    }
}