@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

body {
    background-color: #121212;
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    text-align: center;
}

.container {
    max-width: 450px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #1b1b1b;
    box-shadow: 0px 0px 15px #00ffff;
}

h1 {
    font-size: 24px;
    text-shadow: 0px 0px 5px #00ffff;
}

p {
    font-size: 14px;
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: #222;
    color: #00ffff;
    outline: none;
    box-shadow: 0px 0px 5px #00ffff;
}

button {
    margin-left: 10px;
    padding: 10px 15px;
    background: #00ffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0px 0px 5px #00ffff;
}

button:hover {
    background: #00cccc;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: #252525;
    box-shadow: 0px 0px 10px #00ffff;
}

.hidden {
    display: none;
}

.emoji {
    font-size: 18px;
}
