:root {
    --bg-color: #030305;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-1: #6366f1; /* Indigo */
    --accent-2: #ec4899; /* Pink */
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    /* subtle noise texture can be added if needed, but solid deep dark looks great */
}

/* Background Animated Glows */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 12s infinite ease-in-out alternate;
}

.glow-1 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-1);
    top: -15%;
    left: -15%;
    animation-delay: 0s;
}

.glow-2 {
    width: 40vw;
    height: 40vw;
    background: var(--accent-2);
    bottom: -15%;
    right: -10%;
    animation-delay: -6s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, 80px) scale(1.15);
    }
}

/* Layout */
.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
header.logo {
    animation: fadeInDown 1s ease-out forwards;
}

header.logo h2 {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Main Content */
main.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 850px;
}

.title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Glassmorphism Form */
.notify-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 550px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.notify-form input:focus {
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
}

.notify-form button {
    padding: 1.1rem 2.2rem;
    border-radius: 9999px;
    border: none;
    background: var(--text-primary);
    color: var(--bg-color);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.notify-form button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form button {
        width: 100%;
        padding: 1.2rem;
    }
    
    main.content {
        align-items: center;
        text-align: center;
    }
    
    .title {
        line-height: 1.1;
    }
    
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    footer {
        text-align: center;
    }
    
    .glow-1 {
        width: 80vw;
        height: 80vw;
    }
    
    .glow-2 {
        width: 70vw;
        height: 70vw;
    }
}
