/* German Exam Suite - Premium Student Testing Interface */
.ges-mock-test-container {
    max-width: 1000px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.ges-test-header {
    background: #1e293b;
    color: white;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ges-test-title {
    font-size: 20px;
    font-weight: 700;
}

.ges-test-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ges-section-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.ges-timer-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: monospace;
    font-size: 14px;
    position: relative;
    color: #f87171;
}

.ges-test-content {
    padding: 40px;
    min-height: 400px;
}

.ges-intro-screen {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ges-intro-screen h1 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1e293b;
}

.ges-intro-screen p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
}

.ges-btn-start {
    background: #2563eb;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.ges-btn-start:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Result Page Premium */
.ges-result-card {
    text-align: center;
}

.ges-score-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 8px solid #f1f5f9;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ges-score-val {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #1e293b;
}

.ges-score-total {
    font-size: 16px;
    color: #64748b;
}

.ges-status-pill {
    display: inline-flex;
    padding: 8px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.status-pass {
    background: #dcfce7;
    color: #166534;
}

.status-fail {
    background: #fee2e2;
    color: #991b1b;
}

.ges-feedback-band {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    border-left: 6px solid #2563eb;
    text-align: left;
}

.ges-feedback-band h4 {
    margin-top: 0;
    font-size: 18px;
}

.ges-btn-cta {
    margin-top: 20px;
    display: inline-block;
    background: #1e293b;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}