:root {
    --bg-color: #0d1b2a;
    --text-color: #e0e1dd;
    --accent-color: #4cc9f0;
    --secondary-accent: #4361ee;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Background Image with Blur */
body::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(10px);
    /* Blur as requested */
    z-index: -2;
}

/* Dynamic Background Overlay */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: rgba(13, 27, 42, 0.3);
    /* Slightly reduced overlay */
}

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

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-accent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #7209b7;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 30px);
    }
}

/* Container & Glassmorphism */
.container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Header */
.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Coming Soon Text */
.coming-soon-text {
    font-size: 3.5rem;
    /* Much larger */
    font-weight: 800;
    letter-spacing: 0.5rem;
    color: white;
    /* White for better contrast on dark bg */
    text-transform: uppercase;
    margin-top: 2rem;
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.8), 0 0 40px rgba(67, 97, 238, 0.6);
    /* Neon glow */
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    /* Tight gap to make them look like they fit together */
    margin-bottom: 2.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    /* Lighter background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtler border */
    padding: 0.5rem 1.5rem;
    /* Wider padding for the skew */
    transform: skewX(-20deg);
    /* Parallelogram shape */
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(224, 225, 221, 0.8);
    cursor: default;
    transition: all 0.2s ease;
}

.tag span {
    display: inline-block;
    transform: skewX(20deg);
    /* Un-skew the text */
}

/* Removed .tag:hover to prevent button feel */

/* Form */
.input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.4);
}

.success-message {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Footer */
.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.875rem;
    color: rgba(224, 225, 221, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 2rem;
        width: 95%;
    }

    .headline {
        font-size: 2rem;
    }

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

    input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        text-align: center;
        border: 1px solid var(--glass-border);
    }

    .cta-button {
        width: 100%;
        border-radius: 12px;
    }
}