:root {
    --bg-dark: #07070a;
    --bg-darker: #020203;
    --accent-primary: #00f0ff; /* Neon electric blue */
    --accent-secondary: #ff0055; /* Hot pink/magenta for contrast */
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Subtle animated gradient background */
.background-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.15) 0%, rgba(7, 7, 10, 0) 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 85, 0.1) 0%, rgba(7, 7, 10, 0) 40%);
    z-index: -1;
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glassmorphism Container */
.content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 240, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.subheading {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* The Hero Typography */
.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-wrap: balance; /* Crucial requirement */
    
    /* Shimmer effect */
    background: linear-gradient(
        to right,
        var(--text-main) 20%,
        var(--accent-primary) 40%,
        var(--accent-secondary) 60%,
        var(--text-main) 80%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmerText 5s linear infinite;
    
    /* Subtle glow */
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.2));
}

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

.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-wrap: balance;
}

/* 'Notify Me' Form */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.notify-form input:focus {
    border-color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.notify-form button {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent-primary), #00b8ff);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.notify-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    background: linear-gradient(135deg, #00ffff, var(--accent-primary));
}

.notify-form button:hover::before {
    left: 100%;
}

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .content {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form button {
        width: 100%;
    }
}
