/* Time Crunch - Retro-Windows Vaporwave Theme */
.time-crunch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 500px;
    margin: auto;
    background: linear-gradient(135deg, #8e44ad, #3498db);
    font-family: 'Courier New', monospace;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.time-crunch-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    background-color: #2c3e50;
    border: 3px solid #16a085;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px #16a085;
}

.time-counter,
.score-counter {
    background-color: #1abc9c;
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: bold;
}

.time-crunch-problem {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 3px solid #c0392b;
    box-shadow: 0 0 10px #e74c3c;
}

.time-crunch-input {
    margin-bottom: 20px;
}

.answer-input {
    width: calc(100% - 40px);
    max-width: 300px;
    padding: 10px;
    font-size: 1.2rem;
    border: 3px solid #f39c12;
    border-radius: 5px;
    outline: none;
    background-color: #f1c40f;
    color: #2c3e50;
    box-shadow: 0 0 10px #f39c12;
    text-align: center;
}

.answer-input:focus {
    border-color: #e67e22;
    box-shadow: 0 0 15px #e67e22;
}

.time-crunch-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tc-start-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #9b59b6;
    border: 3px solid #8e44ad;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #9b59b6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tc-start-button:hover {
    background-color: #8e44ad;
    box-shadow: 0 0 15px #8e44ad;
}

.tc-start-button:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px #8e44ad;
}
