:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #a1a1a1;
    --accent-blue: #00f2ff;
    --accent-purple: #7000ff;
    --glow-color: rgba(0, 242, 255, 0.5);
}

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

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

.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, rgba(112, 0, 255, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 2rem;
}

/* Logo Animation */
.logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo-orb {
    position: relative;
    width: 200px;
    height: 200px;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid var(--accent-blue);
    border-bottom: 4px solid var(--accent-purple);
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.ring-1 {
    animation: rotate 4s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--accent-purple);
    border-bottom-color: var(--accent-blue);
    animation: rotate 6s linear reverse infinite;
}

.ring-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #ffffff;
    border-bottom-color: var(--accent-blue);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Content Styling */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    min-height: 1.2em;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
}

/* Form Styling - Glowing Border */
.notify-form {
    margin: 0 auto 3rem;
    max-width: 500px;
    position: relative;
}

.input-wrapper {
    position: relative;
    padding: 2px;
    /* For the gradient border */
    border-radius: 12px;
    display: flex;
    background: transparent;
    z-index: 1;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ff00ea, #00f2ff, #7000ff, #ff00ea);
    background-size: 300% 300%;
    border-radius: 14px;
    z-index: -1;
    animation: borderGlow 6s ease infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.border-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(90deg, #ff00ea, #00f2ff, #7000ff, #ff00ea);
    background-size: 300% 300%;
    border-radius: 16px;
    z-index: -2;
    filter: blur(20px);
    opacity: 0.4;
    animation: borderGlow 6s ease infinite;
}

input[type="email"] {
    flex: 1;
    background: #0a0a0a;
    border: none;
    outline: none;
    color: white;
    padding: 1rem 1.5rem;
    border-top-left-radius: 11px;
    border-bottom-left-radius: 11px;
    font-size: 1rem;
}

.notify-btn {
    background: #0a0a0a;
    border: none;
    color: white;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
    transition: color 0.3s ease;
}

.notify-btn:hover {
    color: var(--accent-blue);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-icon {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--glow-color));
}

/* Responsiveness */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .logo-orb {
        width: 150px;
        height: 150px;
    }

    .input-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }

    input[type="email"],
    .notify-btn {
        border-radius: 11px;
        width: 100%;
        padding: 1rem;
    }

    .notify-btn {
        margin-top: 2px;
    }
}