/* Reset body margins and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Container for the video and input */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

/* Fullscreen video styles */
.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the screen */
    z-index: 1;
}

/* Input container */
.input-container {
    position: absolute;
    bottom: 2%; /* Position 10% from the bottom */
    width: 100%;
    text-align: center;
    z-index: 2; /* Ensure it appears above the video */
}

/* Input field styling */
.text-input {
    width: 100%; /* Adjust width as needed */
    max-width: 80%;
    color: #eec40b;
    font-size: 150px;
    font-family: "Rubik Moonrocks", sans-serif;
    font-weight: 400;
    text-align:center;
    line-height: 1;
    border-style: none;
    outline: none;
    padding: 0.8em 1em;
    caret-color: transparent;
    background: #00000000 0%;
    border-radius: 1.8em;

     /* Glow effect */
     text-shadow: 0 0 10px #eec40b, 0 0 20px #eec40b, 0 0 30px #eec40b;
     animation: textGlowBlink 2s infinite; /* Apply blinking animation */

}

@keyframes textGlowBlink {
    0%, 100% {
        text-shadow: 0 0 10px #eec40b, 0 0 20px #eec40b, 0 0 30px #eec40b;
    }
    50% {
        text-shadow: 0 0 5px #eec40b, 0 0 10px #eec40b, 0 0 15px #eec40b;
    }
}

.text-input::placeholder {
    color: #666;
}
