/* Intermediate access page */
.intermediate-page {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 8px 0 22px;
}

.intermediate-title {
    margin: 0 0 10px;
    text-align: center;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    line-height: 1.3;
    color: #111827;
}

.intermediate-card,
.intermediate-empty-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.intermediate-card {
    padding: 20px;
}

.intermediate-loader-area {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intermediate-loader-spinner {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 999px;
    border: 4px solid rgba(37, 99, 235, 0.25);
    border-top-color: #2563eb;
    animation: intermediate-spin 1s linear infinite;
}

@keyframes intermediate-spin {
    to {
        transform: rotate(360deg);
    }
}

.intermediate-loader-text {
    margin: 0 0 8px;
    color: #4b5563;
    text-align: center;
}

.intermediate-counter {
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 700;
}

.intermediate-access-wrap {
    margin: 16px 0 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intermediate-access-note {
    margin: 0 0 12px;
    color: #16a34a;
    font-size: 1.08rem;
    font-weight: 700;
    text-align: center;
}

.intermediate-access-btn {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    color: #ffffff;
    font-weight: 700;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.25);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.intermediate-access-btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

.intermediate-external-warning {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 0.84rem;
    text-align: center;
}

.intermediate-access-btn-icon {
    width: 24px;
    height: 24px;
}

.intermediate-content {
    margin-top: 24px;
    width: 100%;
    color: #374151;
}

.intermediate-section-title {
    margin: 0 0 16px;
    font-size: 1.3rem;
    color: #111827;
}

.intermediate-subtitle {
    margin: 18px 0 10px;
    color: #1f2937;
    font-size: 1.02rem;
}

.intermediate-highlight {
    color: #1d4ed8;
    font-weight: 700;
}

.intermediate-content ul,
.intermediate-content ol {
    margin: 0 0 1rem 1.4rem;
    padding: 0;
}

.intermediate-content li {
    margin-bottom: 0.42rem;
}

.intermediate-empty-card {
    padding: 28px;
    text-align: center;
}

.intermediate-empty-text {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 640px) {
    .intermediate-page {
        width: min(820px, calc(100% - 22px));
    }

    .intermediate-card {
        padding: 16px;
    }

    .intermediate-access-btn {
        width: 100%;
        justify-content: center;
    }
}
