@font-face {
    font-family: 'Topor';
    src: url('Topor-Regular.ttf') format('truetype');
}

@keyframes scaleUp {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.runazielEYE {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 999999999;
}

.runazielText {
    color: red;
    font-size: 12pt;
    text-align: center;
    text-shadow: 0 0 5px red, 0 0 10px red, 0 0 15px black;
    z-index: 999999999;
}

.runazielForm {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
    font-family: 'Topor', sans-serif;
}

.runazielInput {
    width: 200px;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 2px solid red;
    background-color: black;
    color: red;
	font-family: 'Topor', sans-serif;
}

.runazielButton {
    width: 60px;
    height: 40px;
    background-color: black;
    color: red;
    border: 2px solid red;
    border-radius: 5px;
    cursor: pointer;
	font-family: 'Topor', sans-serif;
}

.ritaIcon {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 999999999;
}

.llmText {
    color: #fff;
    font-size: 12pt;
    text-align: center;
    text-shadow: 
        0 0 3px #fff,
        0 0 5px #00f,
        0 0 10px #00f,
        0 0 15px #00f;
    z-index: 999999999;
}

.llmForm {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
}

.llmInput {
    width: 200px;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 2px solid #00f;
    background-color: black;
    color: #00f;
}

.llmButton {
    width: 60px;
    height: 40px;
    background-color: black;
    color: #00f;
    border: 2px solid #00f;
    border-radius: 5px;
    cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.llmButton:hover {
    background-color: #00f;
    color: black;
}