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

body {
    background: #000;
    overflow: hidden;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #000;
    height: 100vh;
    display: flex;
    align-items: center;
}

.marquee-wrapper {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.marquee-text {
    display: inline-block;
    color: #0f0;
    font-size: 8vw;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5),
                 0 0 20px rgba(0, 255, 0, 0.3),
                 0 0 30px rgba(0, 255, 0, 0.2);
    padding: 0 2em;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.input-container {
    position: fixed;
    bottom: 50px; /* Move to bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 10px;
    align-items: center;
}

.message-input {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0f0;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 18px;
    font-family: monospace;
    color: #0f0;
    width: 350px;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3), inset 0 0 10px rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.message-input:focus {
    border-color: #0f0;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5), inset 0 0 15px rgba(0, 255, 0, 0.2);
}

.message-input::placeholder {
    color: rgba(0, 255, 0, 0.5);
}

.apply-btn {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 2px solid #0f0;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-family: monospace;
    color: #0f0;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    transform: scale(1.05);
}

.apply-btn:active {
    transform: scale(0.98);
}
