:root {
    --primary: #00e5ff;
    --primary-dark: #008ecc;
    --secondary: #7000ff;
    --bg-dark: #0a0e17;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background & Image */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.8) 50%, rgba(10, 14, 23, 0.9) 100%);
    z-index: 1;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    position: relative;
    margin-right: 12px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-dark);
    border-radius: 8px;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    z-index: 1;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.badge {
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: #f1f5f9;
}

.highlight {
    display: inline-block;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--primary) 0%, #a855f7 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
    margin-top: 0.25rem;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

/* Glassmorphism Form */
.notify-form {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    max-width: 550px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.notify-form p {
    font-weight: 500;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #e2e8f0;
}

.input-group {
    display: flex;
    gap: 0.75rem;
}

input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0 1.75rem;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn svg {
    transition: transform 0.3s ease;
}

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

.btn.success {
    background: #10b981;
    color: white;
}

footer {
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: left;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    .container {
        padding: 1.5rem;
        height: auto;
    }

    .content {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .btn {
        padding: 1rem;
        justify-content: center;
    }

    .title {
        font-size: 1.8rem;
    }
}