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

body {
    font-family: 'Gluten', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(135deg, #1a0b36 0%, #2d1b4e 25%, #4a2c73 50%, #6b3d9e 75%, #8e4ec6 100%);
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 69, 198, 0.3) 0%, rgba(26, 11, 54, 0.8) 70%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 1.5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    text-shadow: 0 0 30px rgba(139, 69, 198, 0.6);
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.5s forwards;
}

.logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 154, 158, 0.6));
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 154, 158, 0.8));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 154, 158, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.notification-section {
    margin-top: 6rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease 1s forwards;
}

.notification-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.email-form {
    display: flex;
    justify-content: center;
}

.input-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.email-input {
    padding: 15px 25px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 300px;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    border-color: #ff9a9e;
    box-shadow: 0 0 20px rgba(255, 154, 158, 0.3);
}

.submit-btn {
    padding: 15px 30px;
    z-index: 4;
    letter-spacing: normal;
    text-shadow: 0 2px 8px #975a37;
    background-color: #0000;
    background-image: linear-gradient(274deg,#ffbf00 2.37%,#ff850b 57.12%,#ffbf00);
    border: 1px solid #ffbf00;
    border-radius: 5.625rem;
    font-family: Gluten,Arial,sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 154, 158, 0.4);
    background: linear-gradient(135deg, #fecfef, #ff9a9e);
}

.submit-btn:active {
    transform: translateY(0);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticles 6s linear infinite;
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatParticles {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 1rem;
    }

    .logo {
        width: 180px;
        height: 180px;
    }

    .input-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .email-input {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 0.5rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .email-input {
        width: 250px;
        padding: 12px 20px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}