body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    margin: 0;
    padding: 0;
    color: white;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

h1, h2, h3 {
    text-align: center;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background-color: #00c6ff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0072ff;
    color: white;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    resize: none;
    font-size: 15px;
}

.hidden {
    display: none;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.timer-box, .round-box {
    background: #111;
    padding: 10px 15px;
    border-radius: 6px;
}

.question-box {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.answer-box {
    margin-top: 15px;
}

#loading {
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

.score-box {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}
#insightsContainer {
    margin-top: 20px;
    text-align: left;
}

.insight-card {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.insight-card h4 {
    margin: 0 0 8px 0;
}

.insight-score {
    font-weight: bold;
    margin-bottom: 8px;
}
