* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('bg.png') no-repeat center center/cover;
    background-color: #0d1b15; /* Fallback color */
    color: #ffffff;
    overflow-x: hidden;
}

/* Dark overlay to make text more readable against the image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 28, 14, 0.8) 0%, rgba(13, 31, 23, 0.6) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    padding: 20px;
    animation: fadeIn 1s ease-out forwards;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Logo Area */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 3rem;
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
    animation: float 3s ease-in-out infinite;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.brand-name span {
    color: #4ade80;
    font-weight: 300;
}

/* Content Area */
.content-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.headline {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(to right, #fff, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-weight: 300;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px auto 0;
    width: fit-content;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Form Area */
.form-area {
    margin-top: 10px;
}

.form-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.notify-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input::placeholder {
    color: #64748b;
}

.notify-form input:focus {
    border-color: #4ade80;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
}

.notify-form button {
    padding: 0 25px;
    border-radius: 12px;
    border: none;
    background: #4ade80;
    color: #064e3b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

/* Social Area */
.social-area {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: #4ade80;
    color: #064e3b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .glass-card {
        padding: 40px 25px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .headline {
        font-size: 1.6rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        padding: 15px;
    }
}
