.question-container {
    background: #1e1e1e;
    width: 90%;
    max-width: 900px; /* Slightly wider to accommodate the 16:9 look */
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #3d447a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.question-image {
    width: 100%;
    /* Enforces the 16:9 ratio */
    aspect-ratio: 16 / 9;
    /* Ensures the image covers the area without distorting */
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333;
    background-color: #2c3e50;
}

.question-text {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 10px 0;
    color: #ffffff;
}

.back-button {
    align-self: center;
    background: #2c3e50;
    color: #f1c40f;
    border: 2px solid #f1c40f;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #f1c40f;
    color: #1f2346;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
} 