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

body {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    
    padding-top: 50px;

    background: linear-gradient(-45deg, #000000, #050505, #0a0a0a, #000000);
    background-size: 400% 400%;
    animation: gradientMove 18s ease infinite;

}

.home,
.error 
{
  justify-content: flex-start;
  padding-top: 300px;
}


@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    max-width: 900px;
}

.container-mainscreen {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.title-main {
    margin-top: 0; 
}

img {
    max-width: none;
    border: 16px solid rgba(30, 30, 30, 0.7);
    border-radius: 6px;
}

.level-text {
    font-size: 18px;
    color: #e6e6e6;
    line-height: 1.6;

    margin-top: 0; 
    white-space: pre-line;
}

.button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

input {
    margin-top: 20px;
    padding: 10px;
    background: #080808;
    border: 1px solid #222;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

ul {
    text-align: left;
    margin-top: 10px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 8px white;
}

.status-text {
    color: #55ff7f;
}

.status-normal {
    color: #ffff7f;
}

.gradient-text {
    background: linear-gradient(
        90deg,
        #fe2712,
        #ea2113,
        #d51a13,
        #c11414,
        #aa1212,
        #8a0e0e
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.neon-text {
    color: #ffffff; 
    text-shadow: 
        0 0 15px #ffffff;
    font-weight: bold;
}
  

button {
    margin-top: 15px;
    padding: 10px 22px;
    background: #080808;
    color: #ffffff;
    border: 1px solid #222;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background: #141414;
}