:root {
    --color-bg: #09130d;
    --color-primary: #1ed760;
    --color-primary-dark: #12823a;
    --color-text: #e0f2e6;
    --color-text-muted: #8ab095;
    --border-radius: 24px;
    --glass-bg: rgba(16, 35, 23, 0.4);
    --glass-border: rgba(30, 215, 96, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Abstract Background */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(30,215,96,0.15) 0%, rgba(30,215,96,0) 70%);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(16,163,127,0.2) 0%, rgba(16,163,127,0) 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(154,230,103,0.1) 0%, rgba(154,230,103,0) 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.9); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

/* Glass panel styling */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header & Logo */
header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.leaf-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    animation: pulseIcon 4s infinite alternate;
}

@keyframes pulseIcon {
    0% { filter: drop-shadow(0 0 10px rgba(30,215,96,0.3)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 20px rgba(30,215,96,0.6)); transform: scale(1.05); }
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #fff 0%, #aaeeb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
}

/* Content */
.content {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 215, 96, 0.1);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 100px;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #8ab095);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
}

/* Form */
.notify-form {
    max-width: 480px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(30, 215, 96, 0.5);
    box-shadow: 0 0 20px rgba(30, 215, 96, 0.1);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

button {
    background: var(--color-primary);
    color: #000;
    border: none;
    border-radius: 100px;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

button:hover {
    background: #25ef6d;
    transform: translateX(-2px);
    box-shadow: 0 10px 20px rgba(30, 215, 96, 0.3);
}

button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

button:hover svg {
    transform: translateX(4px);
}

/* Button Success Animation */
.btn-success {
    background: #ffffff !important;
    color: var(--color-primary) !important;
}

.form-feedback {
    margin-top: 1rem;
    font-size: 0.875rem;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-feedback.success {
    color: var(--color-primary);
    opacity: 1;
}

/* Responsive */
@media (max-width: 640px) {
    .glass-panel {
        padding: 3rem 1.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    input[type="email"] {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        text-align: center;
        padding: 1rem;
    }
    
    button {
        justify-content: center;
        padding: 1rem;
    }
}
