:root {
    --bg-color: #0f172a;
    --text-color: #ffffff;
    --primary-gradient: linear-gradient(135deg, #FFB74D 0%, #FF5252 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --orb-color-1: #FFB74D;
    --orb-color-2: #D81B60;
    --orb-color-3: #4A148C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Animations */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--orb-color-1);
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--orb-color-2);
    bottom: -100px;
    right: -100px;
    animation-delay: -2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--orb-color-3);
    top: 40%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) scale(1.1);
    }
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    animation: load 2s ease-out forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    80% {
        width: 75%;
    }

    100% {
        width: 75%;
    }
}

/* Input Group */
.input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    outline: none;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.1);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Button */
.notify-btn {
    background: var(--primary-gradient);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.notify-btn:active {
    transform: translateY(1px);
}

.notify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Status Message */
.status-message {
    min-height: 24px;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.status-message.success {
    color: #4CAF50;
}

.status-message.error {
    color: #FF5252;
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 2rem;
    }

    .title {
        font-size: 2rem;
    }

    .logo {
        width: 120px;
    }

    .input-group {
        flex-direction: column;
        width: 100%;
    }

    .email-input,
    .notify-btn {
        width: 100%;
    }
}