.exam-info-page {
    background:
        radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.22), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.16), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ecf4ff 40%, #f2f5f8 100%);
}

.exam-highlight-card {
    border: none;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, #e0f2fe 0%, #e9ecff 38%, #f8fafc 100%);
    color: #0f172a;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.exam-highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.exam-highlight-card .alert {
    border: none;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.exam-highlight-card .row {
    align-items: stretch;
}

.exam-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px 0 0 18px;
    isolation: isolate;
}

.exam-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.98);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.exam-cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(15, 23, 42, 0.35));
}

.exam-cover-wrap:hover .exam-cover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.exam-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    z-index: 1;
}

.exam-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.exam-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.exam-meta {
    letter-spacing: 0.3px;
    color: #475569 !important;
}

.exam-description {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 8px;
}

.exam-meta-list li {
    padding: 4px 0;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exam-meta-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, #2563eb, #22d3ee);
    display: inline-block;
}

.exam-primary-btn,
.exam-secondary-btn {
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border-radius: 12px;
}

.exam-primary-btn {
    background: linear-gradient(120deg, #2563eb, #22d3ee);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.exam-secondary-btn {
    background: linear-gradient(120deg, #22c55e, #16a34a);
    border: none;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
}

.exam-primary-btn:hover,
.exam-secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    filter: brightness(1.02);
}

.elevated-card {
    border: none;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elevated-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.exam-section-header {
    border: none;
    background: linear-gradient(120deg, #0f172a, #1d4ed8);
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 14px 18px;
}

.exam-detail-body {
    padding: 18px;
    color: #0f172a;
}

.exam-detail-body dl dt {
    color: #475569;
    font-weight: 600;
}

.exam-detail-body dl dd {
    color: #0f172a;
}

.exam-tips {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.exam-tips li {
    padding: 12px 14px;
    background: #f8fbff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 38px;
}

.exam-tips li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(120deg, #22c55e, #16a34a);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.75rem;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

@media (max-width: 1200px) {
    .exam-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .exam-body {
        padding: 20px;
    }

    .exam-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .exam-highlight-card {
        overflow: hidden;
    }

    .exam-cover-wrap {
        border-radius: 0;
    }

    .exam-cover {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .exam-body {
        gap: 8px;
    }
}
