/* Global Styles */
body {
    font-family: 'Poppins', sans-serif; /* Ensure your custom font is applied */
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Background Video */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.language-dropdown select {
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    color: #09142f;
}

/* Container for the wishlist */
.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px;
    background-color: #b7afaf5c;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo {
    width: 120px;
    margin-bottom: 20px;
}

/* Company Name (mergen.ai) */
h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    background-image: radial-gradient(ellipse,#3336439f, #09142f);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Glow effect */
}

/* Title */
h1 {
    font-size: 1.5rem;
    font-weight: 550;
    color: transparent;
    background-image: radial-gradient(ellipse,#3336439f, #09142f);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Glow effect */
    white-space: pre-line; /* Allows for automatic line break */
    word-wrap: break-word; /* Prevents long words from overflowing */
}

/* Lost in Space Container */
.lost-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Fallback color */
}

/* Text Overlay */
.lost-text {
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    background-image: linear-gradient(to right, #f0a500, #09142f);
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Glow effect */
    z-index: 1; /* Ensure the text is above the image */
}

/* Input and Button */
.form-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#emailInput {
    padding: 10px;
    font-size: 16px;
    width: 250px;
    border-radius: 5px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.8);
}

#submitButton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #09142f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submitButton:hover {
    background-color: #f0a500;
}

/* Social Media Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 12px;
    margin: 0 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Social Media Links Hover Effects */
.social-links a:hover {
    color: #f0a500; /* Change color on hover */
    transform: scale(1.1); /* Slight scale effect */
    text-decoration: underline;
}

.social-links a:active {
    transform: scale(1); /* Reset on click */
}

/* Mobile and Tablet Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        width: 90%;
    }

    #emailInput {
        width: 70%;
    }

    .logo {
        width: 100px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .social-links {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 85%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    #emailInput {
        width: 80%;
    }

    .logo {
        width: 80px;
    }

    .language-dropdown {
        top: 10px;
        right: 10px;
    }
}
