body {
    background: linear-gradient(135deg, #000000, #0096c7);
    font-family: 'Arial', sans-serif;
    color: white;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 30px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(150, 200, 255, 0.3);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(143, 143, 143);

    font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.input-section {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #96c;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

button {
    background-color: #96c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #7a9fc7;
}

button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.stat-box {
    background-color: rgba(150, 200, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

.text-display {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    min-height: 100px;
    line-height: 1.6;
}

.correct {
    color: white;
}

.incorrect {
    color: red;
    text-decoration: underline;
}

.current {
    background-color: rgba(150, 200, 255, 0.3);
}

.hidden {
    display: none;
}

.progress-bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 20px 0;
}

.progress {
    height: 10px;
    background-color: #96c;
    border-radius: 5px;
    width: 0%;
    transition: width 0.1s;
}

.timer {
    font-size: 24px;
    text-align: center;
    margin: 10px 0;
}

.time-up {
    color: #ff5555;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.level-info {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

p {
    color: #bbb;
}

.contato {
    text-decoration: none;
    color: #69c;
}

.contato:hover {
    color: #96c;
}