:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #3b82f6;
    /* A vibrant blue */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --font-main: 'Outfit', sans-serif;
    --globe-color-1: rgba(59, 130, 246, 0.4);
    --globe-color-2: rgba(147, 51, 234, 0.4);
    /* Purple */
    --globe-color-3: rgba(236, 72, 153, 0.4);
    /* Pink */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.content {
    text-align: center;
    z-index: 20;
    padding: 2rem;
    max-width: 600px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.input-group:hover,
.input-group:focus-within {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

input[type="email"] {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    flex-grow: 1;
    outline: none;
}

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

button {
    background: white;
    color: black;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

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

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

.globe-1 {
    width: 600px;
    height: 600px;
    background: var(--globe-color-1);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--globe-color-2);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.globe-3 {
    width: 400px;
    height: 400px;
    background: var(--globe-color-3);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.4;
}

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

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 40px) scale(0.95);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 15px;
        padding: 0;
    }

    input[type="email"] {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 40px;
        text-align: center;
        width: 100%;
    }

    button {
        width: 100%;
    }
}